From e767f30c950b080d15c2b286108111cb48990528 Mon Sep 17 00:00:00 2001 From: Mercado Pago Date: Thu, 15 Feb 2024 11:43:07 +0000 Subject: [PATCH] Release v7.2.1 --- CHANGELOG.md | 11 + README.md | 138 +- .../js/checkouts/custom/mp-custom-checkout.js | 3 +- .../custom/mp-custom-checkout.min.js | 2 +- changelog.log | 11 + .../woocommerce-mercadopago-es_AR.mo | Bin 64158 -> 64493 bytes .../woocommerce-mercadopago-es_AR.po | 1112 +- .../woocommerce-mercadopago-es_CL.mo | Bin 64158 -> 64493 bytes .../woocommerce-mercadopago-es_CL.po | 1112 +- .../woocommerce-mercadopago-es_CO.mo | Bin 64158 -> 64493 bytes .../woocommerce-mercadopago-es_CO.po | 1112 +- .../woocommerce-mercadopago-es_ES.mo | Bin 64158 -> 64493 bytes .../woocommerce-mercadopago-es_ES.po | 1112 +- .../woocommerce-mercadopago-es_MX.mo | Bin 64158 -> 64493 bytes .../woocommerce-mercadopago-es_MX.po | 1112 +- .../woocommerce-mercadopago-es_PE.mo | Bin 64158 -> 64493 bytes .../woocommerce-mercadopago-es_PE.po | 1112 +- .../woocommerce-mercadopago-es_UY.mo | Bin 64158 -> 64493 bytes .../woocommerce-mercadopago-es_UY.po | 1112 +- .../woocommerce-mercadopago-es_VE.mo | Bin 64158 -> 64493 bytes .../woocommerce-mercadopago-es_VE.po | 1112 +- .../woocommerce-mercadopago-pt_BR.mo | Bin 64946 -> 65308 bytes .../woocommerce-mercadopago-pt_BR.po | 1122 +- i18n/languages/woocommerce-mercadopago.pot | 740 +- package-lock.json | 20307 ++++++---------- package.json | 2 +- readme.txt | 16 +- src/Configs/Metadata.php | 2 +- src/Configs/Seller.php | 23 +- src/Entities/Metadata/PaymentMetadata.php | 32 +- src/Helpers/Cart.php | 32 +- src/Helpers/Country.php | 42 + src/Helpers/Url.php | 4 +- src/Hooks/Scripts.php | 12 +- src/Transactions/AbstractTransaction.php | 10 +- src/Transactions/BasicTransaction.php | 4 +- src/Transactions/CreditsTransaction.php | 4 +- src/Transactions/CustomTransaction.php | 4 +- src/Transactions/TicketTransaction.php | 4 +- src/Transactions/WalletButtonTransaction.php | 4 +- src/Translations/AdminTranslations.php | 1 + src/WoocommerceMercadoPago.php | 25 +- woocommerce-mercadopago.php | 2 +- 43 files changed, 13485 insertions(+), 17968 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8ff8df99..e61e4d75d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ 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). +## [7.2.1] - 2024-02-15 +### Added +- We have added a warning banner for when the language configured in worpress does not have the translation in our plugin. +### Changed +- Improvements have been made to the readme and changelog files so that the markdown makes more sense to our users. +- Now our plugin constructs the URLs for the assets using the absolute path instead of the relative path. +- Prevent block scripts from loading on admin screens and do not load block scripts in checkouts that do not use Checkout Blocks. +- We've reduced the size of the metadata sent in the payment. +### Fixed +- We've fixed the currency conversion calculation. + ## [7.2.0] - 2024-02-01 ### Added - Introducing Mercado PSE as a new payment method for our users in Colombia. diff --git a/README.md b/README.md index c6c48b71a..373e3952f 100644 --- a/README.md +++ b/README.md @@ -1,47 +1,131 @@ -# Plugins Enablers (Woocommerce) +# Mercado Pago Payment Gateway Plugin (Woocommerce) [![made-with-Php](https://img.shields.io/badge/Made%20with-Php-1f425f.svg)](https://www.php.net/) [![php-version](https://img.shields.io/badge/Php->=7.4-1f425f)]() + +Welcome to the readme for Mercado Pago Payment Gateway Plugin. This guide is intended to provide users with the necessary information to understandand extend the functionality of the plugin. -The base project for the Plugins Enablers Initiative. + -## Install +## Table of Contents -Open your terminal and run the script below in your ````wp-content/plugins```` to install the base plugin. +1. [Introduction](#introduction) -```` -plugin_base_dir="woocommerce-plugins-enablers" \ -&& git clone --quiet --recursive -j8 git@github.com:melisource/fury_woocommerce-plugins-enablers.git $plugin_base_dir \ -&& cd $plugin_base_dir && composer i && composer i -d "./packages/sdk/" -```` +2. [Plugin Overview](#plugin-overview) -## Getting started +3. [WordPress and WooCommerce Basics](#wordpress-and-woocommerce-basics) -The purpose of this tutorial is to support the creation and integration of payment gateway plugins to the base plugin. +4. [Installation](#installation) -#### Creating and integrating a payment gateway to the base plugin +5. [Plugin Configuration](#plugin-configuration) -It is necessary that the creation of the payment gateway plugin be done along the lines of an additional Woocommerce plugin, and as part of the process, we must create a main class that will add the Wordpress loading hook to call the method that allows the plugin to be recognized as a Woocommerce payment gateway plugin. +6. [Hooks and Filters](#hooks-and-filters) -```` -add_action('wp_loaded', 'initPaymentGateway'); -```` +7. [Customization](#customization) -In addition, we must create a custom class to extend Woocommerce gateway class, allowing inheritance of gateway methods and the [configs api](https://woocommerce.com/document/settings-api/). +8. [Contributing](#contributing) -```` -class MPGateway extends \WC_Payment_Gateway {} -```` +9. [Support and Issues](#support-and-issues) -*To learn more about how to structure your gateway class, access the official [Woocommerce documentation](https://woocommerce.com/document/payment-gateway-api/).* + -After creating and defining your gateway class, you need to make Woocommerce aware of it through the woocommerce_payment_gateways filter. It is the responsibility of the base plugin to abstract Woocommerce resources, so to add our gateway class to the filter, just reference the registerGateway method. +## Introduction +Mercado Pago Payment Gateway Plugin is a WooCommerce payment gateway extension designed to facilitate secure online transactions. This guide will help you understand the inner workings of the plugin and provide information on how to extend its functionality. + + + +## Plugin Overview + + + +Mercado Pago Payment Gateway Plugin integrates seamlessly with WooCommerce, enabling users to make payments using Mercado Pago. The plugin is built with flexibility and extensibility in mind, allowing developers to customize and extend its features. + + + +## WordPress and WooCommerce Basics + + + +To work effectively with our plugin, it's essential to have a basic understanding of WordPress and WooCommerce. If you are new to these platforms, consider familiarizing yourself with the following resources: + +- [WordPress Documentation](https://wordpress.org/documentation/) + +- [WooCommerce Documentation](https://developer.woo.com/docs/) + + + +## Installation + + + +Follow these steps to manual installation : + +1. Download the plugin from ths GitHub repository. +2. Run `npm install` and `composer install` +3. Run `sh bin/create-release-zip.sh` to generate the final zip used to install it in the store. +4. Upload the plugin files generated by zip to the `/wp-content/plugins/` directory or install it via the WordPress admin interface. +5. Activate the plugin through the 'Plugins' menu in WordPress. + + +you can also get the plugin directly from the wordpress page at https://wordpress.org/plugins/woocommerce-mercadopago/ + + + +## Plugin Configuration + + +After installation, navigate to the [Mercado Pago developer site](https://www.mercadopago.com/developers/en/docs/woocommerce/introduction) to view integration documentation and configure the plugin. + + + +## Customization + +The WooCommerce payment plugin provides flexibility for customization and extensions. You can extend existing functionalities or add new ones according to your specific needs. + +### Example Payment Gateway Extension +You can also extend the payment gateway class to add new custom gateways. See an example: +```php +namespace MercadoPago\Woocommerce\Templates\Gateways; + +use MercadoPago\Woocommerce\Gateways\AbstractGateway; +use MercadoPago\Woocommerce\Templates\Transactions\ExamplePaymentTransaction; +use MercadoPago\Woocommerce\Templates\WoocommerceMercadopagoTemplate; + +class ExamplePaymentGateway extends AbstractGateway { + // ... (your code here) +} ``` -function initPaymentGateway() { - global $mercadopago; - $mercadopago->hooks->gateway->registerGateway('MercadoPago\Woocommerce\Gateways\MPGateway'); +In this example, the `ExamplePaymentGateway` class extends the payment gateway functionality and can be customized to add new payment options. + +### Example Payment Transaction Extension + +To extend the payment transaction class, you can create a custom class that inherits from `AbstractPaymentTransaction`. See the example below: + +```php +namespace MercadoPago\Woocommerce\Templates\Transactions; + +use MercadoPago\Woocommerce\Gateways\AbstractGateway; +use MercadoPago\Woocommerce\Transactions\AbstractPaymentTransaction; + +class ExamplePaymentTransaction extends AbstractPaymentTransaction { + // ... (your code here) } -```` +``` +In this example, the `ExamplePaymentTransaction` class extends the payment transaction functionality and can be customized as needed. + +You can see more on the github wiki page. + +## Support and Issues + + + +For any issues or questions, please reach out to our [support team](https://www.mercadopago.com/developers/en/support/center/tickets). + + + +Thank you for using our plugin! + + -As you can see in the example above, ````mercadopago```` is a global variable that represents an instance of the base plugin, global variables can be accessed from anywhere, that is, inside and outside the plugin. This variable allows payment gateway plugins to access resources of the base plugin. +--- diff --git a/assets/js/checkouts/custom/mp-custom-checkout.js b/assets/js/checkouts/custom/mp-custom-checkout.js index b29c67990..822cb72fd 100644 --- a/assets/js/checkouts/custom/mp-custom-checkout.js +++ b/assets/js/checkouts/custom/mp-custom-checkout.js @@ -266,9 +266,8 @@ function initCardForm(amount = getAmount()) { function getAmount() { const amount = parseFloat(document.getElementById('mp-amount').value.replace(',', '.')); - const currencyRatio = parseFloat(document.getElementById('currency_ratio').value.replace(',', '.')); - return String(amount * currencyRatio); + return String(amount); } /** diff --git a/assets/js/checkouts/custom/mp-custom-checkout.min.js b/assets/js/checkouts/custom/mp-custom-checkout.min.js index 3f627c1f3..5b6966675 100644 --- a/assets/js/checkouts/custom/mp-custom-checkout.min.js +++ b/assets/js/checkouts/custom/mp-custom-checkout.min.js @@ -1 +1 @@ -var cardForm,hasToken=!1,mercado_pago_submit=!1,triggeredPaymentMethodSelectedEvent=!1,cardFormMounted=!1,threedsTarget="mp_custom_checkout_security_fields_client",mpCheckoutForm=document.querySelector("form[name=checkout]"),mpFormId="checkout";function mercadoPagoFormHandler(){if(document.querySelector("form[id=order_review]")){document.querySelector(".mp-checkout-custom-container").querySelectorAll("input-helper").forEach((e=>{"none"!==e.querySelector("div").style.display&&removeBlockOverlay()}))}return setMercadoPagoSessionId(),!!mercado_pago_submit||("wallet_button"===jQuery("#mp_checkout_type").val()||(jQuery("#mp_checkout_type").val("custom"),!(!CheckoutPage.validateInputsCreateToken()||hasToken)&&createToken()))}function createToken(){return cardForm.createCardToken().then((e=>{if(!e.token)throw new Error("cardToken is empty");if(!hasToken)return document.querySelector("#cardTokenId").value=e.token,mercado_pago_submit=!0,hasToken=!0,"order_review"===mpFormId?(handle3dsPayOrderFormSubmission(),!1):void jQuery("form.checkout").submit()})).catch((e=>{console.warn("Token creation error: ",e)})),!1}function initCardForm(e=getAmount()){var o=new MercadoPago(wc_mercadopago_custom_checkout_params.public_key);return new Promise(((t,r)=>{cardForm=o.cardForm({amount:e,iframe:!0,form:{id:mpFormId,cardNumber:{id:"form-checkout__cardNumber-container",placeholder:"0000 0000 0000 0000",style:{"font-size":"16px",height:"40px",padding:"14px"}},cardholderName:{id:"form-checkout__cardholderName",placeholder:"Ex.: María López"},cardExpirationDate:{id:"form-checkout__expirationDate-container",placeholder:wc_mercadopago_custom_checkout_params.placeholders.cardExpirationDate,mode:"short",style:{"font-size":"16px",height:"40px",padding:"14px"}},securityCode:{id:"form-checkout__securityCode-container",placeholder:"123",style:{"font-size":"16px",height:"40px",padding:"14px"}},identificationType:{id:"form-checkout__identificationType"},identificationNumber:{id:"form-checkout__identificationNumber"},issuer:{id:"form-checkout__issuer",placeholder:wc_mercadopago_custom_checkout_params.placeholders.issuer},installments:{id:"form-checkout__installments",placeholder:wc_mercadopago_custom_checkout_params.placeholders.installments}},callbacks:{onReady:()=>{removeLoadSpinner(),t()},onFormMounted:function(e){cardFormMounted=!0,e&&console.log("Callback to handle the error: creating the CardForm",e)},onFormUnmounted:function(e){cardFormMounted=!1,CheckoutPage.clearInputs(),e&&console.log("Callback to handle the error: unmounting the CardForm",e)},onInstallmentsReceived:(e,o)=>{e?console.warn("Installments handling error: ",e):CheckoutPage.setChangeEventOnInstallments(CheckoutPage.getCountry(),o)},onCardTokenReceived:e=>{e&&console.warn("Token handling error: ",e)},onPaymentMethodsReceived:(e,o)=>{try{if(o){CheckoutPage.setValue("paymentMethodId",o[0].id),CheckoutPage.setCvvHint(o[0].settings[0].security_code),CheckoutPage.changeCvvPlaceHolder(o[0].settings[0].security_code.length),CheckoutPage.clearInputs(),CheckoutPage.setDisplayOfError("fcCardNumberContainer","remove","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-card-number","none"),CheckoutPage.setImageCard(o[0].secure_thumbnail||o[0].thumbnail),CheckoutPage.installment_amount(o[0].payment_type_id);const e=CheckoutPage.loadAdditionalInfo(o[0].additional_info_needed);CheckoutPage.additionalInfoHandler(e)}else CheckoutPage.setDisplayOfError("fcCardNumberContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-card-number","flex")}catch(e){CheckoutPage.setDisplayOfError("fcCardNumberContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-card-number","flex")}},onSubmit:function(e){e.preventDefault()},onValidityChange:function(e,o){if(e){let t=CheckoutPage.getHelperMessage(o),r=wc_mercadopago_custom_checkout_params.input_helper_message[o][e[0].code];t.innerHTML=r||wc_mercadopago_custom_checkout_params.input_helper_message[o].invalid_length,"cardNumber"===o&&"invalid_length"!==e[0].code&&(CheckoutPage.setBackground("fcCardNumberContainer","no-repeat #fff"),CheckoutPage.removeAdditionFields(),CheckoutPage.clearInputs());let a=CheckoutPage.findContainerField(o);return CheckoutPage.setDisplayOfError(a,"add","mp-error"),CheckoutPage.setDisplayOfInputHelper(CheckoutPage.inputHelperName(o),"flex")}let t=CheckoutPage.findContainerField(o);return CheckoutPage.setDisplayOfError(t,"removed","mp-error"),CheckoutPage.setDisplayOfInputHelper(CheckoutPage.inputHelperName(o),"none")},onError:function(e){e.forEach((e=>(removeBlockOverlay(),e.message.includes("timed out")?r(e):e.message.includes("cardNumber")?(CheckoutPage.setDisplayOfError("fcCardNumberContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-card-number","flex")):e.message.includes("cardholderName")?(CheckoutPage.setDisplayOfError("fcCardholderName","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-card-holder-name","flex")):e.message.includes("expirationMonth")||e.message.includes("expirationYear")?(CheckoutPage.setDisplayOfError("fcCardExpirationDateContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-expiration-date","flex")):e.message.includes("securityCode")?(CheckoutPage.setDisplayOfError("fcSecurityNumberContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-security-code","flex")):e.message.includes("identificationNumber")?(CheckoutPage.setDisplayOfError("fcIdentificationNumberContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-doc-number","flex")):r(e))))}}})}))}function getAmount(){const e=parseFloat(document.getElementById("mp-amount").value.replace(",",".")),o=parseFloat(document.getElementById("currency_ratio").value.replace(",","."));return String(e*o)}function setMercadoPagoSessionId(){try{document.querySelector("#mpCardSessionId").value=MP_DEVICE_SESSION_ID}catch(e){console.warn(e)}}function removeBlockOverlay(){jQuery("form#order_review").length>0&&jQuery(".blockOverlay").css("display","none")}function cardFormLoad(){const e=document.getElementById("payment_method_woo-mercado-pago-custom");e&&e.checked?setTimeout((()=>{cardFormMounted||(createLoadSpinner(),handleCardFormLoad())}),2500):cardFormMounted&&cardForm.unmount()}function setCardFormLoadInterval(){var e=setInterval((()=>{const o=document.getElementById("payment_method_woo-mercado-pago-custom"),t=document.getElementById("form-checkout__cardNumber-container");o&&o.checked?t&&t.childElementCount>0?clearInterval(e):cardFormMounted&&(cardForm.unmount(),cardFormLoad()):clearInterval(e)}),1e3)}function handleCardFormLoad(){initCardForm().then((()=>{sendMetric("MP_CARDFORM_SUCCESS","Security fields loaded",threedsTarget)})).catch((e=>{const o=handleCardFormErrors(e);sendMetric("MP_CARDFORM_ERROR",o,threedsTarget),console.error("Mercado Pago cardForm error: ",o)}))}function handleCardFormErrors(e){if(e.length){const o=[];return e.forEach((e=>{o.push(e.description||e.message)})),o.join(",")}return e.description||e.message}function createLoadSpinner(){document.querySelector(".mp-checkout-custom-container").style.display="none",document.querySelector(".mp-checkout-custom-load").style.display="flex"}function removeLoadSpinner(){document.querySelector(".mp-checkout-custom-container").style.display="block",document.querySelector(".mp-checkout-custom-load").style.display="none"}function removeLoadSpinner3ds(){document.getElementById("mp-loading-container-3ds").remove()}function addLoadSpinner3dsSubmit(){document.getElementById("mp-3ds-modal-content").innerHTML='

'+wc_mercadopago_custom_checkout_params.threeDsText.title_loading_response+"

"}function removeModal3ds(){CheckoutPage.clearInputs(),document.getElementById("mp-3ds-modal-container").remove()}function threeDSHandler(e,o){try{if(null==e||null==o)return removeModal3ds(),sendMetric("MP_THREE_DS_ERROR","3DS URL or CRED not set",threedsTarget),void console.log("Invalid parameters for 3ds");var t=document.createElement("div");t.className="mp-card-info",t.innerHTML='
'+wc_mercadopago_custom_checkout_params.threeDsText.title_frame+"
";var r=document.getElementById("mp-3ds-modal-content"),a=document.createElement("iframe");a.name="mp-3ds-frame",a.id="mp-3ds-frame",a.onload=()=>removeLoadSpinner3ds(),document.getElementById("mp-3ds-title").innerText=wc_mercadopago_custom_checkout_params.threeDsText.tooltip_frame,r.appendChild(t),r.appendChild(a);var n=a.contentWindow.document,d=n.createElement("form");d.name="mp-3ds-frame",d.className="mp-modal",d.setAttribute("target","mp-3ds-frame"),d.setAttribute("method","post"),d.setAttribute("action",e);var c=n.createElement("input");c.setAttribute("type","hidden"),c.setAttribute("name","creq"),c.setAttribute("value",o),d.appendChild(c),a.appendChild(d),d.submit()}catch(e){console.log(e),sendMetric("MP_THREE_DS_ERROR","3DS Loading error: "+e,threedsTarget),alert("Error doing Challenge, try again later.")}}function load3DSFlow(e){var o=document.createElement("div");o.setAttribute("id","mp-3ds-modal-container"),o.className="mp-3ds-modal";var t=document.createElement("div");t.id="mp-3ds-modal-content",t.innerHTML='
×

'+wc_mercadopago_custom_checkout_params.threeDsText.title_loading+"
("+document.getElementById("paymentMethodId").value+"****"+e+") "+wc_mercadopago_custom_checkout_params.threeDsText.title_loading2+'

'+wc_mercadopago_custom_checkout_params.threeDsText.text_loading+"

",o.appendChild(t),document.body.appendChild(o),document.querySelector("#mp-3ds-modal-close").addEventListener("click",(function(){setDisplayOfErrorCheckout(wc_mercadopago_custom_checkout_params.threeDsText.message_close),removeModal3ds()})),jQuery.post("/?wc-ajax=mp_get_3ds_from_session").done((function(e){e.success?threeDSHandler(e.data.data["3ds_url"],e.data.data["3ds_creq"]):(console.error("Error POST:",e),window.dispatchEvent(new CustomEvent("completed_3ds",{detail:{error:!0}})),removeModal3ds())})).fail((function(e,o,t){console.error("Failed to make POST:",o,t),window.dispatchEvent(new CustomEvent("completed_3ds",{detail:{error:!0}})),removeModal3ds()}))}function redirectAfter3dsChallenge(){jQuery.post("/?wc-ajax=mp_redirect_after_3ds_challenge").done((function(e){e.data.redirect?(window.dispatchEvent(new CustomEvent("completed_3ds",{detail:{error:!1}})),sendMetric("MP_THREE_DS_SUCCESS","3DS challenge complete",threedsTarget),removeModal3ds(),window.location.href=e.data.redirect):(window.dispatchEvent(new CustomEvent("completed_3ds",{detail:{error:e.data.data.error}})),setDisplayOfErrorCheckout(e.data.data.error),removeModal3ds())}))}function handle3dsPayOrderFormSubmission(){var e=jQuery("#order_review").serialize();jQuery.post("#",e).done((function(e){e.three_ds_flow?load3DSFlow(e.last_four_digits):(e.redirect&&(window.location.href=e.redirect),window.location.reload())})).error((function(){window.location.reload()}))}function setDisplayOfErrorCheckout(e){if(sendMetric("MP_THREE_DS_ERROR",e,threedsTarget),"blocks_checkout_form"!==window.mpFormId){removeElementsByClass("woocommerce-NoticeGroup-checkout");var o=document.createElement("div");o.className="woocommerce-NoticeGroup woocommerce-NoticeGroup-checkout",o.innerHTML='",mpCheckoutForm.prepend(o),window.scrollTo(0,0)}}function removeElementsByClass(e){const o=document.getElementsByClassName(e);for(;o.length>0;)o[0].parentNode.removeChild(o[0])}function sendMetric(e,o,t){const r={name:e,message:o,target:t,plugin:{version:wc_mercadopago_custom_checkout_params.plugin_version},platform:{name:"woocommerce",uri:window.location.href,version:wc_mercadopago_custom_checkout_params.platform_version,location:`${wc_mercadopago_custom_checkout_params.location}_${wc_mercadopago_custom_checkout_params.theme}`}};navigator.sendBeacon("https://api.mercadopago.com/v1/plugins/melidata/errors",JSON.stringify(r))}mpCheckoutForm?mpCheckoutForm.id=mpFormId:mpFormId="order_review",jQuery("form.checkout").on("checkout_place_order_woo-mercado-pago-custom",mercadoPagoFormHandler),jQuery("body").on("payment_method_selected",(function(){triggeredPaymentMethodSelectedEvent||cardFormLoad()})),jQuery("form#order_review").submit((function(e){if(document.getElementById("payment_method_woo-mercado-pago-custom").checked)return e.preventDefault(),mercadoPagoFormHandler();cardFormLoad()})),jQuery(document.body).on("checkout_error",(()=>{hasToken=!1,mercado_pago_submit=!1})),jQuery(document).on("updated_checkout",(function(){const e=document.getElementById("payment_method_woo-mercado-pago-custom");if(e||e.checked)return cardFormMounted&&cardForm.unmount(),void handleCardFormLoad()})),jQuery(document).ready((()=>{setCardFormLoadInterval()})),triggeredPaymentMethodSelectedEvent||jQuery("body").trigger("payment_method_selected"),window.addEventListener("message",(e=>{"COMPLETE"===e.data.status&&(sendMetric("MP_THREE_DS_SUCCESS","3DS iframe Closed",threedsTarget),document.getElementById("mp-3ds-modal-content").innerHTML="",addLoadSpinner3dsSubmit(),redirectAfter3dsChallenge())})); \ No newline at end of file +var cardForm,hasToken=!1,mercado_pago_submit=!1,triggeredPaymentMethodSelectedEvent=!1,cardFormMounted=!1,threedsTarget="mp_custom_checkout_security_fields_client",mpCheckoutForm=document.querySelector("form[name=checkout]"),mpFormId="checkout";function mercadoPagoFormHandler(){if(document.querySelector("form[id=order_review]")){document.querySelector(".mp-checkout-custom-container").querySelectorAll("input-helper").forEach((e=>{"none"!==e.querySelector("div").style.display&&removeBlockOverlay()}))}return setMercadoPagoSessionId(),!!mercado_pago_submit||("wallet_button"===jQuery("#mp_checkout_type").val()||(jQuery("#mp_checkout_type").val("custom"),!(!CheckoutPage.validateInputsCreateToken()||hasToken)&&createToken()))}function createToken(){return cardForm.createCardToken().then((e=>{if(!e.token)throw new Error("cardToken is empty");if(!hasToken)return document.querySelector("#cardTokenId").value=e.token,mercado_pago_submit=!0,hasToken=!0,"order_review"===mpFormId?(handle3dsPayOrderFormSubmission(),!1):void jQuery("form.checkout").submit()})).catch((e=>{console.warn("Token creation error: ",e)})),!1}function initCardForm(e=getAmount()){var o=new MercadoPago(wc_mercadopago_custom_checkout_params.public_key);return new Promise(((t,r)=>{cardForm=o.cardForm({amount:e,iframe:!0,form:{id:mpFormId,cardNumber:{id:"form-checkout__cardNumber-container",placeholder:"0000 0000 0000 0000",style:{"font-size":"16px",height:"40px",padding:"14px"}},cardholderName:{id:"form-checkout__cardholderName",placeholder:"Ex.: María López"},cardExpirationDate:{id:"form-checkout__expirationDate-container",placeholder:wc_mercadopago_custom_checkout_params.placeholders.cardExpirationDate,mode:"short",style:{"font-size":"16px",height:"40px",padding:"14px"}},securityCode:{id:"form-checkout__securityCode-container",placeholder:"123",style:{"font-size":"16px",height:"40px",padding:"14px"}},identificationType:{id:"form-checkout__identificationType"},identificationNumber:{id:"form-checkout__identificationNumber"},issuer:{id:"form-checkout__issuer",placeholder:wc_mercadopago_custom_checkout_params.placeholders.issuer},installments:{id:"form-checkout__installments",placeholder:wc_mercadopago_custom_checkout_params.placeholders.installments}},callbacks:{onReady:()=>{removeLoadSpinner(),t()},onFormMounted:function(e){cardFormMounted=!0,e&&console.log("Callback to handle the error: creating the CardForm",e)},onFormUnmounted:function(e){cardFormMounted=!1,CheckoutPage.clearInputs(),e&&console.log("Callback to handle the error: unmounting the CardForm",e)},onInstallmentsReceived:(e,o)=>{e?console.warn("Installments handling error: ",e):CheckoutPage.setChangeEventOnInstallments(CheckoutPage.getCountry(),o)},onCardTokenReceived:e=>{e&&console.warn("Token handling error: ",e)},onPaymentMethodsReceived:(e,o)=>{try{if(o){CheckoutPage.setValue("paymentMethodId",o[0].id),CheckoutPage.setCvvHint(o[0].settings[0].security_code),CheckoutPage.changeCvvPlaceHolder(o[0].settings[0].security_code.length),CheckoutPage.clearInputs(),CheckoutPage.setDisplayOfError("fcCardNumberContainer","remove","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-card-number","none"),CheckoutPage.setImageCard(o[0].secure_thumbnail||o[0].thumbnail),CheckoutPage.installment_amount(o[0].payment_type_id);const e=CheckoutPage.loadAdditionalInfo(o[0].additional_info_needed);CheckoutPage.additionalInfoHandler(e)}else CheckoutPage.setDisplayOfError("fcCardNumberContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-card-number","flex")}catch(e){CheckoutPage.setDisplayOfError("fcCardNumberContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-card-number","flex")}},onSubmit:function(e){e.preventDefault()},onValidityChange:function(e,o){if(e){let t=CheckoutPage.getHelperMessage(o),r=wc_mercadopago_custom_checkout_params.input_helper_message[o][e[0].code];t.innerHTML=r||wc_mercadopago_custom_checkout_params.input_helper_message[o].invalid_length,"cardNumber"===o&&"invalid_length"!==e[0].code&&(CheckoutPage.setBackground("fcCardNumberContainer","no-repeat #fff"),CheckoutPage.removeAdditionFields(),CheckoutPage.clearInputs());let a=CheckoutPage.findContainerField(o);return CheckoutPage.setDisplayOfError(a,"add","mp-error"),CheckoutPage.setDisplayOfInputHelper(CheckoutPage.inputHelperName(o),"flex")}let t=CheckoutPage.findContainerField(o);return CheckoutPage.setDisplayOfError(t,"removed","mp-error"),CheckoutPage.setDisplayOfInputHelper(CheckoutPage.inputHelperName(o),"none")},onError:function(e){e.forEach((e=>(removeBlockOverlay(),e.message.includes("timed out")?r(e):e.message.includes("cardNumber")?(CheckoutPage.setDisplayOfError("fcCardNumberContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-card-number","flex")):e.message.includes("cardholderName")?(CheckoutPage.setDisplayOfError("fcCardholderName","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-card-holder-name","flex")):e.message.includes("expirationMonth")||e.message.includes("expirationYear")?(CheckoutPage.setDisplayOfError("fcCardExpirationDateContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-expiration-date","flex")):e.message.includes("securityCode")?(CheckoutPage.setDisplayOfError("fcSecurityNumberContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-security-code","flex")):e.message.includes("identificationNumber")?(CheckoutPage.setDisplayOfError("fcIdentificationNumberContainer","add","mp-error"),CheckoutPage.setDisplayOfInputHelper("mp-doc-number","flex")):r(e))))}}})}))}function getAmount(){const e=parseFloat(document.getElementById("mp-amount").value.replace(",","."));return String(e)}function setMercadoPagoSessionId(){try{document.querySelector("#mpCardSessionId").value=MP_DEVICE_SESSION_ID}catch(e){console.warn(e)}}function removeBlockOverlay(){jQuery("form#order_review").length>0&&jQuery(".blockOverlay").css("display","none")}function cardFormLoad(){const e=document.getElementById("payment_method_woo-mercado-pago-custom");e&&e.checked?setTimeout((()=>{cardFormMounted||(createLoadSpinner(),handleCardFormLoad())}),2500):cardFormMounted&&cardForm.unmount()}function setCardFormLoadInterval(){var e=setInterval((()=>{const o=document.getElementById("payment_method_woo-mercado-pago-custom"),t=document.getElementById("form-checkout__cardNumber-container");o&&o.checked?t&&t.childElementCount>0?clearInterval(e):cardFormMounted&&(cardForm.unmount(),cardFormLoad()):clearInterval(e)}),1e3)}function handleCardFormLoad(){initCardForm().then((()=>{sendMetric("MP_CARDFORM_SUCCESS","Security fields loaded",threedsTarget)})).catch((e=>{const o=handleCardFormErrors(e);sendMetric("MP_CARDFORM_ERROR",o,threedsTarget),console.error("Mercado Pago cardForm error: ",o)}))}function handleCardFormErrors(e){if(e.length){const o=[];return e.forEach((e=>{o.push(e.description||e.message)})),o.join(",")}return e.description||e.message}function createLoadSpinner(){document.querySelector(".mp-checkout-custom-container").style.display="none",document.querySelector(".mp-checkout-custom-load").style.display="flex"}function removeLoadSpinner(){document.querySelector(".mp-checkout-custom-container").style.display="block",document.querySelector(".mp-checkout-custom-load").style.display="none"}function removeLoadSpinner3ds(){document.getElementById("mp-loading-container-3ds").remove()}function addLoadSpinner3dsSubmit(){document.getElementById("mp-3ds-modal-content").innerHTML='

'+wc_mercadopago_custom_checkout_params.threeDsText.title_loading_response+"

"}function removeModal3ds(){CheckoutPage.clearInputs(),document.getElementById("mp-3ds-modal-container").remove()}function threeDSHandler(e,o){try{if(null==e||null==o)return removeModal3ds(),sendMetric("MP_THREE_DS_ERROR","3DS URL or CRED not set",threedsTarget),void console.log("Invalid parameters for 3ds");var t=document.createElement("div");t.className="mp-card-info",t.innerHTML='
'+wc_mercadopago_custom_checkout_params.threeDsText.title_frame+"
";var r=document.getElementById("mp-3ds-modal-content"),a=document.createElement("iframe");a.name="mp-3ds-frame",a.id="mp-3ds-frame",a.onload=()=>removeLoadSpinner3ds(),document.getElementById("mp-3ds-title").innerText=wc_mercadopago_custom_checkout_params.threeDsText.tooltip_frame,r.appendChild(t),r.appendChild(a);var n=a.contentWindow.document,d=n.createElement("form");d.name="mp-3ds-frame",d.className="mp-modal",d.setAttribute("target","mp-3ds-frame"),d.setAttribute("method","post"),d.setAttribute("action",e);var c=n.createElement("input");c.setAttribute("type","hidden"),c.setAttribute("name","creq"),c.setAttribute("value",o),d.appendChild(c),a.appendChild(d),d.submit()}catch(e){console.log(e),sendMetric("MP_THREE_DS_ERROR","3DS Loading error: "+e,threedsTarget),alert("Error doing Challenge, try again later.")}}function load3DSFlow(e){var o=document.createElement("div");o.setAttribute("id","mp-3ds-modal-container"),o.className="mp-3ds-modal";var t=document.createElement("div");t.id="mp-3ds-modal-content",t.innerHTML='
×

'+wc_mercadopago_custom_checkout_params.threeDsText.title_loading+"
("+document.getElementById("paymentMethodId").value+"****"+e+") "+wc_mercadopago_custom_checkout_params.threeDsText.title_loading2+'

'+wc_mercadopago_custom_checkout_params.threeDsText.text_loading+"

",o.appendChild(t),document.body.appendChild(o),document.querySelector("#mp-3ds-modal-close").addEventListener("click",(function(){setDisplayOfErrorCheckout(wc_mercadopago_custom_checkout_params.threeDsText.message_close),removeModal3ds()})),jQuery.post("/?wc-ajax=mp_get_3ds_from_session").done((function(e){e.success?threeDSHandler(e.data.data["3ds_url"],e.data.data["3ds_creq"]):(console.error("Error POST:",e),window.dispatchEvent(new CustomEvent("completed_3ds",{detail:{error:!0}})),removeModal3ds())})).fail((function(e,o,t){console.error("Failed to make POST:",o,t),window.dispatchEvent(new CustomEvent("completed_3ds",{detail:{error:!0}})),removeModal3ds()}))}function redirectAfter3dsChallenge(){jQuery.post("/?wc-ajax=mp_redirect_after_3ds_challenge").done((function(e){e.data.redirect?(window.dispatchEvent(new CustomEvent("completed_3ds",{detail:{error:!1}})),sendMetric("MP_THREE_DS_SUCCESS","3DS challenge complete",threedsTarget),removeModal3ds(),window.location.href=e.data.redirect):(window.dispatchEvent(new CustomEvent("completed_3ds",{detail:{error:e.data.data.error}})),setDisplayOfErrorCheckout(e.data.data.error),removeModal3ds())}))}function handle3dsPayOrderFormSubmission(){var e=jQuery("#order_review").serialize();jQuery.post("#",e).done((function(e){e.three_ds_flow?load3DSFlow(e.last_four_digits):(e.redirect&&(window.location.href=e.redirect),window.location.reload())})).error((function(){window.location.reload()}))}function setDisplayOfErrorCheckout(e){if(sendMetric("MP_THREE_DS_ERROR",e,threedsTarget),"blocks_checkout_form"!==window.mpFormId){removeElementsByClass("woocommerce-NoticeGroup-checkout");var o=document.createElement("div");o.className="woocommerce-NoticeGroup woocommerce-NoticeGroup-checkout",o.innerHTML='",mpCheckoutForm.prepend(o),window.scrollTo(0,0)}}function removeElementsByClass(e){const o=document.getElementsByClassName(e);for(;o.length>0;)o[0].parentNode.removeChild(o[0])}function sendMetric(e,o,t){const r={name:e,message:o,target:t,plugin:{version:wc_mercadopago_custom_checkout_params.plugin_version},platform:{name:"woocommerce",uri:window.location.href,version:wc_mercadopago_custom_checkout_params.platform_version,location:`${wc_mercadopago_custom_checkout_params.location}_${wc_mercadopago_custom_checkout_params.theme}`}};navigator.sendBeacon("https://api.mercadopago.com/v1/plugins/melidata/errors",JSON.stringify(r))}mpCheckoutForm?mpCheckoutForm.id=mpFormId:mpFormId="order_review",jQuery("form.checkout").on("checkout_place_order_woo-mercado-pago-custom",mercadoPagoFormHandler),jQuery("body").on("payment_method_selected",(function(){triggeredPaymentMethodSelectedEvent||cardFormLoad()})),jQuery("form#order_review").submit((function(e){if(document.getElementById("payment_method_woo-mercado-pago-custom").checked)return e.preventDefault(),mercadoPagoFormHandler();cardFormLoad()})),jQuery(document.body).on("checkout_error",(()=>{hasToken=!1,mercado_pago_submit=!1})),jQuery(document).on("updated_checkout",(function(){const e=document.getElementById("payment_method_woo-mercado-pago-custom");if(e||e.checked)return cardFormMounted&&cardForm.unmount(),void handleCardFormLoad()})),jQuery(document).ready((()=>{setCardFormLoadInterval()})),triggeredPaymentMethodSelectedEvent||jQuery("body").trigger("payment_method_selected"),window.addEventListener("message",(e=>{"COMPLETE"===e.data.status&&(sendMetric("MP_THREE_DS_SUCCESS","3DS iframe Closed",threedsTarget),document.getElementById("mp-3ds-modal-content").innerHTML="",addLoadSpinner3dsSubmit(),redirectAfter3dsChallenge())})); \ No newline at end of file diff --git a/changelog.log b/changelog.log index 490bc5425..dd3dab7e8 100644 --- a/changelog.log +++ b/changelog.log @@ -1,6 +1,17 @@ CHANGELOG: == Changelog == += v7.2.1 (15/02/2024) = +* Added: +- We have added a warning banner for when the language configured in worpress does not have the translation in our plugin. +* Changed: +- Improvements have been made to the readme and changelog files so that the markdown makes more sense to our users. +- Now our plugin constructs the URLs for the assets using the absolute path instead of the relative path. +- Prevent block scripts from loading on admin screens and do not load block scripts in checkouts that do not use Checkout Blocks. +- We've reduced the size of the metadata sent in the payment. +* Fixed: +- We've fixed the currency conversion calculation. + = v7.2.0 (01/02/2024) = * Added: - Introducing Mercado PSE as a new payment method for our users in Colombia. diff --git a/i18n/languages/woocommerce-mercadopago-es_AR.mo b/i18n/languages/woocommerce-mercadopago-es_AR.mo index bd1af4ac49f7dfee76b3c4a9adea6e331edd16a2..392533cbdfcbb70849524b76c5c5421daba707ad 100644 GIT binary patch delta 10494 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 delta 10191 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 CD_YP1 diff --git a/i18n/languages/woocommerce-mercadopago-es_AR.po b/i18n/languages/woocommerce-mercadopago-es_AR.po index 56c6233a1..d807f91c5 100644 --- a/i18n/languages/woocommerce-mercadopago-es_AR.po +++ b/i18n/languages/woocommerce-mercadopago-es_AR.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" -"POT-Creation-Date: 2024-02-01 11:32+0000\n" +"POT-Creation-Date: 2024-02-07 19:47+0000\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -15,22 +15,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.2\n" -#: ../../src/WoocommerceMercadoPago.php:426, +#: ../../src/WoocommerceMercadoPago.php:449, #: ../../src/Translations/AdminTranslations.php:166 msgid "Activate WooCommerce" msgstr "Activar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:427, +#: ../../src/WoocommerceMercadoPago.php:450, #: ../../src/Translations/AdminTranslations.php:167 msgid "Install WooCommerce" msgstr "Instalar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:428, +#: ../../src/WoocommerceMercadoPago.php:451, #: ../../src/Translations/AdminTranslations.php:168 msgid "See WooCommerce" msgstr "Ver WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:430, +#: ../../src/WoocommerceMercadoPago.php:453, #: ../../src/Translations/AdminTranslations.php:157 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" @@ -103,50 +103,60 @@ msgstr "" msgid "Activate" msgstr "Activar" -#: ../../src/Translations/AdminTranslations.php:188 +#: ../../src/Translations/AdminTranslations.php:177 +msgid "" +"Unfortunately, the language configured in your WordPress is not compatible " +"with our plugin. For the best experience, please switch to a supported " +"language." +msgstr "" +"Lamentablemente, el idioma configurado en tu WordPress no es compatible con " +"nuestro plugin. Para disfrutar de la mejor experiencia, cambia a un idioma " +"compatible." + +#: ../../src/Translations/AdminTranslations.php:189 msgid "Set plugin" msgstr "Configurar plugin" -#: ../../src/Translations/AdminTranslations.php:189, -#: ../../src/Translations/AdminTranslations.php:743, -#: ../../src/Translations/AdminTranslations.php:802 +#: ../../src/Translations/AdminTranslations.php:190, +#: ../../src/Translations/AdminTranslations.php:744, +#: ../../src/Translations/AdminTranslations.php:803 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../src/Translations/AdminTranslations.php:190, -#: ../../src/Translations/AdminTranslations.php:261 +#: ../../src/Translations/AdminTranslations.php:191, +#: ../../src/Translations/AdminTranslations.php:262 msgid "Plugin manual" msgstr "Manual del plugin" -#: ../../src/Translations/AdminTranslations.php:202 +#: ../../src/Translations/AdminTranslations.php:203 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../src/Translations/AdminTranslations.php:203 +#: ../../src/Translations/AdminTranslations.php:204 msgid "Mercado Pago commission:" msgstr "Comisión de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:204 +#: ../../src/Translations/AdminTranslations.php:205 msgid "Represents the commission configured on plugin settings." msgstr "Representa la comisión configurada en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:205 +#: ../../src/Translations/AdminTranslations.php:206 msgid "Mercado Pago discount:" msgstr "Descuento de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:206 +#: ../../src/Translations/AdminTranslations.php:207 msgid "Represents the discount configured on plugin settings." msgstr "Representa el descuento configurado en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:207 +#: ../../src/Translations/AdminTranslations.php:208 msgid "Represents the installment fee charged by Mercado Pago." msgstr "Representa la comisión a plazos cobrada por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:208 +#: ../../src/Translations/AdminTranslations.php:209 msgid "Mercado Pago Installment Fee:" msgstr "Cuota de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:209 +#: ../../src/Translations/AdminTranslations.php:210 msgid "" "Represents the total purchase plus the installment fee charged by Mercado " "Pago." @@ -154,91 +164,91 @@ msgstr "" "Representa el total de la compra más la comisión de fraccionamiento cobrada " "por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:210 +#: ../../src/Translations/AdminTranslations.php:211 msgid "Mercado Pago Total:" msgstr "Mercado Pago Total:" -#: ../../src/Translations/AdminTranslations.php:223 +#: ../../src/Translations/AdminTranslations.php:224 msgid "Accept" msgstr "Acepta" -#: ../../src/Translations/AdminTranslations.php:224 +#: ../../src/Translations/AdminTranslations.php:225 msgid "payments on the spot" msgstr "pagos al instante" -#: ../../src/Translations/AdminTranslations.php:225 +#: ../../src/Translations/AdminTranslations.php:226 msgid "with" msgstr "con" -#: ../../src/Translations/AdminTranslations.php:226 +#: ../../src/Translations/AdminTranslations.php:227 msgid "the" msgstr "toda la" -#: ../../src/Translations/AdminTranslations.php:227 +#: ../../src/Translations/AdminTranslations.php:228 msgid "security" msgstr "seguridad" -#: ../../src/Translations/AdminTranslations.php:228 +#: ../../src/Translations/AdminTranslations.php:229 msgid "from Mercado Pago" msgstr "de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:233 +#: ../../src/Translations/AdminTranslations.php:234 msgid "Choose" msgstr "Elige" -#: ../../src/Translations/AdminTranslations.php:234 +#: ../../src/Translations/AdminTranslations.php:235 msgid "when you want to receive the money" msgstr "cuándo quieres recibir el dinero" -#: ../../src/Translations/AdminTranslations.php:235 +#: ../../src/Translations/AdminTranslations.php:236 msgid "from your sales and if you want to offer" msgstr "de las ventas y si quieres ofrecer" -#: ../../src/Translations/AdminTranslations.php:236 +#: ../../src/Translations/AdminTranslations.php:237 msgid "interest-free installments" msgstr "cuotas sin interés" -#: ../../src/Translations/AdminTranslations.php:237 +#: ../../src/Translations/AdminTranslations.php:238 msgid "to your clients." msgstr "a los clientes." -#: ../../src/Translations/AdminTranslations.php:242 +#: ../../src/Translations/AdminTranslations.php:243 msgid "Review the step-by-step of" msgstr "Revisa el paso a paso de" -#: ../../src/Translations/AdminTranslations.php:243 +#: ../../src/Translations/AdminTranslations.php:244 msgid "how to integrate the Mercado Pago Plugin" msgstr "cómo integrar el Plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:244 +#: ../../src/Translations/AdminTranslations.php:245 msgid "on our website for developers." msgstr "en nuestro sitio de desarrolladores." -#: ../../src/Translations/AdminTranslations.php:248 +#: ../../src/Translations/AdminTranslations.php:249 msgid "SSL" msgstr "SSL" -#: ../../src/Translations/AdminTranslations.php:249 +#: ../../src/Translations/AdminTranslations.php:250 msgid "Curl" msgstr "Curl" -#: ../../src/Translations/AdminTranslations.php:250 +#: ../../src/Translations/AdminTranslations.php:251 msgid "GD Extensions" msgstr "Extensiones GD" -#: ../../src/Translations/AdminTranslations.php:252 +#: ../../src/Translations/AdminTranslations.php:253 msgid "Technical requirements" msgstr "Requisitos técnicos" -#: ../../src/Translations/AdminTranslations.php:253 +#: ../../src/Translations/AdminTranslations.php:254 msgid "Collections and installments" msgstr "Cobros y cuotas" -#: ../../src/Translations/AdminTranslations.php:254 +#: ../../src/Translations/AdminTranslations.php:255 msgid "Questions?" msgstr "¿Dudas?" -#: ../../src/Translations/AdminTranslations.php:255 +#: ../../src/Translations/AdminTranslations.php:256 msgid "" "Implementation responsible for transmitting data to Mercado Pago in a secure " "and encrypted way." @@ -246,7 +256,7 @@ msgstr "" "Implementación responsable de transmitir los datos a Mercado Pago de forma " "segura y encriptada." -#: ../../src/Translations/AdminTranslations.php:256 +#: ../../src/Translations/AdminTranslations.php:257 msgid "" "It is an extension responsible for making payments via requests from the " "plugin to Mercado Pago." @@ -254,7 +264,7 @@ msgstr "" "Es una extensión encargada de realizar los pagos a través de requests del " "plugin a Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:257 +#: ../../src/Translations/AdminTranslations.php:258 msgid "" "These extensions are responsible for the implementation and operation of Pix " "in your store." @@ -262,11 +272,11 @@ msgstr "" "Extensiones responsables de la aplicación y el funcionamiento de Pix en su " "tienda." -#: ../../src/Translations/AdminTranslations.php:260 +#: ../../src/Translations/AdminTranslations.php:261 msgid "Set deadlines and fees" msgstr "Ajustar plazos y tasas" -#: ../../src/Translations/AdminTranslations.php:274 +#: ../../src/Translations/AdminTranslations.php:275 msgid "" "To enable orders, you must create and activate production credentials in " "your Mercado Pago Account." @@ -274,79 +284,79 @@ msgstr "" "Para habilitar las ventas, debes crear y activar las credenciales de " "producción en tu cuenta de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:275 +#: ../../src/Translations/AdminTranslations.php:276 msgid "Copy and paste the credentials below." msgstr "Copia y pega tus credenciales a continuación." -#: ../../src/Translations/AdminTranslations.php:280 +#: ../../src/Translations/AdminTranslations.php:281 msgid "You must enter" msgstr "Debe introducir" -#: ../../src/Translations/AdminTranslations.php:281 +#: ../../src/Translations/AdminTranslations.php:282 msgid "production credentials" msgstr "las credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:285 +#: ../../src/Translations/AdminTranslations.php:286 msgid "Public Key" msgstr "Public Key" -#: ../../src/Translations/AdminTranslations.php:286 +#: ../../src/Translations/AdminTranslations.php:287 msgid "Access Token" msgstr "Access Token" -#: ../../src/Translations/AdminTranslations.php:287 +#: ../../src/Translations/AdminTranslations.php:288 msgid "1. Integrate your store with Mercado Pago" msgstr "1. Integra la tienda a Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:288 +#: ../../src/Translations/AdminTranslations.php:289 msgid "Production credentials" msgstr "Credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:289 +#: ../../src/Translations/AdminTranslations.php:290 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:291 +#: ../../src/Translations/AdminTranslations.php:292 msgid "Enable Mercado Pago checkouts for test purchases in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para pruebas de compras en la " "tienda." -#: ../../src/Translations/AdminTranslations.php:292 +#: ../../src/Translations/AdminTranslations.php:293 msgid "Enable Mercado Pago checkouts to receive real payments in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para recibir pagos reales en tienda." -#: ../../src/Translations/AdminTranslations.php:293 +#: ../../src/Translations/AdminTranslations.php:294 msgid "Paste your Public Key here" msgstr "Pega aquí tu Public Key" -#: ../../src/Translations/AdminTranslations.php:294 +#: ../../src/Translations/AdminTranslations.php:295 msgid "Paste your Access Token here" msgstr "Pega aquí tu Access Token" -#: ../../src/Translations/AdminTranslations.php:295 +#: ../../src/Translations/AdminTranslations.php:296 msgid "Check credentials" msgstr "Consultar credenciales" -#: ../../src/Translations/AdminTranslations.php:296, -#: ../../src/Translations/AdminTranslations.php:350 +#: ../../src/Translations/AdminTranslations.php:297, +#: ../../src/Translations/AdminTranslations.php:351 msgid "Save and continue" msgstr "Guardar y continuar" -#: ../../src/Translations/AdminTranslations.php:297 +#: ../../src/Translations/AdminTranslations.php:298 msgid "Important! To sell you must enter your credentials." msgstr "¡Importante! Para vender debe introducir sus credenciales." -#: ../../src/Translations/AdminTranslations.php:299 +#: ../../src/Translations/AdminTranslations.php:300 msgid "Enter credentials" msgstr "Introducir credenciales" -#: ../../src/Translations/AdminTranslations.php:300 +#: ../../src/Translations/AdminTranslations.php:301 msgid "Activate your credentials to be able to sell" msgstr "Activa tus credenciales para poder vender" -#: ../../src/Translations/AdminTranslations.php:301 +#: ../../src/Translations/AdminTranslations.php:302 msgid "" "Credentials are codes that you must enter to enable sales. Go below on " "Activate Credentials. On the next screen, use again the Activate Credentials " @@ -357,23 +367,23 @@ msgstr "" "nuevamente el botón Activar Credenciales y complete los campos con la " "información solicitada." -#: ../../src/Translations/AdminTranslations.php:302 +#: ../../src/Translations/AdminTranslations.php:303 msgid "Activate credentials" msgstr "Activar credenciales" -#: ../../src/Translations/AdminTranslations.php:315 +#: ../../src/Translations/AdminTranslations.php:316 msgid "Add the URL to receive payments notifications." msgstr "Ingresa la URL para recibir notificaciones de pago." -#: ../../src/Translations/AdminTranslations.php:316 +#: ../../src/Translations/AdminTranslations.php:317 msgid "Find out more information in the" msgstr "Consulta más información en los" -#: ../../src/Translations/AdminTranslations.php:318 +#: ../../src/Translations/AdminTranslations.php:319 msgid "guides" msgstr "manuales" -#: ../../src/Translations/AdminTranslations.php:323 +#: ../../src/Translations/AdminTranslations.php:324 msgid "" "If you are a Mercado Pago Certified Partner, make sure to add your " "integrator_id." @@ -381,31 +391,31 @@ msgstr "" "Si eres Partner certificado de Mercado Pago, recuerda ingresar tu " "integrator_id." -#: ../../src/Translations/AdminTranslations.php:324 +#: ../../src/Translations/AdminTranslations.php:325 msgid "If you do not have the code, please" msgstr "Si no tienes el código," -#: ../../src/Translations/AdminTranslations.php:326 +#: ../../src/Translations/AdminTranslations.php:327 msgid "request it now" msgstr "solicítalo ahora" -#: ../../src/Translations/AdminTranslations.php:330 +#: ../../src/Translations/AdminTranslations.php:331 msgid "2. Customize your business" msgstr "2. Personaliza tu negocio" -#: ../../src/Translations/AdminTranslations.php:331 +#: ../../src/Translations/AdminTranslations.php:332 msgid "Your store information" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:332 +#: ../../src/Translations/AdminTranslations.php:333 msgid "Advanced integration options (optional)" msgstr "Opciones avanzadas de integración (opcional)" -#: ../../src/Translations/AdminTranslations.php:333 +#: ../../src/Translations/AdminTranslations.php:334 msgid "Debug and Log Mode" msgstr "Modo debug y log" -#: ../../src/Translations/AdminTranslations.php:334 +#: ../../src/Translations/AdminTranslations.php:335 msgid "" "Fill out the following information to have a better experience and offer " "more information to your clients." @@ -413,15 +423,15 @@ msgstr "" "Completa los siguientes datos para tener una mejor experiencia y ofrecer más " "información a los clientes." -#: ../../src/Translations/AdminTranslations.php:335 +#: ../../src/Translations/AdminTranslations.php:336 msgid "Name of your store in your client's invoice" msgstr "Nombre de tu tienda en la factura de los clientes" -#: ../../src/Translations/AdminTranslations.php:336 +#: ../../src/Translations/AdminTranslations.php:337 msgid "Identification in Activities of Mercado Pago" msgstr "Identificación en Actividad de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:337 +#: ../../src/Translations/AdminTranslations.php:338 msgid "" "For further integration of your store with Mercado Pago (IPN, Certified " "Partners, Debug Mode)" @@ -429,202 +439,202 @@ msgstr "" "Para mayor integración de tu tienda con Mercado Pago (IPN, Socios " "Certificados, Modo Debug)" -#: ../../src/Translations/AdminTranslations.php:338 +#: ../../src/Translations/AdminTranslations.php:339 msgid "Store category" msgstr "Categoría de la tienda" -#: ../../src/Translations/AdminTranslations.php:339 +#: ../../src/Translations/AdminTranslations.php:340 msgid "URL for IPN" msgstr "URL para IPN" -#: ../../src/Translations/AdminTranslations.php:340 +#: ../../src/Translations/AdminTranslations.php:341 msgid "Integrator ID" msgstr "Integrator ID" -#: ../../src/Translations/AdminTranslations.php:341 +#: ../../src/Translations/AdminTranslations.php:342 msgid "We record your store's actions in order to provide a better assistance." msgstr "Grabamos las aciones de tu tienda para brindar un mejor soporte." -#: ../../src/Translations/AdminTranslations.php:342 +#: ../../src/Translations/AdminTranslations.php:343 msgid "Ex: Mary's Store" msgstr "Ej.: Tienda de María" -#: ../../src/Translations/AdminTranslations.php:343 +#: ../../src/Translations/AdminTranslations.php:344 msgid "Ex: Mary Store" msgstr "Ej.: TiendaMaría" -#: ../../src/Translations/AdminTranslations.php:344 +#: ../../src/Translations/AdminTranslations.php:345 msgid "Select" msgstr "Seleccionar" -#: ../../src/Translations/AdminTranslations.php:345 +#: ../../src/Translations/AdminTranslations.php:346 msgid "Ex: https://examples.com/my-custom-ipn-url" msgstr "Ej.: https://examples.com/my-custom-ipn-url" -#: ../../src/Translations/AdminTranslations.php:346 +#: ../../src/Translations/AdminTranslations.php:347 msgid "Add plugin default params" msgstr "Agregar parámetros default del plugin" -#: ../../src/Translations/AdminTranslations.php:347 +#: ../../src/Translations/AdminTranslations.php:348 msgid "Ex: 14987126498" msgstr "Ej.: 14987126498" -#: ../../src/Translations/AdminTranslations.php:348 +#: ../../src/Translations/AdminTranslations.php:349 msgid "Show advanced options" msgstr "Ver opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:349 +#: ../../src/Translations/AdminTranslations.php:350 msgid "Hide advanced options" msgstr "Esconder opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:351 +#: ../../src/Translations/AdminTranslations.php:352 msgid "" "If this field is empty, the purchase will be identified as Mercado Pago." msgstr "" "Si el campo queda vacío, la compra del cliente se identificará como Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:352 +#: ../../src/Translations/AdminTranslations.php:353 msgid "In Activities, you will view this term before the order number" msgstr "En Actividad, verás el término ingresado antes del número o del pedido" -#: ../../src/Translations/AdminTranslations.php:353 +#: ../../src/Translations/AdminTranslations.php:354 msgid "" "Select \"Other categories\" if you do not find the appropriate category." msgstr "Seleciona ”Other categories” si no encuentras una categoría adecuada." -#: ../../src/Translations/AdminTranslations.php:354 +#: ../../src/Translations/AdminTranslations.php:355 msgid "request it now." msgstr "solicítalo ahora." -#: ../../src/Translations/AdminTranslations.php:368 +#: ../../src/Translations/AdminTranslations.php:369 msgid "3. Set payment methods" msgstr "3. Configura los medios de pago" -#: ../../src/Translations/AdminTranslations.php:369 +#: ../../src/Translations/AdminTranslations.php:370 msgid "To view more options, please select a payment method below" msgstr "Selecciona uno de los siguientes medios de pago para ver más opciones" -#: ../../src/Translations/AdminTranslations.php:370 +#: ../../src/Translations/AdminTranslations.php:371 msgid "Settings" msgstr "Configurar" -#: ../../src/Translations/AdminTranslations.php:371 +#: ../../src/Translations/AdminTranslations.php:372 msgid "Continue" msgstr "Continuar" -#: ../../src/Translations/AdminTranslations.php:372 +#: ../../src/Translations/AdminTranslations.php:373 msgid "Enabled" msgstr "Activado" -#: ../../src/Translations/AdminTranslations.php:373 +#: ../../src/Translations/AdminTranslations.php:374 msgid "Disabled" msgstr "Inactivo" -#: ../../src/Translations/AdminTranslations.php:374 +#: ../../src/Translations/AdminTranslations.php:375 msgid "Configure your credentials to enable Mercado Pago payment methods." msgstr "" "Completa tus credenciales para habilitar los medios de pago Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:387, -#: ../../src/Translations/AdminTranslations.php:393 +#: ../../src/Translations/AdminTranslations.php:388, +#: ../../src/Translations/AdminTranslations.php:394 msgid "The checkout is" msgstr "El checkout está" -#: ../../src/Translations/AdminTranslations.php:388, -#: ../../src/Translations/AdminTranslations.php:400, -#: ../../src/Translations/AdminTranslations.php:515, -#: ../../src/Translations/AdminTranslations.php:527, -#: ../../src/Translations/AdminTranslations.php:539, -#: ../../src/Translations/AdminTranslations.php:605, -#: ../../src/Translations/AdminTranslations.php:617, -#: ../../src/Translations/AdminTranslations.php:629, -#: ../../src/Translations/AdminTranslations.php:705, -#: ../../src/Translations/AdminTranslations.php:766, -#: ../../src/Translations/AdminTranslations.php:825, -#: ../../src/Translations/AdminTranslations.php:837 +#: ../../src/Translations/AdminTranslations.php:389, +#: ../../src/Translations/AdminTranslations.php:401, +#: ../../src/Translations/AdminTranslations.php:516, +#: ../../src/Translations/AdminTranslations.php:528, +#: ../../src/Translations/AdminTranslations.php:540, +#: ../../src/Translations/AdminTranslations.php:606, +#: ../../src/Translations/AdminTranslations.php:618, +#: ../../src/Translations/AdminTranslations.php:630, +#: ../../src/Translations/AdminTranslations.php:706, +#: ../../src/Translations/AdminTranslations.php:767, +#: ../../src/Translations/AdminTranslations.php:826, +#: ../../src/Translations/AdminTranslations.php:838 msgid "enabled" msgstr "activo" -#: ../../src/Translations/AdminTranslations.php:394, +#: ../../src/Translations/AdminTranslations.php:395, +#: ../../src/Translations/AdminTranslations.php:407, +#: ../../src/Translations/AdminTranslations.php:522, +#: ../../src/Translations/AdminTranslations.php:534, +#: ../../src/Translations/AdminTranslations.php:546, +#: ../../src/Translations/AdminTranslations.php:612, +#: ../../src/Translations/AdminTranslations.php:624, +#: ../../src/Translations/AdminTranslations.php:636, +#: ../../src/Translations/AdminTranslations.php:712, +#: ../../src/Translations/AdminTranslations.php:773, +#: ../../src/Translations/AdminTranslations.php:832, +#: ../../src/Translations/AdminTranslations.php:844 +msgid "disabled" +msgstr "inactivo" + +#: ../../src/Translations/AdminTranslations.php:400, #: ../../src/Translations/AdminTranslations.php:406, -#: ../../src/Translations/AdminTranslations.php:521, +#: ../../src/Translations/AdminTranslations.php:527, #: ../../src/Translations/AdminTranslations.php:533, -#: ../../src/Translations/AdminTranslations.php:545, -#: ../../src/Translations/AdminTranslations.php:611, +#: ../../src/Translations/AdminTranslations.php:617, #: ../../src/Translations/AdminTranslations.php:623, -#: ../../src/Translations/AdminTranslations.php:635, +#: ../../src/Translations/AdminTranslations.php:705, #: ../../src/Translations/AdminTranslations.php:711, +#: ../../src/Translations/AdminTranslations.php:766, #: ../../src/Translations/AdminTranslations.php:772, -#: ../../src/Translations/AdminTranslations.php:831, +#: ../../src/Translations/AdminTranslations.php:837, #: ../../src/Translations/AdminTranslations.php:843 -msgid "disabled" -msgstr "inactivo" - -#: ../../src/Translations/AdminTranslations.php:399, -#: ../../src/Translations/AdminTranslations.php:405, -#: ../../src/Translations/AdminTranslations.php:526, -#: ../../src/Translations/AdminTranslations.php:532, -#: ../../src/Translations/AdminTranslations.php:616, -#: ../../src/Translations/AdminTranslations.php:622, -#: ../../src/Translations/AdminTranslations.php:704, -#: ../../src/Translations/AdminTranslations.php:710, -#: ../../src/Translations/AdminTranslations.php:765, -#: ../../src/Translations/AdminTranslations.php:771, -#: ../../src/Translations/AdminTranslations.php:836, -#: ../../src/Translations/AdminTranslations.php:842 msgid "Currency conversion is" msgstr "Conversión de moneda está" -#: ../../src/Translations/AdminTranslations.php:411, -#: ../../src/Translations/AdminTranslations.php:417 +#: ../../src/Translations/AdminTranslations.php:412, +#: ../../src/Translations/AdminTranslations.php:418 msgid "The buyer" msgstr "El comprador" -#: ../../src/Translations/AdminTranslations.php:412 +#: ../../src/Translations/AdminTranslations.php:413 msgid "will be automatically redirected to the store" msgstr "será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:418 +#: ../../src/Translations/AdminTranslations.php:419 msgid "will not be automatically redirected to the store" msgstr "no será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:424, -#: ../../src/Translations/AdminTranslations.php:430, -#: ../../src/Translations/AdminTranslations.php:640, -#: ../../src/Translations/AdminTranslations.php:646 +#: ../../src/Translations/AdminTranslations.php:425, +#: ../../src/Translations/AdminTranslations.php:431, +#: ../../src/Translations/AdminTranslations.php:641, +#: ../../src/Translations/AdminTranslations.php:647 msgid "Pending payments" msgstr "Los pagos pendientes" -#: ../../src/Translations/AdminTranslations.php:425, -#: ../../src/Translations/AdminTranslations.php:641 +#: ../../src/Translations/AdminTranslations.php:426, +#: ../../src/Translations/AdminTranslations.php:642 msgid "will be automatically declined" msgstr "se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:431, -#: ../../src/Translations/AdminTranslations.php:647 +#: ../../src/Translations/AdminTranslations.php:432, +#: ../../src/Translations/AdminTranslations.php:648 msgid "will not be automatically declined" msgstr "no se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:435, -#: ../../src/Translations/AdminTranslations.php:450 +#: ../../src/Translations/AdminTranslations.php:436, +#: ../../src/Translations/AdminTranslations.php:451 msgid "Your saved cards or money in Mercado Pago" msgstr "Compras con tarjetas guardadas o saldo en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:436, -#: ../../src/Translations/AdminTranslations.php:438 +#: ../../src/Translations/AdminTranslations.php:437, +#: ../../src/Translations/AdminTranslations.php:439 msgid "Debit, Credit and invoice in Mercado Pago environment" msgstr "Débito, crédito y efectivo, en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:437 +#: ../../src/Translations/AdminTranslations.php:438 msgid "Mercado Pago - Checkout Pro" msgstr "Mercado Pago - Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:439 +#: ../../src/Translations/AdminTranslations.php:440 msgid "Checkout Pro" msgstr "Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:440 +#: ../../src/Translations/AdminTranslations.php:441 msgid "" "With Checkout Pro you sell with all the safety inside Mercado Pago " "environment." @@ -632,23 +642,13 @@ msgstr "" "Con el Checkout Pro, podrás vender con toda la seguridad, dentro de Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:441, -#: ../../src/Translations/AdminTranslations.php:555, -#: ../../src/Translations/AdminTranslations.php:720, -#: ../../src/Translations/AdminTranslations.php:781, -#: ../../src/Translations/AdminTranslations.php:861 -msgid "Mercado Pago plugin general settings" -msgstr "Configuraciones generales del plugin de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:442, #: ../../src/Translations/AdminTranslations.php:556, -#: ../../src/Translations/AdminTranslations.php:658, #: ../../src/Translations/AdminTranslations.php:721, #: ../../src/Translations/AdminTranslations.php:782, #: ../../src/Translations/AdminTranslations.php:862 -msgid "" -"Set the deadlines and fees, test your store or access the Plugin manual." -msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." +msgid "Mercado Pago plugin general settings" +msgstr "Configuraciones generales del plugin de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:443, #: ../../src/Translations/AdminTranslations.php:557, @@ -656,16 +656,26 @@ msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:722, #: ../../src/Translations/AdminTranslations.php:783, #: ../../src/Translations/AdminTranslations.php:863 -msgid "Go to Settings" -msgstr "Ir a Configuraciones" +msgid "" +"Set the deadlines and fees, test your store or access the Plugin manual." +msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:444, +#: ../../src/Translations/AdminTranslations.php:558, #: ../../src/Translations/AdminTranslations.php:660, +#: ../../src/Translations/AdminTranslations.php:723, +#: ../../src/Translations/AdminTranslations.php:784, #: ../../src/Translations/AdminTranslations.php:864 +msgid "Go to Settings" +msgstr "Ir a Configuraciones" + +#: ../../src/Translations/AdminTranslations.php:445, +#: ../../src/Translations/AdminTranslations.php:661, +#: ../../src/Translations/AdminTranslations.php:865 msgid "Enable the checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:445 +#: ../../src/Translations/AdminTranslations.php:446 msgid "" "By disabling it, you will disable all payments from Mercado Pago Checkout at " "Mercado Pago website by redirect." @@ -673,40 +683,31 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago del checkout en el " "sitio web de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:448, -#: ../../src/Translations/AdminTranslations.php:566, -#: ../../src/Translations/AdminTranslations.php:664, -#: ../../src/Translations/AdminTranslations.php:727, -#: ../../src/Translations/AdminTranslations.php:788, -#: ../../src/Translations/AdminTranslations.php:868 -msgid "Title in the store Checkout" -msgstr "Título en el checkout de la tienda" - #: ../../src/Translations/AdminTranslations.php:449, +#: ../../src/Translations/AdminTranslations.php:567, #: ../../src/Translations/AdminTranslations.php:665, #: ../../src/Translations/AdminTranslations.php:728, #: ../../src/Translations/AdminTranslations.php:789, #: ../../src/Translations/AdminTranslations.php:869 +msgid "Title in the store Checkout" +msgstr "Título en el checkout de la tienda" + +#: ../../src/Translations/AdminTranslations.php:450, +#: ../../src/Translations/AdminTranslations.php:666, +#: ../../src/Translations/AdminTranslations.php:729, +#: ../../src/Translations/AdminTranslations.php:790, +#: ../../src/Translations/AdminTranslations.php:870 msgid "Change the display text in Checkout, maximum characters: 85" msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85" -#: ../../src/Translations/AdminTranslations.php:451, -#: ../../src/Translations/AdminTranslations.php:569, -#: ../../src/Translations/AdminTranslations.php:667, -#: ../../src/Translations/AdminTranslations.php:730, -#: ../../src/Translations/AdminTranslations.php:791, -#: ../../src/Translations/AdminTranslations.php:871 -msgid "The text inserted here will not be translated to other languages" -msgstr "El texto insertado aquí no se traducirá a otros idiomas" - #: ../../src/Translations/AdminTranslations.php:452, #: ../../src/Translations/AdminTranslations.php:570, -#: ../../src/Translations/AdminTranslations.php:671, +#: ../../src/Translations/AdminTranslations.php:668, #: ../../src/Translations/AdminTranslations.php:731, #: ../../src/Translations/AdminTranslations.php:792, -#: ../../src/Translations/AdminTranslations.php:885 -msgid "Convert Currency" -msgstr "Convertir moneda" +#: ../../src/Translations/AdminTranslations.php:872 +msgid "The text inserted here will not be translated to other languages" +msgstr "El texto insertado aquí no se traducirá a otros idiomas" #: ../../src/Translations/AdminTranslations.php:453, #: ../../src/Translations/AdminTranslations.php:571, @@ -714,6 +715,15 @@ msgstr "Convertir moneda" #: ../../src/Translations/AdminTranslations.php:732, #: ../../src/Translations/AdminTranslations.php:793, #: ../../src/Translations/AdminTranslations.php:886 +msgid "Convert Currency" +msgstr "Convertir moneda" + +#: ../../src/Translations/AdminTranslations.php:454, +#: ../../src/Translations/AdminTranslations.php:572, +#: ../../src/Translations/AdminTranslations.php:673, +#: ../../src/Translations/AdminTranslations.php:733, +#: ../../src/Translations/AdminTranslations.php:794, +#: ../../src/Translations/AdminTranslations.php:887 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." @@ -721,100 +731,100 @@ 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." -#: ../../src/Translations/AdminTranslations.php:456 +#: ../../src/Translations/AdminTranslations.php:457 msgid "Choose the payment methods you accept in your store" msgstr "Elige los medios de pago que se aceptan en la tienda" -#: ../../src/Translations/AdminTranslations.php:457 +#: ../../src/Translations/AdminTranslations.php:458 msgid "Enable the payment methods available to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../src/Translations/AdminTranslations.php:458 +#: ../../src/Translations/AdminTranslations.php:459 msgid "Credit Cards" msgstr "Tarjetas de crédito" -#: ../../src/Translations/AdminTranslations.php:459 +#: ../../src/Translations/AdminTranslations.php:460 msgid "Debit Cards" msgstr "Tarjetas de débito" -#: ../../src/Translations/AdminTranslations.php:460 +#: ../../src/Translations/AdminTranslations.php:461 msgid "Other Payment Methods" msgstr "Otros medios" -#: ../../src/Translations/AdminTranslations.php:461 +#: ../../src/Translations/AdminTranslations.php:462 msgid "Maximum number of installments" msgstr "Máximo de cuotas" -#: ../../src/Translations/AdminTranslations.php:462 +#: ../../src/Translations/AdminTranslations.php:463 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?" -#: ../../src/Translations/AdminTranslations.php:463 +#: ../../src/Translations/AdminTranslations.php:464 msgid "1 installment" msgstr "1 cuota" -#: ../../src/Translations/AdminTranslations.php:464 +#: ../../src/Translations/AdminTranslations.php:465 msgid "2 installments" msgstr "2 cuotas" -#: ../../src/Translations/AdminTranslations.php:465 +#: ../../src/Translations/AdminTranslations.php:466 msgid "3 installments" msgstr "3 cuotas" -#: ../../src/Translations/AdminTranslations.php:466 +#: ../../src/Translations/AdminTranslations.php:467 msgid "4 installments" msgstr "4 cuotas" -#: ../../src/Translations/AdminTranslations.php:467 +#: ../../src/Translations/AdminTranslations.php:468 msgid "5 installments" msgstr "5 cuotas" -#: ../../src/Translations/AdminTranslations.php:468 +#: ../../src/Translations/AdminTranslations.php:469 msgid "6 installments" msgstr "6 cuotas" -#: ../../src/Translations/AdminTranslations.php:469 +#: ../../src/Translations/AdminTranslations.php:470 msgid "10 installments" msgstr "10 cuotas" -#: ../../src/Translations/AdminTranslations.php:470 +#: ../../src/Translations/AdminTranslations.php:471 msgid "12 installments" msgstr "12 cuotas" -#: ../../src/Translations/AdminTranslations.php:471 +#: ../../src/Translations/AdminTranslations.php:472 msgid "15 installments" msgstr "15 cuotas" -#: ../../src/Translations/AdminTranslations.php:472 +#: ../../src/Translations/AdminTranslations.php:473 msgid "18 installments" msgstr "18 cuotas" -#: ../../src/Translations/AdminTranslations.php:473 +#: ../../src/Translations/AdminTranslations.php:474 msgid "24 installments" msgstr "24 cuotas" -#: ../../src/Translations/AdminTranslations.php:474, -#: ../../src/Translations/AdminTranslations.php:584 +#: ../../src/Translations/AdminTranslations.php:475, +#: ../../src/Translations/AdminTranslations.php:585 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:475, -#: ../../src/Translations/AdminTranslations.php:585, -#: ../../src/Translations/AdminTranslations.php:681, -#: ../../src/Translations/AdminTranslations.php:738, -#: ../../src/Translations/AdminTranslations.php:797, -#: ../../src/Translations/AdminTranslations.php:893 +#: ../../src/Translations/AdminTranslations.php:476, +#: ../../src/Translations/AdminTranslations.php:586, +#: ../../src/Translations/AdminTranslations.php:682, +#: ../../src/Translations/AdminTranslations.php:739, +#: ../../src/Translations/AdminTranslations.php:798, +#: ../../src/Translations/AdminTranslations.php:894 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." -#: ../../src/Translations/AdminTranslations.php:476 +#: ../../src/Translations/AdminTranslations.php:477 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../src/Translations/AdminTranslations.php:477 +#: ../../src/Translations/AdminTranslations.php:478 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -822,39 +832,39 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../src/Translations/AdminTranslations.php:478 +#: ../../src/Translations/AdminTranslations.php:479 msgid "Redirect" msgstr "Redirect" -#: ../../src/Translations/AdminTranslations.php:479 +#: ../../src/Translations/AdminTranslations.php:480 msgid "Modal" msgstr "Modal" -#: ../../src/Translations/AdminTranslations.php:480 +#: ../../src/Translations/AdminTranslations.php:481 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../src/Translations/AdminTranslations.php:481 +#: ../../src/Translations/AdminTranslations.php:482 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?" -#: ../../src/Translations/AdminTranslations.php:484 +#: ../../src/Translations/AdminTranslations.php:485 msgid "Success URL" msgstr "URL de éxito" -#: ../../src/Translations/AdminTranslations.php:485 +#: ../../src/Translations/AdminTranslations.php:486 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." -#: ../../src/Translations/AdminTranslations.php:486 +#: ../../src/Translations/AdminTranslations.php:487 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../src/Translations/AdminTranslations.php:487 +#: ../../src/Translations/AdminTranslations.php:488 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 " @@ -864,11 +874,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../src/Translations/AdminTranslations.php:488 +#: ../../src/Translations/AdminTranslations.php:489 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../src/Translations/AdminTranslations.php:489 +#: ../../src/Translations/AdminTranslations.php:490 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -876,13 +886,13 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../src/Translations/AdminTranslations.php:490, -#: ../../src/Translations/AdminTranslations.php:682 +#: ../../src/Translations/AdminTranslations.php:491, +#: ../../src/Translations/AdminTranslations.php:683 msgid "Automatic decline of payments without instant approval" msgstr "Rechazo automático de pagos sin aprobación instantanea" -#: ../../src/Translations/AdminTranslations.php:491, -#: ../../src/Translations/AdminTranslations.php:683 +#: ../../src/Translations/AdminTranslations.php:492, +#: ../../src/Translations/AdminTranslations.php:684 msgid "" "Enable it if you want to automatically decline payments that are not " "instantly approved by banks or other institutions." @@ -890,55 +900,46 @@ msgstr "" "Actívalo si quieres rechazar automáticamente los pagos que no son aprobados " "instantáneamente por bancos u otros compradores." -#: ../../src/Translations/AdminTranslations.php:492 +#: ../../src/Translations/AdminTranslations.php:493 msgid "Debit, Credit and Invoice in Mercado Pago environment." msgstr "Débito, crédito y efectivo, en Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:495, -#: ../../src/Translations/AdminTranslations.php:586, -#: ../../src/Translations/AdminTranslations.php:686, -#: ../../src/Translations/AdminTranslations.php:747, -#: ../../src/Translations/AdminTranslations.php:806, -#: ../../src/Translations/AdminTranslations.php:894 -msgid "Discount in Mercado Pago Checkouts" -msgstr "Descuento en los checkouts de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:496, #: ../../src/Translations/AdminTranslations.php:587, #: ../../src/Translations/AdminTranslations.php:687, #: ../../src/Translations/AdminTranslations.php:748, #: ../../src/Translations/AdminTranslations.php:807, #: ../../src/Translations/AdminTranslations.php:895 -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." +msgid "Discount in Mercado Pago Checkouts" +msgstr "Descuento en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:497, -#: ../../src/Translations/AdminTranslations.php:500, #: ../../src/Translations/AdminTranslations.php:588, -#: ../../src/Translations/AdminTranslations.php:591, #: ../../src/Translations/AdminTranslations.php:688, -#: ../../src/Translations/AdminTranslations.php:691, #: ../../src/Translations/AdminTranslations.php:749, -#: ../../src/Translations/AdminTranslations.php:752, #: ../../src/Translations/AdminTranslations.php:808, -#: ../../src/Translations/AdminTranslations.php:811, -#: ../../src/Translations/AdminTranslations.php:896, -#: ../../src/Translations/AdminTranslations.php:899 -msgid "Activate and show this information on Mercado Pago Checkout" -msgstr "Activar y mostrar esa información en el checkout Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:896 +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." #: ../../src/Translations/AdminTranslations.php:498, +#: ../../src/Translations/AdminTranslations.php:501, #: ../../src/Translations/AdminTranslations.php:589, +#: ../../src/Translations/AdminTranslations.php:592, #: ../../src/Translations/AdminTranslations.php:689, +#: ../../src/Translations/AdminTranslations.php:692, #: ../../src/Translations/AdminTranslations.php:750, +#: ../../src/Translations/AdminTranslations.php:753, #: ../../src/Translations/AdminTranslations.php:809, -#: ../../src/Translations/AdminTranslations.php:897 -msgid "Commission in Mercado Pago Checkouts" -msgstr "Comisiones en los checkouts de Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:812, +#: ../../src/Translations/AdminTranslations.php:897, +#: ../../src/Translations/AdminTranslations.php:900 +msgid "Activate and show this information on Mercado Pago Checkout" +msgstr "Activar y mostrar esa información en el checkout Mercado Pago" #: ../../src/Translations/AdminTranslations.php:499, #: ../../src/Translations/AdminTranslations.php:590, @@ -946,6 +947,15 @@ msgstr "Comisiones en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:751, #: ../../src/Translations/AdminTranslations.php:810, #: ../../src/Translations/AdminTranslations.php:898 +msgid "Commission in Mercado Pago Checkouts" +msgstr "Comisiones en los checkouts de Mercado Pago" + +#: ../../src/Translations/AdminTranslations.php:500, +#: ../../src/Translations/AdminTranslations.php:591, +#: ../../src/Translations/AdminTranslations.php:691, +#: ../../src/Translations/AdminTranslations.php:752, +#: ../../src/Translations/AdminTranslations.php:811, +#: ../../src/Translations/AdminTranslations.php:899 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -953,35 +963,35 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:501 +#: ../../src/Translations/AdminTranslations.php:502 msgid "This seems to be an invalid URL" msgstr "Esto parece ser una URL no válida" -#: ../../src/Translations/AdminTranslations.php:514, -#: ../../src/Translations/AdminTranslations.php:520 +#: ../../src/Translations/AdminTranslations.php:515, +#: ../../src/Translations/AdminTranslations.php:521 msgid "Payment in installments without card in the store checkout is" msgstr "Cuotas sin tarjeta en el checkout de la tienda está" -#: ../../src/Translations/AdminTranslations.php:538, -#: ../../src/Translations/AdminTranslations.php:544 +#: ../../src/Translations/AdminTranslations.php:539, +#: ../../src/Translations/AdminTranslations.php:545 msgid "The installments without card component is" msgstr "El componente de cuotas sin tarjeta está" -#: ../../src/Translations/AdminTranslations.php:549, -#: ../../src/Translations/AdminTranslations.php:553 +#: ../../src/Translations/AdminTranslations.php:550, +#: ../../src/Translations/AdminTranslations.php:554 msgid "Installments without card" msgstr "Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:550, -#: ../../src/Translations/AdminTranslations.php:552 +#: ../../src/Translations/AdminTranslations.php:551, +#: ../../src/Translations/AdminTranslations.php:553 msgid "Customers who buy on spot and pay later in up to 12 installments" msgstr "Tus clientes compran al instante y pagan después en hasta 12 cuotas" -#: ../../src/Translations/AdminTranslations.php:551 +#: ../../src/Translations/AdminTranslations.php:552 msgid "Mercado Pago - Installments without card" msgstr "Mercado Pago - Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:554 +#: ../../src/Translations/AdminTranslations.php:555 msgid "" "Reach millions of buyers by offering Mercado Credito as a payment method. " "Our flexible payment options give your customers the possibility to buy " @@ -995,11 +1005,11 @@ msgstr "" "necesidad de utilizar una tarjeta. Para tu negocio, la aprobación de la " "compra es inmediata y está garantizada." -#: ../../src/Translations/AdminTranslations.php:558 +#: ../../src/Translations/AdminTranslations.php:559 msgid "Activate installments without card in your store checkout" msgstr "Activar cuotas sin tarjeta en el checkout de tu tienda" -#: ../../src/Translations/AdminTranslations.php:559 +#: ../../src/Translations/AdminTranslations.php:560 msgid "" "Offer the option to pay in installments without card directly from your " "store's checkout." @@ -1007,37 +1017,37 @@ msgstr "" "Ofrece la opción de pago en cuotas sin tarjeta directo desde el checkout de " "tu tienda." -#: ../../src/Translations/AdminTranslations.php:562 +#: ../../src/Translations/AdminTranslations.php:563 msgid "Checkout visualization" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:563, -#: ../../src/Translations/AdminTranslations.php:583 +#: ../../src/Translations/AdminTranslations.php:564, +#: ../../src/Translations/AdminTranslations.php:584 msgid "Check below how this feature will be displayed to your customers:" msgstr "A continuación verás cómo este recurso aparecerá para tus clientes:" -#: ../../src/Translations/AdminTranslations.php:564 +#: ../../src/Translations/AdminTranslations.php:565 msgid "Checkout Preview" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:565 +#: ../../src/Translations/AdminTranslations.php:566 msgid "PREVIEW" msgstr "DEMO" -#: ../../src/Translations/AdminTranslations.php:567 +#: ../../src/Translations/AdminTranslations.php:568 msgid "It is possible to edit the title. Maximum of 85 characters." msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85." -#: ../../src/Translations/AdminTranslations.php:568 +#: ../../src/Translations/AdminTranslations.php:569 msgid "Checkout without card" msgstr "Hasta 12 pagos sin tarjeta con Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:574 +#: ../../src/Translations/AdminTranslations.php:575 msgid "" "Inform your customers about the option of paying in installments without card" msgstr "Informa a tus clientes sobre la opción de cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:575 +#: ../../src/Translations/AdminTranslations.php:576 msgid "" "By activating the installments without card component, you increase your " "chances of selling." @@ -1045,62 +1055,62 @@ msgstr "" "Al activar el componente de cuotas sin tarjeta,, aumentarás tus " "posibilidades de venta." -#: ../../src/Translations/AdminTranslations.php:578 +#: ../../src/Translations/AdminTranslations.php:579 msgid "Banner on the product page | Computer version" msgstr "Componente en la página del producto | Versión para computadora" -#: ../../src/Translations/AdminTranslations.php:579 +#: ../../src/Translations/AdminTranslations.php:580 msgid "Banner on the product page | Cellphone version" msgstr "Componente en la página del producto | Versión para celular" -#: ../../src/Translations/AdminTranslations.php:580 +#: ../../src/Translations/AdminTranslations.php:581 msgid "Computer" msgstr "Computadora" -#: ../../src/Translations/AdminTranslations.php:581 +#: ../../src/Translations/AdminTranslations.php:582 msgid "Mobile" msgstr "Celular" -#: ../../src/Translations/AdminTranslations.php:582 +#: ../../src/Translations/AdminTranslations.php:583 msgid "Component visualization" msgstr "Visualización del componente" -#: ../../src/Translations/AdminTranslations.php:604, -#: ../../src/Translations/AdminTranslations.php:610 +#: ../../src/Translations/AdminTranslations.php:605, +#: ../../src/Translations/AdminTranslations.php:611 msgid "Transparent Checkout for credit cards is" msgstr "El Checkout Transparente de las tarjetas de crédito está" -#: ../../src/Translations/AdminTranslations.php:628, -#: ../../src/Translations/AdminTranslations.php:634 +#: ../../src/Translations/AdminTranslations.php:629, +#: ../../src/Translations/AdminTranslations.php:635 msgid "Payments via Mercado Pago accounts are" msgstr "Los pagos a través de la cuenta de Mercado Pago están" -#: ../../src/Translations/AdminTranslations.php:651, -#: ../../src/Translations/AdminTranslations.php:666 +#: ../../src/Translations/AdminTranslations.php:652, +#: ../../src/Translations/AdminTranslations.php:667 msgid "Debit and Credit" msgstr "Débito e crédito" -#: ../../src/Translations/AdminTranslations.php:652, -#: ../../src/Translations/AdminTranslations.php:654, -#: ../../src/Translations/AdminTranslations.php:716, -#: ../../src/Translations/AdminTranslations.php:777, -#: ../../src/Translations/AdminTranslations.php:856, -#: ../../src/Translations/AdminTranslations.php:858 -msgid "Transparent Checkout in your store environment" -msgstr "Checkout Transparente en tu tienda" - #: ../../src/Translations/AdminTranslations.php:653, +#: ../../src/Translations/AdminTranslations.php:655, #: ../../src/Translations/AdminTranslations.php:717, #: ../../src/Translations/AdminTranslations.php:778, -#: ../../src/Translations/AdminTranslations.php:857 +#: ../../src/Translations/AdminTranslations.php:857, +#: ../../src/Translations/AdminTranslations.php:859 +msgid "Transparent Checkout in your store environment" +msgstr "Checkout Transparente en tu tienda" + +#: ../../src/Translations/AdminTranslations.php:654, +#: ../../src/Translations/AdminTranslations.php:718, +#: ../../src/Translations/AdminTranslations.php:779, +#: ../../src/Translations/AdminTranslations.php:858 msgid "Mercado pago - Customized Checkout" msgstr "Mercado Pago - Checkout Personalizado" -#: ../../src/Translations/AdminTranslations.php:655 +#: ../../src/Translations/AdminTranslations.php:656 msgid "Transparent Checkout | Credit card" msgstr "Checkout Transparente | Tarjeta de Crédito" -#: ../../src/Translations/AdminTranslations.php:656 +#: ../../src/Translations/AdminTranslations.php:657 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and with the security from Mercado Pago." @@ -1108,11 +1118,11 @@ msgstr "" "Con el Checkout Transparente, puedes vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:657 +#: ../../src/Translations/AdminTranslations.php:658 msgid "Mercado Pago Plugin general settings" msgstr "Configuraciones generales del plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:661 +#: ../../src/Translations/AdminTranslations.php:662 msgid "" "By disabling it, you will disable all credit cards payments from Mercado " "Pago Transparent Checkout." @@ -1120,11 +1130,11 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:668 +#: ../../src/Translations/AdminTranslations.php:669 msgid "Installments Fees" msgstr "Tasas de pago en cuotas" -#: ../../src/Translations/AdminTranslations.php:669 +#: ../../src/Translations/AdminTranslations.php:670 msgid "" "Set installment fees and whether they will be charged from the store or from " "the buyer." @@ -1132,15 +1142,15 @@ msgstr "" "Configura las tasas de las cuotas y si se las cobrarán a la tienda o al " "comprador." -#: ../../src/Translations/AdminTranslations.php:670 +#: ../../src/Translations/AdminTranslations.php:671 msgid "Set fees" msgstr "Configurar tasas" -#: ../../src/Translations/AdminTranslations.php:675 +#: ../../src/Translations/AdminTranslations.php:676 msgid "Payments via Mercado Pago account" msgstr "Pagos a través de la cuenta de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:676 +#: ../../src/Translations/AdminTranslations.php:677 msgid "" "Your customers pay faster with saved cards, money balance or other available " "methods in their Mercado Pago accounts." @@ -1148,26 +1158,26 @@ msgstr "" "Tus clientes pagan más rápido con tarjetas guardadas, dinero disponible o " "con otros medios disponibles en sus cuentas de MP." -#: ../../src/Translations/AdminTranslations.php:679 +#: ../../src/Translations/AdminTranslations.php:680 msgid "Check an example of how it will appear in your store:" msgstr "Conoce un ejemplo de cómo aparecerá en la tienda:" -#: ../../src/Translations/AdminTranslations.php:680 +#: ../../src/Translations/AdminTranslations.php:681 msgid "Advanced configuration of the personalized payment experience" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:715, -#: ../../src/Translations/AdminTranslations.php:729 +#: ../../src/Translations/AdminTranslations.php:716, +#: ../../src/Translations/AdminTranslations.php:730 msgid "Invoice" msgstr "Efectivo" -#: ../../src/Translations/AdminTranslations.php:718 +#: ../../src/Translations/AdminTranslations.php:719 msgid "Transparent Checkout | Invoice or Loterica" msgstr "Checkout Transparente | Efectivo" -#: ../../src/Translations/AdminTranslations.php:719, -#: ../../src/Translations/AdminTranslations.php:780, -#: ../../src/Translations/AdminTranslations.php:860 +#: ../../src/Translations/AdminTranslations.php:720, +#: ../../src/Translations/AdminTranslations.php:781, +#: ../../src/Translations/AdminTranslations.php:861 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and all the safety from Mercado Pago." @@ -1175,12 +1185,12 @@ msgstr "" "Con el Checkout Transparente, podrás vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:723, -#: ../../src/Translations/AdminTranslations.php:784 +#: ../../src/Translations/AdminTranslations.php:724, +#: ../../src/Translations/AdminTranslations.php:785 msgid "Enable the Checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:724 +#: ../../src/Translations/AdminTranslations.php:725 msgid "" "By disabling it, you will disable all invoice payments from Mercado Pago " "Transparent Checkout." @@ -1188,34 +1198,34 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago en efectivo en el " "Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:725 +#: ../../src/Translations/AdminTranslations.php:726 msgid "The transparent checkout for tickets is enabled." msgstr "El Checkout Transparente está activo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:726 +#: ../../src/Translations/AdminTranslations.php:727 msgid "The transparent checkout for tickets is disabled." msgstr "El Checkout Transparente está inactivo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:735 +#: ../../src/Translations/AdminTranslations.php:736 msgid "Payment Due" msgstr "Fecha de pago" -#: ../../src/Translations/AdminTranslations.php:736 +#: ../../src/Translations/AdminTranslations.php:737 msgid "In how many days will cash payments expire." msgstr "En cuántos días vencerán los pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:737 +#: ../../src/Translations/AdminTranslations.php:738 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../src/Translations/AdminTranslations.php:739, -#: ../../src/Translations/AdminTranslations.php:798 +#: ../../src/Translations/AdminTranslations.php:740, +#: ../../src/Translations/AdminTranslations.php:799 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../src/Translations/AdminTranslations.php:740, -#: ../../src/Translations/AdminTranslations.php:799 +#: ../../src/Translations/AdminTranslations.php:741, +#: ../../src/Translations/AdminTranslations.php:800 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 " @@ -1225,41 +1235,41 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../src/Translations/AdminTranslations.php:741, -#: ../../src/Translations/AdminTranslations.php:800 +#: ../../src/Translations/AdminTranslations.php:742, +#: ../../src/Translations/AdminTranslations.php:801 msgid "Reduce inventory is enabled." msgstr "Reducir inventario está activo." -#: ../../src/Translations/AdminTranslations.php:742, -#: ../../src/Translations/AdminTranslations.php:801 +#: ../../src/Translations/AdminTranslations.php:743, +#: ../../src/Translations/AdminTranslations.php:802 msgid "Reduce inventory is disabled." msgstr "Reducir inventario está inactivo." -#: ../../src/Translations/AdminTranslations.php:744, -#: ../../src/Translations/AdminTranslations.php:803 +#: ../../src/Translations/AdminTranslations.php:745, +#: ../../src/Translations/AdminTranslations.php:804 msgid "Enable the available payment methods" msgstr "Habilita los medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:745, -#: ../../src/Translations/AdminTranslations.php:804 +#: ../../src/Translations/AdminTranslations.php:746, +#: ../../src/Translations/AdminTranslations.php:805 msgid "Choose the available payment methods in your store." msgstr "Elige los medios de pago que se aceptan en la tienda." -#: ../../src/Translations/AdminTranslations.php:746, -#: ../../src/Translations/AdminTranslations.php:805 +#: ../../src/Translations/AdminTranslations.php:747, +#: ../../src/Translations/AdminTranslations.php:806 msgid "All payment methods" msgstr "Medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:776, -#: ../../src/Translations/AdminTranslations.php:790 +#: ../../src/Translations/AdminTranslations.php:777, +#: ../../src/Translations/AdminTranslations.php:791 msgid "PSE" msgstr "PSE" -#: ../../src/Translations/AdminTranslations.php:779 +#: ../../src/Translations/AdminTranslations.php:780 msgid "Transparent Checkout PSE" msgstr "Pago transparente PSE" -#: ../../src/Translations/AdminTranslations.php:785 +#: ../../src/Translations/AdminTranslations.php:786 msgid "" "By deactivating it, you will disable PSE payments from Mercado Pago " "Transparent Checkout." @@ -1267,49 +1277,49 @@ msgstr "" "Al desactivarlo, desactivará los pagos PSE de Mercado Pago Transparente " "Checkout." -#: ../../src/Translations/AdminTranslations.php:786 +#: ../../src/Translations/AdminTranslations.php:787 msgid "The transparent checkout for PSE is enabled." msgstr "El Checkout Transparente está activo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:787 +#: ../../src/Translations/AdminTranslations.php:788 msgid "The transparent checkout for PSE is disabled." msgstr "El Checkout Transparente está inactivo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:796 +#: ../../src/Translations/AdminTranslations.php:797 msgid "Advanced configuration of the PSE payment experience" msgstr "Configuración avanzada de la experiencia de pago PSE" -#: ../../src/Translations/AdminTranslations.php:824, -#: ../../src/Translations/AdminTranslations.php:830 +#: ../../src/Translations/AdminTranslations.php:825, +#: ../../src/Translations/AdminTranslations.php:831 msgid "The transparent checkout for Pix payment is" msgstr "El Checkout Transparente está" -#: ../../src/Translations/AdminTranslations.php:848 +#: ../../src/Translations/AdminTranslations.php:849 msgid "Go to the" msgstr "Ve al área" -#: ../../src/Translations/AdminTranslations.php:849 +#: ../../src/Translations/AdminTranslations.php:850 msgid "Your Profile" msgstr "Tu Perfil" -#: ../../src/Translations/AdminTranslations.php:850 +#: ../../src/Translations/AdminTranslations.php:851 msgid "area and choose the" msgstr "y elige la sección" -#: ../../src/Translations/AdminTranslations.php:851 +#: ../../src/Translations/AdminTranslations.php:852 msgid "Your Pix Keys section" msgstr "Tus claves Pix" -#: ../../src/Translations/AdminTranslations.php:855, -#: ../../src/Translations/AdminTranslations.php:870 +#: ../../src/Translations/AdminTranslations.php:856, +#: ../../src/Translations/AdminTranslations.php:871 msgid "Pix" msgstr "Pix" -#: ../../src/Translations/AdminTranslations.php:859 +#: ../../src/Translations/AdminTranslations.php:860 msgid "Transparent Checkout | Pix" msgstr "Checkout Transparente | Pix" -#: ../../src/Translations/AdminTranslations.php:865 +#: ../../src/Translations/AdminTranslations.php:866 msgid "" "By disabling it, you will disable all Pix payments from Mercado Pago " "Transparent Checkout." @@ -1317,85 +1327,85 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:872 +#: ../../src/Translations/AdminTranslations.php:873 msgid "Expiration for payments via Pix" msgstr "Vencimiento para pagos con Pix" -#: ../../src/Translations/AdminTranslations.php:873 +#: ../../src/Translations/AdminTranslations.php:874 msgid "Set the limit in minutes for your clients to pay via Pix." msgstr "" "Define el límite de minutos para que tus clientes puedan pagar con Pix." -#: ../../src/Translations/AdminTranslations.php:874 +#: ../../src/Translations/AdminTranslations.php:875 msgid "15 minutes" msgstr "15 minutos" -#: ../../src/Translations/AdminTranslations.php:875 +#: ../../src/Translations/AdminTranslations.php:876 msgid "30 minutes (recommended)" msgstr "30 minutos (recomendado)" -#: ../../src/Translations/AdminTranslations.php:876 +#: ../../src/Translations/AdminTranslations.php:877 msgid "60 minutes" msgstr "60 minutos" -#: ../../src/Translations/AdminTranslations.php:877 +#: ../../src/Translations/AdminTranslations.php:878 msgid "12 hours" msgstr "12 horas" -#: ../../src/Translations/AdminTranslations.php:878 +#: ../../src/Translations/AdminTranslations.php:879 msgid "24 hours" msgstr "24 horas" -#: ../../src/Translations/AdminTranslations.php:879 +#: ../../src/Translations/AdminTranslations.php:880 msgid "2 days" msgstr "2 días" -#: ../../src/Translations/AdminTranslations.php:880 +#: ../../src/Translations/AdminTranslations.php:881 msgid "3 days" msgstr "3 días" -#: ../../src/Translations/AdminTranslations.php:881 +#: ../../src/Translations/AdminTranslations.php:882 msgid "4 days" msgstr "4 días" -#: ../../src/Translations/AdminTranslations.php:882 +#: ../../src/Translations/AdminTranslations.php:883 msgid "5 days" msgstr "5 días" -#: ../../src/Translations/AdminTranslations.php:883 +#: ../../src/Translations/AdminTranslations.php:884 msgid "6 days" msgstr "6 días" -#: ../../src/Translations/AdminTranslations.php:884 +#: ../../src/Translations/AdminTranslations.php:885 msgid "7 days" msgstr "7 días" -#: ../../src/Translations/AdminTranslations.php:889 +#: ../../src/Translations/AdminTranslations.php:890 msgid "Would you like to know how Pix works?" msgstr "¿Quieres saber cómo funciona Pix?" -#: ../../src/Translations/AdminTranslations.php:890 +#: ../../src/Translations/AdminTranslations.php:891 msgid "" "We have a dedicated page where we explain how it works and its advantages." msgstr "Creamos una página que explica su funcionamiento y sus vantajas." -#: ../../src/Translations/AdminTranslations.php:891 +#: ../../src/Translations/AdminTranslations.php:892 msgid "Find out more about Pix" msgstr "Saber más sobre Pix" -#: ../../src/Translations/AdminTranslations.php:892 +#: ../../src/Translations/AdminTranslations.php:893 msgid "Advanced configuration of the Pix experience" msgstr "Configuración avanzada de la experiencia Pix" -#: ../../src/Translations/AdminTranslations.php:900 +#: ../../src/Translations/AdminTranslations.php:901 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." -#: ../../src/Translations/AdminTranslations.php:901 +#: ../../src/Translations/AdminTranslations.php:902 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../src/Translations/AdminTranslations.php:903 +#: ../../src/Translations/AdminTranslations.php:904 msgid "" "Choose which data to register as Pix keys. After registering, you can set up " "Pix in your checkout." @@ -1403,7 +1413,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el Pix en tu checkout." -#: ../../src/Translations/AdminTranslations.php:904 +#: ../../src/Translations/AdminTranslations.php:905 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1411,7 +1421,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../src/Translations/AdminTranslations.php:905 +#: ../../src/Translations/AdminTranslations.php:906 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1419,11 +1429,11 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../src/Translations/AdminTranslations.php:906 +#: ../../src/Translations/AdminTranslations.php:907 msgid "Learn more about Pix" msgstr "Más información sobre Pix" -#: ../../src/Translations/AdminTranslations.php:907 +#: ../../src/Translations/AdminTranslations.php:908 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1431,82 +1441,82 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../src/Translations/AdminTranslations.php:908 +#: ../../src/Translations/AdminTranslations.php:909 msgid "click here." msgstr "haz clic aquí." -#: ../../src/Translations/AdminTranslations.php:921 +#: ../../src/Translations/AdminTranslations.php:922 msgid "To enable test mode" msgstr "Para activar el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:923 +#: ../../src/Translations/AdminTranslations.php:924 msgid "copy your test credentials" msgstr "copia tus credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:924 +#: ../../src/Translations/AdminTranslations.php:925 msgid "and paste them above in section 1 of this page" msgstr "y pégalas en la sección 1 de esta página" -#: ../../src/Translations/AdminTranslations.php:929 +#: ../../src/Translations/AdminTranslations.php:930 msgid "Create your" msgstr "Crea tu" -#: ../../src/Translations/AdminTranslations.php:931 +#: ../../src/Translations/AdminTranslations.php:932 msgid "test user" msgstr "usuario de prueba" -#: ../../src/Translations/AdminTranslations.php:932 +#: ../../src/Translations/AdminTranslations.php:933 msgid "" "(Optional. Can be used in Production Mode and Test Mode, to test payments)" msgstr "" "(Opcional. Se puede utilizar en modo de producción y en modo de prueba, para " "probar los pagos)" -#: ../../src/Translations/AdminTranslations.php:938 +#: ../../src/Translations/AdminTranslations.php:939 msgid "Use our test cards" msgstr "Utiliza nuestras tarjetas de prueba" -#: ../../src/Translations/AdminTranslations.php:939 +#: ../../src/Translations/AdminTranslations.php:940 msgid "never use real cards" msgstr "nunca utilices tarjetas reales" -#: ../../src/Translations/AdminTranslations.php:945 +#: ../../src/Translations/AdminTranslations.php:946 msgid "Visit your store" msgstr "Visita tu tienda" -#: ../../src/Translations/AdminTranslations.php:946 +#: ../../src/Translations/AdminTranslations.php:947 msgid "to test purchases" msgstr "para testear compras" -#: ../../src/Translations/AdminTranslations.php:950 +#: ../../src/Translations/AdminTranslations.php:951 msgid "4. Test your store before you sell" msgstr "4. Testea tu tienda antes de vender" -#: ../../src/Translations/AdminTranslations.php:951 +#: ../../src/Translations/AdminTranslations.php:952 msgid "Choose how you want to operate your store:" msgstr "Elige cómo quieres operar tu tienda:" -#: ../../src/Translations/AdminTranslations.php:952 +#: ../../src/Translations/AdminTranslations.php:953 msgid "Test Mode" msgstr "Modo Test" -#: ../../src/Translations/AdminTranslations.php:953 +#: ../../src/Translations/AdminTranslations.php:954 msgid "Sale Mode (Production)" msgstr "Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:954 +#: ../../src/Translations/AdminTranslations.php:955 msgid "Mercado Pago payment methods in Production Mode" msgstr "Medios de pago Mercado Pago en Modo Produción" -#: ../../src/Translations/AdminTranslations.php:955 +#: ../../src/Translations/AdminTranslations.php:956 msgid "Mercado Pago payment methods in Test Mode" msgstr "Medios de pago Mercado Pago en Modo Test" -#: ../../src/Translations/AdminTranslations.php:956 +#: ../../src/Translations/AdminTranslations.php:957 msgid "Enter test credentials" msgstr "Ingresa las credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:957 +#: ../../src/Translations/AdminTranslations.php:958 msgid "" "Test the experience in Test Mode and then enable the Sale Mode (Production) " "to sell." @@ -1514,114 +1524,114 @@ msgstr "" "Testea la experiencia en Modo Test. Luego activa el Modo Ventas (Producción) " "para realizar ventas." -#: ../../src/Translations/AdminTranslations.php:958 +#: ../../src/Translations/AdminTranslations.php:959 msgid "Mercado Pago Checkouts disabled for real collections." msgstr "Checkouts Mercado Pago inactivos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:959 +#: ../../src/Translations/AdminTranslations.php:960 msgid "Test Mode rules." msgstr "Reglas del modo test." -#: ../../src/Translations/AdminTranslations.php:960 +#: ../../src/Translations/AdminTranslations.php:961 msgid "Mercado Pago Checkouts enabled for real collections." msgstr "Checkouts Mercado Pago activos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:961 +#: ../../src/Translations/AdminTranslations.php:962 msgid "The clients can make real purchases in your store." msgstr "Los clientes pueden hacer compras reales en tu tienda." -#: ../../src/Translations/AdminTranslations.php:966 +#: ../../src/Translations/AdminTranslations.php:967 msgid "Store in sale mode (Production)" msgstr "Tienda en Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:967 +#: ../../src/Translations/AdminTranslations.php:968 msgid "Store under test" msgstr "Tienda en Modo Test" -#: ../../src/Translations/AdminTranslations.php:968 +#: ../../src/Translations/AdminTranslations.php:969 msgid "Save changes" msgstr "Guardar cambios" -#: ../../src/Translations/AdminTranslations.php:980 +#: ../../src/Translations/AdminTranslations.php:981 msgid "Store business fields are valid" msgstr "Los campos comerciales de la tienda son válidos" -#: ../../src/Translations/AdminTranslations.php:981 +#: ../../src/Translations/AdminTranslations.php:982 msgid "Store business fields could not be validated" msgstr "Los campos comerciales de la tienda no se pudieron validar" -#: ../../src/Translations/AdminTranslations.php:982 +#: ../../src/Translations/AdminTranslations.php:983 msgid "At least one payment method is enabled" msgstr "Al menos un método de pago está habilitado" -#: ../../src/Translations/AdminTranslations.php:983 +#: ../../src/Translations/AdminTranslations.php:984 msgid "No payment method enabled" msgstr "Ningún método de pago habilitado" -#: ../../src/Translations/AdminTranslations.php:984 +#: ../../src/Translations/AdminTranslations.php:985 msgid "Credentials fields are valid" msgstr "Los campos de la credencial son válidos" -#: ../../src/Translations/AdminTranslations.php:985 +#: ../../src/Translations/AdminTranslations.php:986 msgid "Credentials fields could not be validated" msgstr "No se pudieron validar los campos de credenciales" -#: ../../src/Translations/AdminTranslations.php:997 +#: ../../src/Translations/AdminTranslations.php:998 msgid "Valid Public Key" msgstr "Public key válida" -#: ../../src/Translations/AdminTranslations.php:998 +#: ../../src/Translations/AdminTranslations.php:999 msgid "Invalid Public Key" msgstr "Public key no válida" -#: ../../src/Translations/AdminTranslations.php:999 +#: ../../src/Translations/AdminTranslations.php:1000 msgid "Valid Access Token" msgstr "Access token válido" -#: ../../src/Translations/AdminTranslations.php:1000 +#: ../../src/Translations/AdminTranslations.php:1001 msgid "Invalid Access Token" msgstr "Access token no válido" -#: ../../src/Translations/AdminTranslations.php:1012 +#: ../../src/Translations/AdminTranslations.php:1013 msgid "Credentials were updated" msgstr "Se actualizaron las credenciales" -#: ../../src/Translations/AdminTranslations.php:1013 +#: ../../src/Translations/AdminTranslations.php:1014 msgid "" "Your store has exited Test Mode and is making real sales in Production Mode." msgstr "" "Ahora su tienda está fuera del modo de prueba y está realizando ventas " "reales en el modo de producción." -#: ../../src/Translations/AdminTranslations.php:1014 +#: ../../src/Translations/AdminTranslations.php:1015 msgid "To test the store, re-enter both test credentials." msgstr "Para probar la tienda, vuelva a ingresar ambas credenciales de prueba." -#: ../../src/Translations/AdminTranslations.php:1015 +#: ../../src/Translations/AdminTranslations.php:1016 msgid "Invalid credentials" msgstr "Credenciales no válidas" -#: ../../src/Translations/AdminTranslations.php:1016 +#: ../../src/Translations/AdminTranslations.php:1017 msgid "See our manual to learn" msgstr "Consulte nuestro manual para saber" -#: ../../src/Translations/AdminTranslations.php:1017 +#: ../../src/Translations/AdminTranslations.php:1018 msgid "how to enter the credentials the right way." msgstr "como ingresar las credenciales de forma correcta." -#: ../../src/Translations/AdminTranslations.php:1018 +#: ../../src/Translations/AdminTranslations.php:1019 msgid " for test mode" msgstr " para el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:1030 +#: ../../src/Translations/AdminTranslations.php:1031 msgid "Store information is valid" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:1043 +#: ../../src/Translations/AdminTranslations.php:1044 msgid "Attention:" msgstr "Atención:" -#: ../../src/Translations/AdminTranslations.php:1044 +#: ../../src/Translations/AdminTranslations.php:1045 msgid "" "The currency settings you have in WooCommerce are not compatible with the " "currency you use in your Mercado Pago account. Please activate the currency " @@ -1630,19 +1640,19 @@ msgstr "" "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." -#: ../../src/Translations/AdminTranslations.php:1047 +#: ../../src/Translations/AdminTranslations.php:1048 msgid "We are converting your currency from: " msgstr "Ahora convertimos tu moneda de: " -#: ../../src/Translations/AdminTranslations.php:1063 +#: ../../src/Translations/AdminTranslations.php:1064 msgid "to " msgstr "a " -#: ../../src/Translations/AdminTranslations.php:1074 +#: ../../src/Translations/AdminTranslations.php:1075 msgid "Payment status on Mercado Pago" msgstr "Estado de pago en el Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1075 +#: ../../src/Translations/AdminTranslations.php:1076 msgid "" "This is the payment status of your Mercado Pago Activities. To check the " "order status, please refer to Order details." @@ -1650,52 +1660,52 @@ msgstr "" "Este es el estado del pago de las Actividades de tu Mercado Pago. Para " "consultar el estado del pedido, consulta en Detalles del Pedido." -#: ../../src/Translations/AdminTranslations.php:1076, -#: ../../src/Translations/AdminTranslations.php:1078 +#: ../../src/Translations/AdminTranslations.php:1077, +#: ../../src/Translations/AdminTranslations.php:1079 msgid "View purchase details at Mercado Pago" msgstr "Ver detalles de compra en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1077, -#: ../../src/Translations/AdminTranslations.php:1079, -#: ../../src/Translations/AdminTranslations.php:1081 +#: ../../src/Translations/AdminTranslations.php:1078, +#: ../../src/Translations/AdminTranslations.php:1080, +#: ../../src/Translations/AdminTranslations.php:1082 msgid "Sync order status" msgstr "Sincronizar el estado del pedido" -#: ../../src/Translations/AdminTranslations.php:1080 +#: ../../src/Translations/AdminTranslations.php:1081 msgid "Consult the reasons for refusal" msgstr "Consultar motivos de rechazo" -#: ../../src/Translations/AdminTranslations.php:1082 +#: ../../src/Translations/AdminTranslations.php:1083 msgid "Order update successfully. This page will be reloaded..." msgstr "Actualización del pedido con éxito. Esta página será recargada…" -#: ../../src/Translations/AdminTranslations.php:1083 +#: ../../src/Translations/AdminTranslations.php:1084 msgid "Unable to update order:" msgstr "No se puede actualizar el pedido:" -#: ../../src/Translations/AdminTranslations.php:1084 +#: ../../src/Translations/AdminTranslations.php:1085 msgid "Payment made" msgstr "Pago realizado" -#: ../../src/Translations/AdminTranslations.php:1085 +#: ../../src/Translations/AdminTranslations.php:1086 msgid "Payment made by the buyer and already credited in the account." msgstr "" "El pago realizado por el comprador y que ya está acreditado en la cuenta." -#: ../../src/Translations/AdminTranslations.php:1086 +#: ../../src/Translations/AdminTranslations.php:1087 msgid "Call resolved" msgstr "Llamado resuelto" -#: ../../src/Translations/AdminTranslations.php:1087, -#: ../../src/Translations/AdminTranslations.php:1137 +#: ../../src/Translations/AdminTranslations.php:1088, +#: ../../src/Translations/AdminTranslations.php:1138 msgid "Please contact Mercado Pago for further details." msgstr "Contacta a Mercado Pago para saber más detalles." -#: ../../src/Translations/AdminTranslations.php:1088 +#: ../../src/Translations/AdminTranslations.php:1089 msgid "Payment refunded" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1089 +#: ../../src/Translations/AdminTranslations.php:1090 msgid "" "Your refund request has been made. Please contact Mercado Pago for further " "details." @@ -1703,59 +1713,59 @@ msgstr "" "Tu pedido de reebolso ya fue realizado. Contacta a Mercado Pago para saber " "más detalles." -#: ../../src/Translations/AdminTranslations.php:1090, -#: ../../src/Translations/AdminTranslations.php:1092 +#: ../../src/Translations/AdminTranslations.php:1091, +#: ../../src/Translations/AdminTranslations.php:1093 msgid "Payment returned" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1091 +#: ../../src/Translations/AdminTranslations.php:1092 msgid "The payment has been returned to the client." msgstr "El pago ya fue devuelto al cliente." -#: ../../src/Translations/AdminTranslations.php:1093 +#: ../../src/Translations/AdminTranslations.php:1094 msgid "The payment has been partially returned to the client." msgstr "El pago ya fue devuelto parcialmente al cliente." -#: ../../src/Translations/AdminTranslations.php:1094 +#: ../../src/Translations/AdminTranslations.php:1095 msgid "Payment canceled" msgstr "Pago cancelado" -#: ../../src/Translations/AdminTranslations.php:1095 +#: ../../src/Translations/AdminTranslations.php:1096 msgid "The payment has been successfully canceled." msgstr "El pago fue cancelado con éxito." -#: ../../src/Translations/AdminTranslations.php:1096 +#: ../../src/Translations/AdminTranslations.php:1097 msgid "Purchase canceled" msgstr "Compra cancelada" -#: ../../src/Translations/AdminTranslations.php:1097 +#: ../../src/Translations/AdminTranslations.php:1098 msgid "The payment has been canceled by the customer." msgstr "El pago fue cancelado por el cliente." -#: ../../src/Translations/AdminTranslations.php:1098, -#: ../../src/Translations/AdminTranslations.php:1100, -#: ../../src/Translations/AdminTranslations.php:1102, -#: ../../src/Translations/AdminTranslations.php:1104, -#: ../../src/Translations/AdminTranslations.php:1106, -#: ../../src/Translations/AdminTranslations.php:1114, -#: ../../src/Translations/AdminTranslations.php:1116, -#: ../../src/Translations/AdminTranslations.php:1118, -#: ../../src/Translations/AdminTranslations.php:1120, -#: ../../src/Translations/AdminTranslations.php:1122, -#: ../../src/Translations/AdminTranslations.php:1124, -#: ../../src/Translations/AdminTranslations.php:1126, -#: ../../src/Translations/AdminTranslations.php:1181 -msgid "Pending payment" -msgstr "Cobro pendiente" - #: ../../src/Translations/AdminTranslations.php:1099, #: ../../src/Translations/AdminTranslations.php:1101, #: ../../src/Translations/AdminTranslations.php:1103, -#: ../../src/Translations/AdminTranslations.php:1105 +#: ../../src/Translations/AdminTranslations.php:1105, +#: ../../src/Translations/AdminTranslations.php:1107, +#: ../../src/Translations/AdminTranslations.php:1115, +#: ../../src/Translations/AdminTranslations.php:1117, +#: ../../src/Translations/AdminTranslations.php:1119, +#: ../../src/Translations/AdminTranslations.php:1121, +#: ../../src/Translations/AdminTranslations.php:1123, +#: ../../src/Translations/AdminTranslations.php:1125, +#: ../../src/Translations/AdminTranslations.php:1127, +#: ../../src/Translations/AdminTranslations.php:1182 +msgid "Pending payment" +msgstr "Cobro pendiente" + +#: ../../src/Translations/AdminTranslations.php:1100, +#: ../../src/Translations/AdminTranslations.php:1102, +#: ../../src/Translations/AdminTranslations.php:1104, +#: ../../src/Translations/AdminTranslations.php:1106 msgid "Awaiting payment from the buyer." msgstr "Esperando el pago del comprador." -#: ../../src/Translations/AdminTranslations.php:1107 +#: ../../src/Translations/AdminTranslations.php:1108 msgid "" "We are veryfing the payment. We will notify you by email in up to 6 hours if " "everything is fine so that you can deliver the product or provide the " @@ -1764,19 +1774,19 @@ msgstr "" "Estamos revisando el pago. En menos de 6 horas te avisaremos por e-mail si " "está todo bien para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1108, -#: ../../src/Translations/AdminTranslations.php:1132, -#: ../../src/Translations/AdminTranslations.php:1148, -#: ../../src/Translations/AdminTranslations.php:1167, -#: ../../src/Translations/AdminTranslations.php:1171, -#: ../../src/Translations/AdminTranslations.php:1173, -#: ../../src/Translations/AdminTranslations.php:1175, -#: ../../src/Translations/AdminTranslations.php:1179 +#: ../../src/Translations/AdminTranslations.php:1109, +#: ../../src/Translations/AdminTranslations.php:1133, +#: ../../src/Translations/AdminTranslations.php:1149, +#: ../../src/Translations/AdminTranslations.php:1168, +#: ../../src/Translations/AdminTranslations.php:1172, +#: ../../src/Translations/AdminTranslations.php:1174, +#: ../../src/Translations/AdminTranslations.php:1176, +#: ../../src/Translations/AdminTranslations.php:1180 msgid "Declined payment" msgstr "Cobro rechazado" -#: ../../src/Translations/AdminTranslations.php:1109, -#: ../../src/Translations/AdminTranslations.php:1133 +#: ../../src/Translations/AdminTranslations.php:1110, +#: ../../src/Translations/AdminTranslations.php:1134 msgid "" "The card-issuing bank declined the payment. Please ask your client to use " "another card or to get in touch with the bank." @@ -1785,27 +1795,27 @@ msgstr "" "“\n" "“otra tarjeta o que se comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1110 +#: ../../src/Translations/AdminTranslations.php:1111 msgid "Payment authorized. Awaiting capture." msgstr "Pago autorizado. Esperando captura." -#: ../../src/Translations/AdminTranslations.php:1111 +#: ../../src/Translations/AdminTranslations.php:1112 msgid "" "The payment has been authorized on the client's card. Please capture the " "payment." msgstr "" "Ya se autorizó el pago en la tarjeta del cliente. Haz la captura del pago." -#: ../../src/Translations/AdminTranslations.php:1112 +#: ../../src/Translations/AdminTranslations.php:1113 msgid "Payment in process" msgstr "Pago en proceso" -#: ../../src/Translations/AdminTranslations.php:1113, -#: ../../src/Translations/AdminTranslations.php:1123 +#: ../../src/Translations/AdminTranslations.php:1114, +#: ../../src/Translations/AdminTranslations.php:1124 msgid "Please wait or contact Mercado Pago for further details" msgstr "Espera o contacta a Mercado Pago para saber más detalles" -#: ../../src/Translations/AdminTranslations.php:1115 +#: ../../src/Translations/AdminTranslations.php:1116 msgid "" "The bank is reviewing the payment. As soon as we have their confirmation, we " "will notify you via email so that you can deliver the product or provide the " @@ -1814,33 +1824,33 @@ msgstr "" "El banco está revisando el pago. Te avisaremos por e-mail cuando esté " "confirmado para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1117, -#: ../../src/Translations/AdminTranslations.php:1119, -#: ../../src/Translations/AdminTranslations.php:1121 +#: ../../src/Translations/AdminTranslations.php:1118, +#: ../../src/Translations/AdminTranslations.php:1120, +#: ../../src/Translations/AdminTranslations.php:1122 msgid "Awaiting payment information validation." msgstr "Esperando validación de los datos de pago." -#: ../../src/Translations/AdminTranslations.php:1125 +#: ../../src/Translations/AdminTranslations.php:1126 msgid "Waiting for the buyer." msgstr "Esperando al comprador." -#: ../../src/Translations/AdminTranslations.php:1127 +#: ../../src/Translations/AdminTranslations.php:1128 msgid "Waiting for the card issuer." msgstr "Espererando al emisor de la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1128, -#: ../../src/Translations/AdminTranslations.php:1130, -#: ../../src/Translations/AdminTranslations.php:1134, -#: ../../src/Translations/AdminTranslations.php:1155, -#: ../../src/Translations/AdminTranslations.php:1177 -msgid "The card issuing bank declined the payment" -msgstr "El banco emisor de la tarjeta rechazó el pago" - #: ../../src/Translations/AdminTranslations.php:1129, #: ../../src/Translations/AdminTranslations.php:1131, #: ../../src/Translations/AdminTranslations.php:1135, #: ../../src/Translations/AdminTranslations.php:1156, #: ../../src/Translations/AdminTranslations.php:1178 +msgid "The card issuing bank declined the payment" +msgstr "El banco emisor de la tarjeta rechazó el pago" + +#: ../../src/Translations/AdminTranslations.php:1130, +#: ../../src/Translations/AdminTranslations.php:1132, +#: ../../src/Translations/AdminTranslations.php:1136, +#: ../../src/Translations/AdminTranslations.php:1157, +#: ../../src/Translations/AdminTranslations.php:1179 msgid "" "Please recommend your customer to pay with another payment method or to " "contact their bank." @@ -1848,32 +1858,32 @@ msgstr "" "Recomiéndale a tu cliente que pague con otro medio de pago o que se " "comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1136 +#: ../../src/Translations/AdminTranslations.php:1137 msgid "Mercado Pago did not process the payment" msgstr "Mercado Pago no procesó el pago" -#: ../../src/Translations/AdminTranslations.php:1138, -#: ../../src/Translations/AdminTranslations.php:1183 -msgid "Expired payment deadline" -msgstr "Venció el plazo para el pago" - #: ../../src/Translations/AdminTranslations.php:1139, #: ../../src/Translations/AdminTranslations.php:1184 -msgid "The client did not pay within the time limit." -msgstr "El cliente no pagó dentro del límite de tiempo." +msgid "Expired payment deadline" +msgstr "Venció el plazo para el pago" #: ../../src/Translations/AdminTranslations.php:1140, -#: ../../src/Translations/AdminTranslations.php:1142, -#: ../../src/Translations/AdminTranslations.php:1144, #: ../../src/Translations/AdminTranslations.php:1185 -msgid "Your customer entered one or more incorrect card details" -msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" +msgid "The client did not pay within the time limit." +msgstr "El cliente no pagó dentro del límite de tiempo." #: ../../src/Translations/AdminTranslations.php:1141, #: ../../src/Translations/AdminTranslations.php:1143, #: ../../src/Translations/AdminTranslations.php:1145, -#: ../../src/Translations/AdminTranslations.php:1186, -#: ../../src/Translations/AdminTranslations.php:1187 +#: ../../src/Translations/AdminTranslations.php:1186 +msgid "Your customer entered one or more incorrect card details" +msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" + +#: ../../src/Translations/AdminTranslations.php:1142, +#: ../../src/Translations/AdminTranslations.php:1144, +#: ../../src/Translations/AdminTranslations.php:1146, +#: ../../src/Translations/AdminTranslations.php:1187, +#: ../../src/Translations/AdminTranslations.php:1188 msgid "" "Please ask them to enter to enter them again exactly as they appear on the " "card or on their bank app to complete the payment." @@ -1881,17 +1891,17 @@ msgstr "" "Pídele que vuelva a ingresarlos tal como figuran en la tarjeta o en la app " "de su banco para finalizar el pago." -#: ../../src/Translations/AdminTranslations.php:1146, -#: ../../src/Translations/AdminTranslations.php:1169 +#: ../../src/Translations/AdminTranslations.php:1147, +#: ../../src/Translations/AdminTranslations.php:1170 msgid "We protected you from a suspicious payment" msgstr "Te protegimos de un pago sospechoso" -#: ../../src/Translations/AdminTranslations.php:1147 +#: ../../src/Translations/AdminTranslations.php:1148 msgid "For safety reasons, this transaction cannot be completed." msgstr "Por motivos de seguridad, esta transacción no podrá ser finalizada." -#: ../../src/Translations/AdminTranslations.php:1149, -#: ../../src/Translations/AdminTranslations.php:1168 +#: ../../src/Translations/AdminTranslations.php:1150, +#: ../../src/Translations/AdminTranslations.php:1169 msgid "" "The buyer is suspended in our platform. Your client must contact us to check " "what happened." @@ -1899,12 +1909,12 @@ msgstr "" "El comprador está suspendido en Mercado Pago. Tu cliente debe comunicarse " "con nosotros para ver qué pasó." -#: ../../src/Translations/AdminTranslations.php:1150 +#: ../../src/Translations/AdminTranslations.php:1151 msgid "For safety reasons, the card issuing bank declined the payment" msgstr "Por seguridad, el banco emisor de la tarjeta rechazó el pago" -#: ../../src/Translations/AdminTranslations.php:1151, -#: ../../src/Translations/AdminTranslations.php:1170 +#: ../../src/Translations/AdminTranslations.php:1152, +#: ../../src/Translations/AdminTranslations.php:1171 msgid "" "Recommend your customer to pay with their usual payment method and device " "for online purchases." @@ -1912,40 +1922,40 @@ msgstr "" "Recomiéndale a tu cliente que pague con el medio de pago y dispositivo que " "suele usar para compras online." -#: ../../src/Translations/AdminTranslations.php:1152 +#: ../../src/Translations/AdminTranslations.php:1153 msgid "Your customer's credit card has no available limit" msgstr "La tarjeta de crédito de tu cliente no tiene límite disponible" -#: ../../src/Translations/AdminTranslations.php:1153, #: ../../src/Translations/AdminTranslations.php:1154, -#: ../../src/Translations/AdminTranslations.php:1158 +#: ../../src/Translations/AdminTranslations.php:1155, +#: ../../src/Translations/AdminTranslations.php:1159 msgid "" "Please ask them to pay with another card or to choose another payment method." msgstr "Pídele que pague con otra tarjeta o que elija otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1157 +#: ../../src/Translations/AdminTranslations.php:1158 msgid "Your customer reached the limit of payment attempts with this card" msgstr "Tu cliente alcanzó el límite de intentos de pago con la tarjeta" -#: ../../src/Translations/AdminTranslations.php:1159 +#: ../../src/Translations/AdminTranslations.php:1160 msgid "" "Your customer's card does not accept the number of installments selected" msgstr "La tarjeta de tu cliente no acepta la cantidad de pagos que seleccionó" -#: ../../src/Translations/AdminTranslations.php:1160 +#: ../../src/Translations/AdminTranslations.php:1161 msgid "" "Please ask them to choose a different number of installments or to pay with " "another method." msgstr "" "Pídele que elija una cantidad de pagos diferente o que use con otro medio." -#: ../../src/Translations/AdminTranslations.php:1161, -#: ../../src/Translations/AdminTranslations.php:1188 +#: ../../src/Translations/AdminTranslations.php:1162, +#: ../../src/Translations/AdminTranslations.php:1189 msgid "Your customer needs to authorize the payment through their bank" msgstr "Tu cliente necesita autorizar el pago con su banco" -#: ../../src/Translations/AdminTranslations.php:1162, -#: ../../src/Translations/AdminTranslations.php:1189 +#: ../../src/Translations/AdminTranslations.php:1163, +#: ../../src/Translations/AdminTranslations.php:1190 msgid "" "Please ask them to call the telephone number on their card or to pay with " "another method." @@ -1953,20 +1963,20 @@ msgstr "" "Pídele que llame al teléfono que está en la tarjeta o que pague con otro " "medio." -#: ../../src/Translations/AdminTranslations.php:1163 +#: ../../src/Translations/AdminTranslations.php:1164 msgid "" "The payment was declined because your customer already paid for this purchase" msgstr "El pago fue rechazado porque tu cliente ya pagó esta compra" -#: ../../src/Translations/AdminTranslations.php:1164 +#: ../../src/Translations/AdminTranslations.php:1165 msgid "Check your approved payments to verify it." msgstr "Revisa tu cobros aprobados para verificarlo." -#: ../../src/Translations/AdminTranslations.php:1165 +#: ../../src/Translations/AdminTranslations.php:1166 msgid "Your customer's card was is not activated yet" msgstr "La tarjeta de tu cliente aún no está habilitada" -#: ../../src/Translations/AdminTranslations.php:1166 +#: ../../src/Translations/AdminTranslations.php:1167 msgid "" "Please ask them to contact their bank by calling the number on the back of " "their card or to pay with another method." @@ -1974,7 +1984,7 @@ msgstr "" "Pídele que se comunique con su banco al número que está en el dorso de la " "tarjeta o que pague con otro medio." -#: ../../src/Translations/AdminTranslations.php:1172 +#: ../../src/Translations/AdminTranslations.php:1173 msgid "" "This payment was declined because it did not pass Mercado Pago security " "controls. Please ask your client to use another card." @@ -1982,7 +1992,7 @@ msgstr "" "Rechazamos este pago porque no pasó los controles de seguridad de Mercado " "Pago. Pedile a tu cliente que use otra tarjeta." -#: ../../src/Translations/AdminTranslations.php:1174 +#: ../../src/Translations/AdminTranslations.php:1175 msgid "" "The amount exceeded the card limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -1990,8 +2000,8 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1176, -#: ../../src/Translations/AdminTranslations.php:1180 +#: ../../src/Translations/AdminTranslations.php:1177, +#: ../../src/Translations/AdminTranslations.php:1181 msgid "" "Please ask your client to use another card or to get in touch with the card " "issuer." @@ -1999,7 +2009,7 @@ msgstr "" "Pídele a tu cliente que use otra tarjeta o que se comunique con el emisor de " "la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1182 +#: ../../src/Translations/AdminTranslations.php:1183 msgid "" "The amount exceeded the card's limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -2007,21 +2017,21 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1190 +#: ../../src/Translations/AdminTranslations.php:1191 msgid "Your customer's debit card has insufficient funds" msgstr "La tarjeta de débito de tu cliente no tiene saldo suficiente" -#: ../../src/Translations/AdminTranslations.php:1191 +#: ../../src/Translations/AdminTranslations.php:1192 msgid "" "Please recommend your customer to pay with another card or to choose another " "payment method." msgstr "Pídele que pague con otra tarjeta o que elige otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1192 +#: ../../src/Translations/AdminTranslations.php:1193 msgid "Something went wrong and the payment was declined" msgstr "El pago fue rechazado porque hubo un error" -#: ../../src/Translations/AdminTranslations.php:1193 +#: ../../src/Translations/AdminTranslations.php:1194 msgid "" "Please recommend you customer to try again or to pay with another payment " "method." diff --git a/i18n/languages/woocommerce-mercadopago-es_CL.mo b/i18n/languages/woocommerce-mercadopago-es_CL.mo index bd1af4ac49f7dfee76b3c4a9adea6e331edd16a2..392533cbdfcbb70849524b76c5c5421daba707ad 100644 GIT binary patch delta 10494 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 delta 10191 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 CD_YP1 diff --git a/i18n/languages/woocommerce-mercadopago-es_CL.po b/i18n/languages/woocommerce-mercadopago-es_CL.po index 56c6233a1..d807f91c5 100644 --- a/i18n/languages/woocommerce-mercadopago-es_CL.po +++ b/i18n/languages/woocommerce-mercadopago-es_CL.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" -"POT-Creation-Date: 2024-02-01 11:32+0000\n" +"POT-Creation-Date: 2024-02-07 19:47+0000\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -15,22 +15,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.2\n" -#: ../../src/WoocommerceMercadoPago.php:426, +#: ../../src/WoocommerceMercadoPago.php:449, #: ../../src/Translations/AdminTranslations.php:166 msgid "Activate WooCommerce" msgstr "Activar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:427, +#: ../../src/WoocommerceMercadoPago.php:450, #: ../../src/Translations/AdminTranslations.php:167 msgid "Install WooCommerce" msgstr "Instalar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:428, +#: ../../src/WoocommerceMercadoPago.php:451, #: ../../src/Translations/AdminTranslations.php:168 msgid "See WooCommerce" msgstr "Ver WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:430, +#: ../../src/WoocommerceMercadoPago.php:453, #: ../../src/Translations/AdminTranslations.php:157 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" @@ -103,50 +103,60 @@ msgstr "" msgid "Activate" msgstr "Activar" -#: ../../src/Translations/AdminTranslations.php:188 +#: ../../src/Translations/AdminTranslations.php:177 +msgid "" +"Unfortunately, the language configured in your WordPress is not compatible " +"with our plugin. For the best experience, please switch to a supported " +"language." +msgstr "" +"Lamentablemente, el idioma configurado en tu WordPress no es compatible con " +"nuestro plugin. Para disfrutar de la mejor experiencia, cambia a un idioma " +"compatible." + +#: ../../src/Translations/AdminTranslations.php:189 msgid "Set plugin" msgstr "Configurar plugin" -#: ../../src/Translations/AdminTranslations.php:189, -#: ../../src/Translations/AdminTranslations.php:743, -#: ../../src/Translations/AdminTranslations.php:802 +#: ../../src/Translations/AdminTranslations.php:190, +#: ../../src/Translations/AdminTranslations.php:744, +#: ../../src/Translations/AdminTranslations.php:803 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../src/Translations/AdminTranslations.php:190, -#: ../../src/Translations/AdminTranslations.php:261 +#: ../../src/Translations/AdminTranslations.php:191, +#: ../../src/Translations/AdminTranslations.php:262 msgid "Plugin manual" msgstr "Manual del plugin" -#: ../../src/Translations/AdminTranslations.php:202 +#: ../../src/Translations/AdminTranslations.php:203 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../src/Translations/AdminTranslations.php:203 +#: ../../src/Translations/AdminTranslations.php:204 msgid "Mercado Pago commission:" msgstr "Comisión de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:204 +#: ../../src/Translations/AdminTranslations.php:205 msgid "Represents the commission configured on plugin settings." msgstr "Representa la comisión configurada en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:205 +#: ../../src/Translations/AdminTranslations.php:206 msgid "Mercado Pago discount:" msgstr "Descuento de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:206 +#: ../../src/Translations/AdminTranslations.php:207 msgid "Represents the discount configured on plugin settings." msgstr "Representa el descuento configurado en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:207 +#: ../../src/Translations/AdminTranslations.php:208 msgid "Represents the installment fee charged by Mercado Pago." msgstr "Representa la comisión a plazos cobrada por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:208 +#: ../../src/Translations/AdminTranslations.php:209 msgid "Mercado Pago Installment Fee:" msgstr "Cuota de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:209 +#: ../../src/Translations/AdminTranslations.php:210 msgid "" "Represents the total purchase plus the installment fee charged by Mercado " "Pago." @@ -154,91 +164,91 @@ msgstr "" "Representa el total de la compra más la comisión de fraccionamiento cobrada " "por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:210 +#: ../../src/Translations/AdminTranslations.php:211 msgid "Mercado Pago Total:" msgstr "Mercado Pago Total:" -#: ../../src/Translations/AdminTranslations.php:223 +#: ../../src/Translations/AdminTranslations.php:224 msgid "Accept" msgstr "Acepta" -#: ../../src/Translations/AdminTranslations.php:224 +#: ../../src/Translations/AdminTranslations.php:225 msgid "payments on the spot" msgstr "pagos al instante" -#: ../../src/Translations/AdminTranslations.php:225 +#: ../../src/Translations/AdminTranslations.php:226 msgid "with" msgstr "con" -#: ../../src/Translations/AdminTranslations.php:226 +#: ../../src/Translations/AdminTranslations.php:227 msgid "the" msgstr "toda la" -#: ../../src/Translations/AdminTranslations.php:227 +#: ../../src/Translations/AdminTranslations.php:228 msgid "security" msgstr "seguridad" -#: ../../src/Translations/AdminTranslations.php:228 +#: ../../src/Translations/AdminTranslations.php:229 msgid "from Mercado Pago" msgstr "de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:233 +#: ../../src/Translations/AdminTranslations.php:234 msgid "Choose" msgstr "Elige" -#: ../../src/Translations/AdminTranslations.php:234 +#: ../../src/Translations/AdminTranslations.php:235 msgid "when you want to receive the money" msgstr "cuándo quieres recibir el dinero" -#: ../../src/Translations/AdminTranslations.php:235 +#: ../../src/Translations/AdminTranslations.php:236 msgid "from your sales and if you want to offer" msgstr "de las ventas y si quieres ofrecer" -#: ../../src/Translations/AdminTranslations.php:236 +#: ../../src/Translations/AdminTranslations.php:237 msgid "interest-free installments" msgstr "cuotas sin interés" -#: ../../src/Translations/AdminTranslations.php:237 +#: ../../src/Translations/AdminTranslations.php:238 msgid "to your clients." msgstr "a los clientes." -#: ../../src/Translations/AdminTranslations.php:242 +#: ../../src/Translations/AdminTranslations.php:243 msgid "Review the step-by-step of" msgstr "Revisa el paso a paso de" -#: ../../src/Translations/AdminTranslations.php:243 +#: ../../src/Translations/AdminTranslations.php:244 msgid "how to integrate the Mercado Pago Plugin" msgstr "cómo integrar el Plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:244 +#: ../../src/Translations/AdminTranslations.php:245 msgid "on our website for developers." msgstr "en nuestro sitio de desarrolladores." -#: ../../src/Translations/AdminTranslations.php:248 +#: ../../src/Translations/AdminTranslations.php:249 msgid "SSL" msgstr "SSL" -#: ../../src/Translations/AdminTranslations.php:249 +#: ../../src/Translations/AdminTranslations.php:250 msgid "Curl" msgstr "Curl" -#: ../../src/Translations/AdminTranslations.php:250 +#: ../../src/Translations/AdminTranslations.php:251 msgid "GD Extensions" msgstr "Extensiones GD" -#: ../../src/Translations/AdminTranslations.php:252 +#: ../../src/Translations/AdminTranslations.php:253 msgid "Technical requirements" msgstr "Requisitos técnicos" -#: ../../src/Translations/AdminTranslations.php:253 +#: ../../src/Translations/AdminTranslations.php:254 msgid "Collections and installments" msgstr "Cobros y cuotas" -#: ../../src/Translations/AdminTranslations.php:254 +#: ../../src/Translations/AdminTranslations.php:255 msgid "Questions?" msgstr "¿Dudas?" -#: ../../src/Translations/AdminTranslations.php:255 +#: ../../src/Translations/AdminTranslations.php:256 msgid "" "Implementation responsible for transmitting data to Mercado Pago in a secure " "and encrypted way." @@ -246,7 +256,7 @@ msgstr "" "Implementación responsable de transmitir los datos a Mercado Pago de forma " "segura y encriptada." -#: ../../src/Translations/AdminTranslations.php:256 +#: ../../src/Translations/AdminTranslations.php:257 msgid "" "It is an extension responsible for making payments via requests from the " "plugin to Mercado Pago." @@ -254,7 +264,7 @@ msgstr "" "Es una extensión encargada de realizar los pagos a través de requests del " "plugin a Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:257 +#: ../../src/Translations/AdminTranslations.php:258 msgid "" "These extensions are responsible for the implementation and operation of Pix " "in your store." @@ -262,11 +272,11 @@ msgstr "" "Extensiones responsables de la aplicación y el funcionamiento de Pix en su " "tienda." -#: ../../src/Translations/AdminTranslations.php:260 +#: ../../src/Translations/AdminTranslations.php:261 msgid "Set deadlines and fees" msgstr "Ajustar plazos y tasas" -#: ../../src/Translations/AdminTranslations.php:274 +#: ../../src/Translations/AdminTranslations.php:275 msgid "" "To enable orders, you must create and activate production credentials in " "your Mercado Pago Account." @@ -274,79 +284,79 @@ msgstr "" "Para habilitar las ventas, debes crear y activar las credenciales de " "producción en tu cuenta de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:275 +#: ../../src/Translations/AdminTranslations.php:276 msgid "Copy and paste the credentials below." msgstr "Copia y pega tus credenciales a continuación." -#: ../../src/Translations/AdminTranslations.php:280 +#: ../../src/Translations/AdminTranslations.php:281 msgid "You must enter" msgstr "Debe introducir" -#: ../../src/Translations/AdminTranslations.php:281 +#: ../../src/Translations/AdminTranslations.php:282 msgid "production credentials" msgstr "las credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:285 +#: ../../src/Translations/AdminTranslations.php:286 msgid "Public Key" msgstr "Public Key" -#: ../../src/Translations/AdminTranslations.php:286 +#: ../../src/Translations/AdminTranslations.php:287 msgid "Access Token" msgstr "Access Token" -#: ../../src/Translations/AdminTranslations.php:287 +#: ../../src/Translations/AdminTranslations.php:288 msgid "1. Integrate your store with Mercado Pago" msgstr "1. Integra la tienda a Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:288 +#: ../../src/Translations/AdminTranslations.php:289 msgid "Production credentials" msgstr "Credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:289 +#: ../../src/Translations/AdminTranslations.php:290 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:291 +#: ../../src/Translations/AdminTranslations.php:292 msgid "Enable Mercado Pago checkouts for test purchases in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para pruebas de compras en la " "tienda." -#: ../../src/Translations/AdminTranslations.php:292 +#: ../../src/Translations/AdminTranslations.php:293 msgid "Enable Mercado Pago checkouts to receive real payments in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para recibir pagos reales en tienda." -#: ../../src/Translations/AdminTranslations.php:293 +#: ../../src/Translations/AdminTranslations.php:294 msgid "Paste your Public Key here" msgstr "Pega aquí tu Public Key" -#: ../../src/Translations/AdminTranslations.php:294 +#: ../../src/Translations/AdminTranslations.php:295 msgid "Paste your Access Token here" msgstr "Pega aquí tu Access Token" -#: ../../src/Translations/AdminTranslations.php:295 +#: ../../src/Translations/AdminTranslations.php:296 msgid "Check credentials" msgstr "Consultar credenciales" -#: ../../src/Translations/AdminTranslations.php:296, -#: ../../src/Translations/AdminTranslations.php:350 +#: ../../src/Translations/AdminTranslations.php:297, +#: ../../src/Translations/AdminTranslations.php:351 msgid "Save and continue" msgstr "Guardar y continuar" -#: ../../src/Translations/AdminTranslations.php:297 +#: ../../src/Translations/AdminTranslations.php:298 msgid "Important! To sell you must enter your credentials." msgstr "¡Importante! Para vender debe introducir sus credenciales." -#: ../../src/Translations/AdminTranslations.php:299 +#: ../../src/Translations/AdminTranslations.php:300 msgid "Enter credentials" msgstr "Introducir credenciales" -#: ../../src/Translations/AdminTranslations.php:300 +#: ../../src/Translations/AdminTranslations.php:301 msgid "Activate your credentials to be able to sell" msgstr "Activa tus credenciales para poder vender" -#: ../../src/Translations/AdminTranslations.php:301 +#: ../../src/Translations/AdminTranslations.php:302 msgid "" "Credentials are codes that you must enter to enable sales. Go below on " "Activate Credentials. On the next screen, use again the Activate Credentials " @@ -357,23 +367,23 @@ msgstr "" "nuevamente el botón Activar Credenciales y complete los campos con la " "información solicitada." -#: ../../src/Translations/AdminTranslations.php:302 +#: ../../src/Translations/AdminTranslations.php:303 msgid "Activate credentials" msgstr "Activar credenciales" -#: ../../src/Translations/AdminTranslations.php:315 +#: ../../src/Translations/AdminTranslations.php:316 msgid "Add the URL to receive payments notifications." msgstr "Ingresa la URL para recibir notificaciones de pago." -#: ../../src/Translations/AdminTranslations.php:316 +#: ../../src/Translations/AdminTranslations.php:317 msgid "Find out more information in the" msgstr "Consulta más información en los" -#: ../../src/Translations/AdminTranslations.php:318 +#: ../../src/Translations/AdminTranslations.php:319 msgid "guides" msgstr "manuales" -#: ../../src/Translations/AdminTranslations.php:323 +#: ../../src/Translations/AdminTranslations.php:324 msgid "" "If you are a Mercado Pago Certified Partner, make sure to add your " "integrator_id." @@ -381,31 +391,31 @@ msgstr "" "Si eres Partner certificado de Mercado Pago, recuerda ingresar tu " "integrator_id." -#: ../../src/Translations/AdminTranslations.php:324 +#: ../../src/Translations/AdminTranslations.php:325 msgid "If you do not have the code, please" msgstr "Si no tienes el código," -#: ../../src/Translations/AdminTranslations.php:326 +#: ../../src/Translations/AdminTranslations.php:327 msgid "request it now" msgstr "solicítalo ahora" -#: ../../src/Translations/AdminTranslations.php:330 +#: ../../src/Translations/AdminTranslations.php:331 msgid "2. Customize your business" msgstr "2. Personaliza tu negocio" -#: ../../src/Translations/AdminTranslations.php:331 +#: ../../src/Translations/AdminTranslations.php:332 msgid "Your store information" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:332 +#: ../../src/Translations/AdminTranslations.php:333 msgid "Advanced integration options (optional)" msgstr "Opciones avanzadas de integración (opcional)" -#: ../../src/Translations/AdminTranslations.php:333 +#: ../../src/Translations/AdminTranslations.php:334 msgid "Debug and Log Mode" msgstr "Modo debug y log" -#: ../../src/Translations/AdminTranslations.php:334 +#: ../../src/Translations/AdminTranslations.php:335 msgid "" "Fill out the following information to have a better experience and offer " "more information to your clients." @@ -413,15 +423,15 @@ msgstr "" "Completa los siguientes datos para tener una mejor experiencia y ofrecer más " "información a los clientes." -#: ../../src/Translations/AdminTranslations.php:335 +#: ../../src/Translations/AdminTranslations.php:336 msgid "Name of your store in your client's invoice" msgstr "Nombre de tu tienda en la factura de los clientes" -#: ../../src/Translations/AdminTranslations.php:336 +#: ../../src/Translations/AdminTranslations.php:337 msgid "Identification in Activities of Mercado Pago" msgstr "Identificación en Actividad de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:337 +#: ../../src/Translations/AdminTranslations.php:338 msgid "" "For further integration of your store with Mercado Pago (IPN, Certified " "Partners, Debug Mode)" @@ -429,202 +439,202 @@ msgstr "" "Para mayor integración de tu tienda con Mercado Pago (IPN, Socios " "Certificados, Modo Debug)" -#: ../../src/Translations/AdminTranslations.php:338 +#: ../../src/Translations/AdminTranslations.php:339 msgid "Store category" msgstr "Categoría de la tienda" -#: ../../src/Translations/AdminTranslations.php:339 +#: ../../src/Translations/AdminTranslations.php:340 msgid "URL for IPN" msgstr "URL para IPN" -#: ../../src/Translations/AdminTranslations.php:340 +#: ../../src/Translations/AdminTranslations.php:341 msgid "Integrator ID" msgstr "Integrator ID" -#: ../../src/Translations/AdminTranslations.php:341 +#: ../../src/Translations/AdminTranslations.php:342 msgid "We record your store's actions in order to provide a better assistance." msgstr "Grabamos las aciones de tu tienda para brindar un mejor soporte." -#: ../../src/Translations/AdminTranslations.php:342 +#: ../../src/Translations/AdminTranslations.php:343 msgid "Ex: Mary's Store" msgstr "Ej.: Tienda de María" -#: ../../src/Translations/AdminTranslations.php:343 +#: ../../src/Translations/AdminTranslations.php:344 msgid "Ex: Mary Store" msgstr "Ej.: TiendaMaría" -#: ../../src/Translations/AdminTranslations.php:344 +#: ../../src/Translations/AdminTranslations.php:345 msgid "Select" msgstr "Seleccionar" -#: ../../src/Translations/AdminTranslations.php:345 +#: ../../src/Translations/AdminTranslations.php:346 msgid "Ex: https://examples.com/my-custom-ipn-url" msgstr "Ej.: https://examples.com/my-custom-ipn-url" -#: ../../src/Translations/AdminTranslations.php:346 +#: ../../src/Translations/AdminTranslations.php:347 msgid "Add plugin default params" msgstr "Agregar parámetros default del plugin" -#: ../../src/Translations/AdminTranslations.php:347 +#: ../../src/Translations/AdminTranslations.php:348 msgid "Ex: 14987126498" msgstr "Ej.: 14987126498" -#: ../../src/Translations/AdminTranslations.php:348 +#: ../../src/Translations/AdminTranslations.php:349 msgid "Show advanced options" msgstr "Ver opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:349 +#: ../../src/Translations/AdminTranslations.php:350 msgid "Hide advanced options" msgstr "Esconder opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:351 +#: ../../src/Translations/AdminTranslations.php:352 msgid "" "If this field is empty, the purchase will be identified as Mercado Pago." msgstr "" "Si el campo queda vacío, la compra del cliente se identificará como Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:352 +#: ../../src/Translations/AdminTranslations.php:353 msgid "In Activities, you will view this term before the order number" msgstr "En Actividad, verás el término ingresado antes del número o del pedido" -#: ../../src/Translations/AdminTranslations.php:353 +#: ../../src/Translations/AdminTranslations.php:354 msgid "" "Select \"Other categories\" if you do not find the appropriate category." msgstr "Seleciona ”Other categories” si no encuentras una categoría adecuada." -#: ../../src/Translations/AdminTranslations.php:354 +#: ../../src/Translations/AdminTranslations.php:355 msgid "request it now." msgstr "solicítalo ahora." -#: ../../src/Translations/AdminTranslations.php:368 +#: ../../src/Translations/AdminTranslations.php:369 msgid "3. Set payment methods" msgstr "3. Configura los medios de pago" -#: ../../src/Translations/AdminTranslations.php:369 +#: ../../src/Translations/AdminTranslations.php:370 msgid "To view more options, please select a payment method below" msgstr "Selecciona uno de los siguientes medios de pago para ver más opciones" -#: ../../src/Translations/AdminTranslations.php:370 +#: ../../src/Translations/AdminTranslations.php:371 msgid "Settings" msgstr "Configurar" -#: ../../src/Translations/AdminTranslations.php:371 +#: ../../src/Translations/AdminTranslations.php:372 msgid "Continue" msgstr "Continuar" -#: ../../src/Translations/AdminTranslations.php:372 +#: ../../src/Translations/AdminTranslations.php:373 msgid "Enabled" msgstr "Activado" -#: ../../src/Translations/AdminTranslations.php:373 +#: ../../src/Translations/AdminTranslations.php:374 msgid "Disabled" msgstr "Inactivo" -#: ../../src/Translations/AdminTranslations.php:374 +#: ../../src/Translations/AdminTranslations.php:375 msgid "Configure your credentials to enable Mercado Pago payment methods." msgstr "" "Completa tus credenciales para habilitar los medios de pago Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:387, -#: ../../src/Translations/AdminTranslations.php:393 +#: ../../src/Translations/AdminTranslations.php:388, +#: ../../src/Translations/AdminTranslations.php:394 msgid "The checkout is" msgstr "El checkout está" -#: ../../src/Translations/AdminTranslations.php:388, -#: ../../src/Translations/AdminTranslations.php:400, -#: ../../src/Translations/AdminTranslations.php:515, -#: ../../src/Translations/AdminTranslations.php:527, -#: ../../src/Translations/AdminTranslations.php:539, -#: ../../src/Translations/AdminTranslations.php:605, -#: ../../src/Translations/AdminTranslations.php:617, -#: ../../src/Translations/AdminTranslations.php:629, -#: ../../src/Translations/AdminTranslations.php:705, -#: ../../src/Translations/AdminTranslations.php:766, -#: ../../src/Translations/AdminTranslations.php:825, -#: ../../src/Translations/AdminTranslations.php:837 +#: ../../src/Translations/AdminTranslations.php:389, +#: ../../src/Translations/AdminTranslations.php:401, +#: ../../src/Translations/AdminTranslations.php:516, +#: ../../src/Translations/AdminTranslations.php:528, +#: ../../src/Translations/AdminTranslations.php:540, +#: ../../src/Translations/AdminTranslations.php:606, +#: ../../src/Translations/AdminTranslations.php:618, +#: ../../src/Translations/AdminTranslations.php:630, +#: ../../src/Translations/AdminTranslations.php:706, +#: ../../src/Translations/AdminTranslations.php:767, +#: ../../src/Translations/AdminTranslations.php:826, +#: ../../src/Translations/AdminTranslations.php:838 msgid "enabled" msgstr "activo" -#: ../../src/Translations/AdminTranslations.php:394, +#: ../../src/Translations/AdminTranslations.php:395, +#: ../../src/Translations/AdminTranslations.php:407, +#: ../../src/Translations/AdminTranslations.php:522, +#: ../../src/Translations/AdminTranslations.php:534, +#: ../../src/Translations/AdminTranslations.php:546, +#: ../../src/Translations/AdminTranslations.php:612, +#: ../../src/Translations/AdminTranslations.php:624, +#: ../../src/Translations/AdminTranslations.php:636, +#: ../../src/Translations/AdminTranslations.php:712, +#: ../../src/Translations/AdminTranslations.php:773, +#: ../../src/Translations/AdminTranslations.php:832, +#: ../../src/Translations/AdminTranslations.php:844 +msgid "disabled" +msgstr "inactivo" + +#: ../../src/Translations/AdminTranslations.php:400, #: ../../src/Translations/AdminTranslations.php:406, -#: ../../src/Translations/AdminTranslations.php:521, +#: ../../src/Translations/AdminTranslations.php:527, #: ../../src/Translations/AdminTranslations.php:533, -#: ../../src/Translations/AdminTranslations.php:545, -#: ../../src/Translations/AdminTranslations.php:611, +#: ../../src/Translations/AdminTranslations.php:617, #: ../../src/Translations/AdminTranslations.php:623, -#: ../../src/Translations/AdminTranslations.php:635, +#: ../../src/Translations/AdminTranslations.php:705, #: ../../src/Translations/AdminTranslations.php:711, +#: ../../src/Translations/AdminTranslations.php:766, #: ../../src/Translations/AdminTranslations.php:772, -#: ../../src/Translations/AdminTranslations.php:831, +#: ../../src/Translations/AdminTranslations.php:837, #: ../../src/Translations/AdminTranslations.php:843 -msgid "disabled" -msgstr "inactivo" - -#: ../../src/Translations/AdminTranslations.php:399, -#: ../../src/Translations/AdminTranslations.php:405, -#: ../../src/Translations/AdminTranslations.php:526, -#: ../../src/Translations/AdminTranslations.php:532, -#: ../../src/Translations/AdminTranslations.php:616, -#: ../../src/Translations/AdminTranslations.php:622, -#: ../../src/Translations/AdminTranslations.php:704, -#: ../../src/Translations/AdminTranslations.php:710, -#: ../../src/Translations/AdminTranslations.php:765, -#: ../../src/Translations/AdminTranslations.php:771, -#: ../../src/Translations/AdminTranslations.php:836, -#: ../../src/Translations/AdminTranslations.php:842 msgid "Currency conversion is" msgstr "Conversión de moneda está" -#: ../../src/Translations/AdminTranslations.php:411, -#: ../../src/Translations/AdminTranslations.php:417 +#: ../../src/Translations/AdminTranslations.php:412, +#: ../../src/Translations/AdminTranslations.php:418 msgid "The buyer" msgstr "El comprador" -#: ../../src/Translations/AdminTranslations.php:412 +#: ../../src/Translations/AdminTranslations.php:413 msgid "will be automatically redirected to the store" msgstr "será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:418 +#: ../../src/Translations/AdminTranslations.php:419 msgid "will not be automatically redirected to the store" msgstr "no será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:424, -#: ../../src/Translations/AdminTranslations.php:430, -#: ../../src/Translations/AdminTranslations.php:640, -#: ../../src/Translations/AdminTranslations.php:646 +#: ../../src/Translations/AdminTranslations.php:425, +#: ../../src/Translations/AdminTranslations.php:431, +#: ../../src/Translations/AdminTranslations.php:641, +#: ../../src/Translations/AdminTranslations.php:647 msgid "Pending payments" msgstr "Los pagos pendientes" -#: ../../src/Translations/AdminTranslations.php:425, -#: ../../src/Translations/AdminTranslations.php:641 +#: ../../src/Translations/AdminTranslations.php:426, +#: ../../src/Translations/AdminTranslations.php:642 msgid "will be automatically declined" msgstr "se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:431, -#: ../../src/Translations/AdminTranslations.php:647 +#: ../../src/Translations/AdminTranslations.php:432, +#: ../../src/Translations/AdminTranslations.php:648 msgid "will not be automatically declined" msgstr "no se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:435, -#: ../../src/Translations/AdminTranslations.php:450 +#: ../../src/Translations/AdminTranslations.php:436, +#: ../../src/Translations/AdminTranslations.php:451 msgid "Your saved cards or money in Mercado Pago" msgstr "Compras con tarjetas guardadas o saldo en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:436, -#: ../../src/Translations/AdminTranslations.php:438 +#: ../../src/Translations/AdminTranslations.php:437, +#: ../../src/Translations/AdminTranslations.php:439 msgid "Debit, Credit and invoice in Mercado Pago environment" msgstr "Débito, crédito y efectivo, en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:437 +#: ../../src/Translations/AdminTranslations.php:438 msgid "Mercado Pago - Checkout Pro" msgstr "Mercado Pago - Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:439 +#: ../../src/Translations/AdminTranslations.php:440 msgid "Checkout Pro" msgstr "Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:440 +#: ../../src/Translations/AdminTranslations.php:441 msgid "" "With Checkout Pro you sell with all the safety inside Mercado Pago " "environment." @@ -632,23 +642,13 @@ msgstr "" "Con el Checkout Pro, podrás vender con toda la seguridad, dentro de Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:441, -#: ../../src/Translations/AdminTranslations.php:555, -#: ../../src/Translations/AdminTranslations.php:720, -#: ../../src/Translations/AdminTranslations.php:781, -#: ../../src/Translations/AdminTranslations.php:861 -msgid "Mercado Pago plugin general settings" -msgstr "Configuraciones generales del plugin de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:442, #: ../../src/Translations/AdminTranslations.php:556, -#: ../../src/Translations/AdminTranslations.php:658, #: ../../src/Translations/AdminTranslations.php:721, #: ../../src/Translations/AdminTranslations.php:782, #: ../../src/Translations/AdminTranslations.php:862 -msgid "" -"Set the deadlines and fees, test your store or access the Plugin manual." -msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." +msgid "Mercado Pago plugin general settings" +msgstr "Configuraciones generales del plugin de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:443, #: ../../src/Translations/AdminTranslations.php:557, @@ -656,16 +656,26 @@ msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:722, #: ../../src/Translations/AdminTranslations.php:783, #: ../../src/Translations/AdminTranslations.php:863 -msgid "Go to Settings" -msgstr "Ir a Configuraciones" +msgid "" +"Set the deadlines and fees, test your store or access the Plugin manual." +msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:444, +#: ../../src/Translations/AdminTranslations.php:558, #: ../../src/Translations/AdminTranslations.php:660, +#: ../../src/Translations/AdminTranslations.php:723, +#: ../../src/Translations/AdminTranslations.php:784, #: ../../src/Translations/AdminTranslations.php:864 +msgid "Go to Settings" +msgstr "Ir a Configuraciones" + +#: ../../src/Translations/AdminTranslations.php:445, +#: ../../src/Translations/AdminTranslations.php:661, +#: ../../src/Translations/AdminTranslations.php:865 msgid "Enable the checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:445 +#: ../../src/Translations/AdminTranslations.php:446 msgid "" "By disabling it, you will disable all payments from Mercado Pago Checkout at " "Mercado Pago website by redirect." @@ -673,40 +683,31 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago del checkout en el " "sitio web de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:448, -#: ../../src/Translations/AdminTranslations.php:566, -#: ../../src/Translations/AdminTranslations.php:664, -#: ../../src/Translations/AdminTranslations.php:727, -#: ../../src/Translations/AdminTranslations.php:788, -#: ../../src/Translations/AdminTranslations.php:868 -msgid "Title in the store Checkout" -msgstr "Título en el checkout de la tienda" - #: ../../src/Translations/AdminTranslations.php:449, +#: ../../src/Translations/AdminTranslations.php:567, #: ../../src/Translations/AdminTranslations.php:665, #: ../../src/Translations/AdminTranslations.php:728, #: ../../src/Translations/AdminTranslations.php:789, #: ../../src/Translations/AdminTranslations.php:869 +msgid "Title in the store Checkout" +msgstr "Título en el checkout de la tienda" + +#: ../../src/Translations/AdminTranslations.php:450, +#: ../../src/Translations/AdminTranslations.php:666, +#: ../../src/Translations/AdminTranslations.php:729, +#: ../../src/Translations/AdminTranslations.php:790, +#: ../../src/Translations/AdminTranslations.php:870 msgid "Change the display text in Checkout, maximum characters: 85" msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85" -#: ../../src/Translations/AdminTranslations.php:451, -#: ../../src/Translations/AdminTranslations.php:569, -#: ../../src/Translations/AdminTranslations.php:667, -#: ../../src/Translations/AdminTranslations.php:730, -#: ../../src/Translations/AdminTranslations.php:791, -#: ../../src/Translations/AdminTranslations.php:871 -msgid "The text inserted here will not be translated to other languages" -msgstr "El texto insertado aquí no se traducirá a otros idiomas" - #: ../../src/Translations/AdminTranslations.php:452, #: ../../src/Translations/AdminTranslations.php:570, -#: ../../src/Translations/AdminTranslations.php:671, +#: ../../src/Translations/AdminTranslations.php:668, #: ../../src/Translations/AdminTranslations.php:731, #: ../../src/Translations/AdminTranslations.php:792, -#: ../../src/Translations/AdminTranslations.php:885 -msgid "Convert Currency" -msgstr "Convertir moneda" +#: ../../src/Translations/AdminTranslations.php:872 +msgid "The text inserted here will not be translated to other languages" +msgstr "El texto insertado aquí no se traducirá a otros idiomas" #: ../../src/Translations/AdminTranslations.php:453, #: ../../src/Translations/AdminTranslations.php:571, @@ -714,6 +715,15 @@ msgstr "Convertir moneda" #: ../../src/Translations/AdminTranslations.php:732, #: ../../src/Translations/AdminTranslations.php:793, #: ../../src/Translations/AdminTranslations.php:886 +msgid "Convert Currency" +msgstr "Convertir moneda" + +#: ../../src/Translations/AdminTranslations.php:454, +#: ../../src/Translations/AdminTranslations.php:572, +#: ../../src/Translations/AdminTranslations.php:673, +#: ../../src/Translations/AdminTranslations.php:733, +#: ../../src/Translations/AdminTranslations.php:794, +#: ../../src/Translations/AdminTranslations.php:887 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." @@ -721,100 +731,100 @@ 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." -#: ../../src/Translations/AdminTranslations.php:456 +#: ../../src/Translations/AdminTranslations.php:457 msgid "Choose the payment methods you accept in your store" msgstr "Elige los medios de pago que se aceptan en la tienda" -#: ../../src/Translations/AdminTranslations.php:457 +#: ../../src/Translations/AdminTranslations.php:458 msgid "Enable the payment methods available to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../src/Translations/AdminTranslations.php:458 +#: ../../src/Translations/AdminTranslations.php:459 msgid "Credit Cards" msgstr "Tarjetas de crédito" -#: ../../src/Translations/AdminTranslations.php:459 +#: ../../src/Translations/AdminTranslations.php:460 msgid "Debit Cards" msgstr "Tarjetas de débito" -#: ../../src/Translations/AdminTranslations.php:460 +#: ../../src/Translations/AdminTranslations.php:461 msgid "Other Payment Methods" msgstr "Otros medios" -#: ../../src/Translations/AdminTranslations.php:461 +#: ../../src/Translations/AdminTranslations.php:462 msgid "Maximum number of installments" msgstr "Máximo de cuotas" -#: ../../src/Translations/AdminTranslations.php:462 +#: ../../src/Translations/AdminTranslations.php:463 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?" -#: ../../src/Translations/AdminTranslations.php:463 +#: ../../src/Translations/AdminTranslations.php:464 msgid "1 installment" msgstr "1 cuota" -#: ../../src/Translations/AdminTranslations.php:464 +#: ../../src/Translations/AdminTranslations.php:465 msgid "2 installments" msgstr "2 cuotas" -#: ../../src/Translations/AdminTranslations.php:465 +#: ../../src/Translations/AdminTranslations.php:466 msgid "3 installments" msgstr "3 cuotas" -#: ../../src/Translations/AdminTranslations.php:466 +#: ../../src/Translations/AdminTranslations.php:467 msgid "4 installments" msgstr "4 cuotas" -#: ../../src/Translations/AdminTranslations.php:467 +#: ../../src/Translations/AdminTranslations.php:468 msgid "5 installments" msgstr "5 cuotas" -#: ../../src/Translations/AdminTranslations.php:468 +#: ../../src/Translations/AdminTranslations.php:469 msgid "6 installments" msgstr "6 cuotas" -#: ../../src/Translations/AdminTranslations.php:469 +#: ../../src/Translations/AdminTranslations.php:470 msgid "10 installments" msgstr "10 cuotas" -#: ../../src/Translations/AdminTranslations.php:470 +#: ../../src/Translations/AdminTranslations.php:471 msgid "12 installments" msgstr "12 cuotas" -#: ../../src/Translations/AdminTranslations.php:471 +#: ../../src/Translations/AdminTranslations.php:472 msgid "15 installments" msgstr "15 cuotas" -#: ../../src/Translations/AdminTranslations.php:472 +#: ../../src/Translations/AdminTranslations.php:473 msgid "18 installments" msgstr "18 cuotas" -#: ../../src/Translations/AdminTranslations.php:473 +#: ../../src/Translations/AdminTranslations.php:474 msgid "24 installments" msgstr "24 cuotas" -#: ../../src/Translations/AdminTranslations.php:474, -#: ../../src/Translations/AdminTranslations.php:584 +#: ../../src/Translations/AdminTranslations.php:475, +#: ../../src/Translations/AdminTranslations.php:585 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:475, -#: ../../src/Translations/AdminTranslations.php:585, -#: ../../src/Translations/AdminTranslations.php:681, -#: ../../src/Translations/AdminTranslations.php:738, -#: ../../src/Translations/AdminTranslations.php:797, -#: ../../src/Translations/AdminTranslations.php:893 +#: ../../src/Translations/AdminTranslations.php:476, +#: ../../src/Translations/AdminTranslations.php:586, +#: ../../src/Translations/AdminTranslations.php:682, +#: ../../src/Translations/AdminTranslations.php:739, +#: ../../src/Translations/AdminTranslations.php:798, +#: ../../src/Translations/AdminTranslations.php:894 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." -#: ../../src/Translations/AdminTranslations.php:476 +#: ../../src/Translations/AdminTranslations.php:477 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../src/Translations/AdminTranslations.php:477 +#: ../../src/Translations/AdminTranslations.php:478 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -822,39 +832,39 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../src/Translations/AdminTranslations.php:478 +#: ../../src/Translations/AdminTranslations.php:479 msgid "Redirect" msgstr "Redirect" -#: ../../src/Translations/AdminTranslations.php:479 +#: ../../src/Translations/AdminTranslations.php:480 msgid "Modal" msgstr "Modal" -#: ../../src/Translations/AdminTranslations.php:480 +#: ../../src/Translations/AdminTranslations.php:481 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../src/Translations/AdminTranslations.php:481 +#: ../../src/Translations/AdminTranslations.php:482 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?" -#: ../../src/Translations/AdminTranslations.php:484 +#: ../../src/Translations/AdminTranslations.php:485 msgid "Success URL" msgstr "URL de éxito" -#: ../../src/Translations/AdminTranslations.php:485 +#: ../../src/Translations/AdminTranslations.php:486 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." -#: ../../src/Translations/AdminTranslations.php:486 +#: ../../src/Translations/AdminTranslations.php:487 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../src/Translations/AdminTranslations.php:487 +#: ../../src/Translations/AdminTranslations.php:488 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 " @@ -864,11 +874,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../src/Translations/AdminTranslations.php:488 +#: ../../src/Translations/AdminTranslations.php:489 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../src/Translations/AdminTranslations.php:489 +#: ../../src/Translations/AdminTranslations.php:490 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -876,13 +886,13 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../src/Translations/AdminTranslations.php:490, -#: ../../src/Translations/AdminTranslations.php:682 +#: ../../src/Translations/AdminTranslations.php:491, +#: ../../src/Translations/AdminTranslations.php:683 msgid "Automatic decline of payments without instant approval" msgstr "Rechazo automático de pagos sin aprobación instantanea" -#: ../../src/Translations/AdminTranslations.php:491, -#: ../../src/Translations/AdminTranslations.php:683 +#: ../../src/Translations/AdminTranslations.php:492, +#: ../../src/Translations/AdminTranslations.php:684 msgid "" "Enable it if you want to automatically decline payments that are not " "instantly approved by banks or other institutions." @@ -890,55 +900,46 @@ msgstr "" "Actívalo si quieres rechazar automáticamente los pagos que no son aprobados " "instantáneamente por bancos u otros compradores." -#: ../../src/Translations/AdminTranslations.php:492 +#: ../../src/Translations/AdminTranslations.php:493 msgid "Debit, Credit and Invoice in Mercado Pago environment." msgstr "Débito, crédito y efectivo, en Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:495, -#: ../../src/Translations/AdminTranslations.php:586, -#: ../../src/Translations/AdminTranslations.php:686, -#: ../../src/Translations/AdminTranslations.php:747, -#: ../../src/Translations/AdminTranslations.php:806, -#: ../../src/Translations/AdminTranslations.php:894 -msgid "Discount in Mercado Pago Checkouts" -msgstr "Descuento en los checkouts de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:496, #: ../../src/Translations/AdminTranslations.php:587, #: ../../src/Translations/AdminTranslations.php:687, #: ../../src/Translations/AdminTranslations.php:748, #: ../../src/Translations/AdminTranslations.php:807, #: ../../src/Translations/AdminTranslations.php:895 -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." +msgid "Discount in Mercado Pago Checkouts" +msgstr "Descuento en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:497, -#: ../../src/Translations/AdminTranslations.php:500, #: ../../src/Translations/AdminTranslations.php:588, -#: ../../src/Translations/AdminTranslations.php:591, #: ../../src/Translations/AdminTranslations.php:688, -#: ../../src/Translations/AdminTranslations.php:691, #: ../../src/Translations/AdminTranslations.php:749, -#: ../../src/Translations/AdminTranslations.php:752, #: ../../src/Translations/AdminTranslations.php:808, -#: ../../src/Translations/AdminTranslations.php:811, -#: ../../src/Translations/AdminTranslations.php:896, -#: ../../src/Translations/AdminTranslations.php:899 -msgid "Activate and show this information on Mercado Pago Checkout" -msgstr "Activar y mostrar esa información en el checkout Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:896 +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." #: ../../src/Translations/AdminTranslations.php:498, +#: ../../src/Translations/AdminTranslations.php:501, #: ../../src/Translations/AdminTranslations.php:589, +#: ../../src/Translations/AdminTranslations.php:592, #: ../../src/Translations/AdminTranslations.php:689, +#: ../../src/Translations/AdminTranslations.php:692, #: ../../src/Translations/AdminTranslations.php:750, +#: ../../src/Translations/AdminTranslations.php:753, #: ../../src/Translations/AdminTranslations.php:809, -#: ../../src/Translations/AdminTranslations.php:897 -msgid "Commission in Mercado Pago Checkouts" -msgstr "Comisiones en los checkouts de Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:812, +#: ../../src/Translations/AdminTranslations.php:897, +#: ../../src/Translations/AdminTranslations.php:900 +msgid "Activate and show this information on Mercado Pago Checkout" +msgstr "Activar y mostrar esa información en el checkout Mercado Pago" #: ../../src/Translations/AdminTranslations.php:499, #: ../../src/Translations/AdminTranslations.php:590, @@ -946,6 +947,15 @@ msgstr "Comisiones en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:751, #: ../../src/Translations/AdminTranslations.php:810, #: ../../src/Translations/AdminTranslations.php:898 +msgid "Commission in Mercado Pago Checkouts" +msgstr "Comisiones en los checkouts de Mercado Pago" + +#: ../../src/Translations/AdminTranslations.php:500, +#: ../../src/Translations/AdminTranslations.php:591, +#: ../../src/Translations/AdminTranslations.php:691, +#: ../../src/Translations/AdminTranslations.php:752, +#: ../../src/Translations/AdminTranslations.php:811, +#: ../../src/Translations/AdminTranslations.php:899 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -953,35 +963,35 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:501 +#: ../../src/Translations/AdminTranslations.php:502 msgid "This seems to be an invalid URL" msgstr "Esto parece ser una URL no válida" -#: ../../src/Translations/AdminTranslations.php:514, -#: ../../src/Translations/AdminTranslations.php:520 +#: ../../src/Translations/AdminTranslations.php:515, +#: ../../src/Translations/AdminTranslations.php:521 msgid "Payment in installments without card in the store checkout is" msgstr "Cuotas sin tarjeta en el checkout de la tienda está" -#: ../../src/Translations/AdminTranslations.php:538, -#: ../../src/Translations/AdminTranslations.php:544 +#: ../../src/Translations/AdminTranslations.php:539, +#: ../../src/Translations/AdminTranslations.php:545 msgid "The installments without card component is" msgstr "El componente de cuotas sin tarjeta está" -#: ../../src/Translations/AdminTranslations.php:549, -#: ../../src/Translations/AdminTranslations.php:553 +#: ../../src/Translations/AdminTranslations.php:550, +#: ../../src/Translations/AdminTranslations.php:554 msgid "Installments without card" msgstr "Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:550, -#: ../../src/Translations/AdminTranslations.php:552 +#: ../../src/Translations/AdminTranslations.php:551, +#: ../../src/Translations/AdminTranslations.php:553 msgid "Customers who buy on spot and pay later in up to 12 installments" msgstr "Tus clientes compran al instante y pagan después en hasta 12 cuotas" -#: ../../src/Translations/AdminTranslations.php:551 +#: ../../src/Translations/AdminTranslations.php:552 msgid "Mercado Pago - Installments without card" msgstr "Mercado Pago - Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:554 +#: ../../src/Translations/AdminTranslations.php:555 msgid "" "Reach millions of buyers by offering Mercado Credito as a payment method. " "Our flexible payment options give your customers the possibility to buy " @@ -995,11 +1005,11 @@ msgstr "" "necesidad de utilizar una tarjeta. Para tu negocio, la aprobación de la " "compra es inmediata y está garantizada." -#: ../../src/Translations/AdminTranslations.php:558 +#: ../../src/Translations/AdminTranslations.php:559 msgid "Activate installments without card in your store checkout" msgstr "Activar cuotas sin tarjeta en el checkout de tu tienda" -#: ../../src/Translations/AdminTranslations.php:559 +#: ../../src/Translations/AdminTranslations.php:560 msgid "" "Offer the option to pay in installments without card directly from your " "store's checkout." @@ -1007,37 +1017,37 @@ msgstr "" "Ofrece la opción de pago en cuotas sin tarjeta directo desde el checkout de " "tu tienda." -#: ../../src/Translations/AdminTranslations.php:562 +#: ../../src/Translations/AdminTranslations.php:563 msgid "Checkout visualization" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:563, -#: ../../src/Translations/AdminTranslations.php:583 +#: ../../src/Translations/AdminTranslations.php:564, +#: ../../src/Translations/AdminTranslations.php:584 msgid "Check below how this feature will be displayed to your customers:" msgstr "A continuación verás cómo este recurso aparecerá para tus clientes:" -#: ../../src/Translations/AdminTranslations.php:564 +#: ../../src/Translations/AdminTranslations.php:565 msgid "Checkout Preview" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:565 +#: ../../src/Translations/AdminTranslations.php:566 msgid "PREVIEW" msgstr "DEMO" -#: ../../src/Translations/AdminTranslations.php:567 +#: ../../src/Translations/AdminTranslations.php:568 msgid "It is possible to edit the title. Maximum of 85 characters." msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85." -#: ../../src/Translations/AdminTranslations.php:568 +#: ../../src/Translations/AdminTranslations.php:569 msgid "Checkout without card" msgstr "Hasta 12 pagos sin tarjeta con Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:574 +#: ../../src/Translations/AdminTranslations.php:575 msgid "" "Inform your customers about the option of paying in installments without card" msgstr "Informa a tus clientes sobre la opción de cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:575 +#: ../../src/Translations/AdminTranslations.php:576 msgid "" "By activating the installments without card component, you increase your " "chances of selling." @@ -1045,62 +1055,62 @@ msgstr "" "Al activar el componente de cuotas sin tarjeta,, aumentarás tus " "posibilidades de venta." -#: ../../src/Translations/AdminTranslations.php:578 +#: ../../src/Translations/AdminTranslations.php:579 msgid "Banner on the product page | Computer version" msgstr "Componente en la página del producto | Versión para computadora" -#: ../../src/Translations/AdminTranslations.php:579 +#: ../../src/Translations/AdminTranslations.php:580 msgid "Banner on the product page | Cellphone version" msgstr "Componente en la página del producto | Versión para celular" -#: ../../src/Translations/AdminTranslations.php:580 +#: ../../src/Translations/AdminTranslations.php:581 msgid "Computer" msgstr "Computadora" -#: ../../src/Translations/AdminTranslations.php:581 +#: ../../src/Translations/AdminTranslations.php:582 msgid "Mobile" msgstr "Celular" -#: ../../src/Translations/AdminTranslations.php:582 +#: ../../src/Translations/AdminTranslations.php:583 msgid "Component visualization" msgstr "Visualización del componente" -#: ../../src/Translations/AdminTranslations.php:604, -#: ../../src/Translations/AdminTranslations.php:610 +#: ../../src/Translations/AdminTranslations.php:605, +#: ../../src/Translations/AdminTranslations.php:611 msgid "Transparent Checkout for credit cards is" msgstr "El Checkout Transparente de las tarjetas de crédito está" -#: ../../src/Translations/AdminTranslations.php:628, -#: ../../src/Translations/AdminTranslations.php:634 +#: ../../src/Translations/AdminTranslations.php:629, +#: ../../src/Translations/AdminTranslations.php:635 msgid "Payments via Mercado Pago accounts are" msgstr "Los pagos a través de la cuenta de Mercado Pago están" -#: ../../src/Translations/AdminTranslations.php:651, -#: ../../src/Translations/AdminTranslations.php:666 +#: ../../src/Translations/AdminTranslations.php:652, +#: ../../src/Translations/AdminTranslations.php:667 msgid "Debit and Credit" msgstr "Débito e crédito" -#: ../../src/Translations/AdminTranslations.php:652, -#: ../../src/Translations/AdminTranslations.php:654, -#: ../../src/Translations/AdminTranslations.php:716, -#: ../../src/Translations/AdminTranslations.php:777, -#: ../../src/Translations/AdminTranslations.php:856, -#: ../../src/Translations/AdminTranslations.php:858 -msgid "Transparent Checkout in your store environment" -msgstr "Checkout Transparente en tu tienda" - #: ../../src/Translations/AdminTranslations.php:653, +#: ../../src/Translations/AdminTranslations.php:655, #: ../../src/Translations/AdminTranslations.php:717, #: ../../src/Translations/AdminTranslations.php:778, -#: ../../src/Translations/AdminTranslations.php:857 +#: ../../src/Translations/AdminTranslations.php:857, +#: ../../src/Translations/AdminTranslations.php:859 +msgid "Transparent Checkout in your store environment" +msgstr "Checkout Transparente en tu tienda" + +#: ../../src/Translations/AdminTranslations.php:654, +#: ../../src/Translations/AdminTranslations.php:718, +#: ../../src/Translations/AdminTranslations.php:779, +#: ../../src/Translations/AdminTranslations.php:858 msgid "Mercado pago - Customized Checkout" msgstr "Mercado Pago - Checkout Personalizado" -#: ../../src/Translations/AdminTranslations.php:655 +#: ../../src/Translations/AdminTranslations.php:656 msgid "Transparent Checkout | Credit card" msgstr "Checkout Transparente | Tarjeta de Crédito" -#: ../../src/Translations/AdminTranslations.php:656 +#: ../../src/Translations/AdminTranslations.php:657 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and with the security from Mercado Pago." @@ -1108,11 +1118,11 @@ msgstr "" "Con el Checkout Transparente, puedes vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:657 +#: ../../src/Translations/AdminTranslations.php:658 msgid "Mercado Pago Plugin general settings" msgstr "Configuraciones generales del plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:661 +#: ../../src/Translations/AdminTranslations.php:662 msgid "" "By disabling it, you will disable all credit cards payments from Mercado " "Pago Transparent Checkout." @@ -1120,11 +1130,11 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:668 +#: ../../src/Translations/AdminTranslations.php:669 msgid "Installments Fees" msgstr "Tasas de pago en cuotas" -#: ../../src/Translations/AdminTranslations.php:669 +#: ../../src/Translations/AdminTranslations.php:670 msgid "" "Set installment fees and whether they will be charged from the store or from " "the buyer." @@ -1132,15 +1142,15 @@ msgstr "" "Configura las tasas de las cuotas y si se las cobrarán a la tienda o al " "comprador." -#: ../../src/Translations/AdminTranslations.php:670 +#: ../../src/Translations/AdminTranslations.php:671 msgid "Set fees" msgstr "Configurar tasas" -#: ../../src/Translations/AdminTranslations.php:675 +#: ../../src/Translations/AdminTranslations.php:676 msgid "Payments via Mercado Pago account" msgstr "Pagos a través de la cuenta de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:676 +#: ../../src/Translations/AdminTranslations.php:677 msgid "" "Your customers pay faster with saved cards, money balance or other available " "methods in their Mercado Pago accounts." @@ -1148,26 +1158,26 @@ msgstr "" "Tus clientes pagan más rápido con tarjetas guardadas, dinero disponible o " "con otros medios disponibles en sus cuentas de MP." -#: ../../src/Translations/AdminTranslations.php:679 +#: ../../src/Translations/AdminTranslations.php:680 msgid "Check an example of how it will appear in your store:" msgstr "Conoce un ejemplo de cómo aparecerá en la tienda:" -#: ../../src/Translations/AdminTranslations.php:680 +#: ../../src/Translations/AdminTranslations.php:681 msgid "Advanced configuration of the personalized payment experience" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:715, -#: ../../src/Translations/AdminTranslations.php:729 +#: ../../src/Translations/AdminTranslations.php:716, +#: ../../src/Translations/AdminTranslations.php:730 msgid "Invoice" msgstr "Efectivo" -#: ../../src/Translations/AdminTranslations.php:718 +#: ../../src/Translations/AdminTranslations.php:719 msgid "Transparent Checkout | Invoice or Loterica" msgstr "Checkout Transparente | Efectivo" -#: ../../src/Translations/AdminTranslations.php:719, -#: ../../src/Translations/AdminTranslations.php:780, -#: ../../src/Translations/AdminTranslations.php:860 +#: ../../src/Translations/AdminTranslations.php:720, +#: ../../src/Translations/AdminTranslations.php:781, +#: ../../src/Translations/AdminTranslations.php:861 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and all the safety from Mercado Pago." @@ -1175,12 +1185,12 @@ msgstr "" "Con el Checkout Transparente, podrás vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:723, -#: ../../src/Translations/AdminTranslations.php:784 +#: ../../src/Translations/AdminTranslations.php:724, +#: ../../src/Translations/AdminTranslations.php:785 msgid "Enable the Checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:724 +#: ../../src/Translations/AdminTranslations.php:725 msgid "" "By disabling it, you will disable all invoice payments from Mercado Pago " "Transparent Checkout." @@ -1188,34 +1198,34 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago en efectivo en el " "Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:725 +#: ../../src/Translations/AdminTranslations.php:726 msgid "The transparent checkout for tickets is enabled." msgstr "El Checkout Transparente está activo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:726 +#: ../../src/Translations/AdminTranslations.php:727 msgid "The transparent checkout for tickets is disabled." msgstr "El Checkout Transparente está inactivo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:735 +#: ../../src/Translations/AdminTranslations.php:736 msgid "Payment Due" msgstr "Fecha de pago" -#: ../../src/Translations/AdminTranslations.php:736 +#: ../../src/Translations/AdminTranslations.php:737 msgid "In how many days will cash payments expire." msgstr "En cuántos días vencerán los pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:737 +#: ../../src/Translations/AdminTranslations.php:738 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../src/Translations/AdminTranslations.php:739, -#: ../../src/Translations/AdminTranslations.php:798 +#: ../../src/Translations/AdminTranslations.php:740, +#: ../../src/Translations/AdminTranslations.php:799 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../src/Translations/AdminTranslations.php:740, -#: ../../src/Translations/AdminTranslations.php:799 +#: ../../src/Translations/AdminTranslations.php:741, +#: ../../src/Translations/AdminTranslations.php:800 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 " @@ -1225,41 +1235,41 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../src/Translations/AdminTranslations.php:741, -#: ../../src/Translations/AdminTranslations.php:800 +#: ../../src/Translations/AdminTranslations.php:742, +#: ../../src/Translations/AdminTranslations.php:801 msgid "Reduce inventory is enabled." msgstr "Reducir inventario está activo." -#: ../../src/Translations/AdminTranslations.php:742, -#: ../../src/Translations/AdminTranslations.php:801 +#: ../../src/Translations/AdminTranslations.php:743, +#: ../../src/Translations/AdminTranslations.php:802 msgid "Reduce inventory is disabled." msgstr "Reducir inventario está inactivo." -#: ../../src/Translations/AdminTranslations.php:744, -#: ../../src/Translations/AdminTranslations.php:803 +#: ../../src/Translations/AdminTranslations.php:745, +#: ../../src/Translations/AdminTranslations.php:804 msgid "Enable the available payment methods" msgstr "Habilita los medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:745, -#: ../../src/Translations/AdminTranslations.php:804 +#: ../../src/Translations/AdminTranslations.php:746, +#: ../../src/Translations/AdminTranslations.php:805 msgid "Choose the available payment methods in your store." msgstr "Elige los medios de pago que se aceptan en la tienda." -#: ../../src/Translations/AdminTranslations.php:746, -#: ../../src/Translations/AdminTranslations.php:805 +#: ../../src/Translations/AdminTranslations.php:747, +#: ../../src/Translations/AdminTranslations.php:806 msgid "All payment methods" msgstr "Medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:776, -#: ../../src/Translations/AdminTranslations.php:790 +#: ../../src/Translations/AdminTranslations.php:777, +#: ../../src/Translations/AdminTranslations.php:791 msgid "PSE" msgstr "PSE" -#: ../../src/Translations/AdminTranslations.php:779 +#: ../../src/Translations/AdminTranslations.php:780 msgid "Transparent Checkout PSE" msgstr "Pago transparente PSE" -#: ../../src/Translations/AdminTranslations.php:785 +#: ../../src/Translations/AdminTranslations.php:786 msgid "" "By deactivating it, you will disable PSE payments from Mercado Pago " "Transparent Checkout." @@ -1267,49 +1277,49 @@ msgstr "" "Al desactivarlo, desactivará los pagos PSE de Mercado Pago Transparente " "Checkout." -#: ../../src/Translations/AdminTranslations.php:786 +#: ../../src/Translations/AdminTranslations.php:787 msgid "The transparent checkout for PSE is enabled." msgstr "El Checkout Transparente está activo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:787 +#: ../../src/Translations/AdminTranslations.php:788 msgid "The transparent checkout for PSE is disabled." msgstr "El Checkout Transparente está inactivo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:796 +#: ../../src/Translations/AdminTranslations.php:797 msgid "Advanced configuration of the PSE payment experience" msgstr "Configuración avanzada de la experiencia de pago PSE" -#: ../../src/Translations/AdminTranslations.php:824, -#: ../../src/Translations/AdminTranslations.php:830 +#: ../../src/Translations/AdminTranslations.php:825, +#: ../../src/Translations/AdminTranslations.php:831 msgid "The transparent checkout for Pix payment is" msgstr "El Checkout Transparente está" -#: ../../src/Translations/AdminTranslations.php:848 +#: ../../src/Translations/AdminTranslations.php:849 msgid "Go to the" msgstr "Ve al área" -#: ../../src/Translations/AdminTranslations.php:849 +#: ../../src/Translations/AdminTranslations.php:850 msgid "Your Profile" msgstr "Tu Perfil" -#: ../../src/Translations/AdminTranslations.php:850 +#: ../../src/Translations/AdminTranslations.php:851 msgid "area and choose the" msgstr "y elige la sección" -#: ../../src/Translations/AdminTranslations.php:851 +#: ../../src/Translations/AdminTranslations.php:852 msgid "Your Pix Keys section" msgstr "Tus claves Pix" -#: ../../src/Translations/AdminTranslations.php:855, -#: ../../src/Translations/AdminTranslations.php:870 +#: ../../src/Translations/AdminTranslations.php:856, +#: ../../src/Translations/AdminTranslations.php:871 msgid "Pix" msgstr "Pix" -#: ../../src/Translations/AdminTranslations.php:859 +#: ../../src/Translations/AdminTranslations.php:860 msgid "Transparent Checkout | Pix" msgstr "Checkout Transparente | Pix" -#: ../../src/Translations/AdminTranslations.php:865 +#: ../../src/Translations/AdminTranslations.php:866 msgid "" "By disabling it, you will disable all Pix payments from Mercado Pago " "Transparent Checkout." @@ -1317,85 +1327,85 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:872 +#: ../../src/Translations/AdminTranslations.php:873 msgid "Expiration for payments via Pix" msgstr "Vencimiento para pagos con Pix" -#: ../../src/Translations/AdminTranslations.php:873 +#: ../../src/Translations/AdminTranslations.php:874 msgid "Set the limit in minutes for your clients to pay via Pix." msgstr "" "Define el límite de minutos para que tus clientes puedan pagar con Pix." -#: ../../src/Translations/AdminTranslations.php:874 +#: ../../src/Translations/AdminTranslations.php:875 msgid "15 minutes" msgstr "15 minutos" -#: ../../src/Translations/AdminTranslations.php:875 +#: ../../src/Translations/AdminTranslations.php:876 msgid "30 minutes (recommended)" msgstr "30 minutos (recomendado)" -#: ../../src/Translations/AdminTranslations.php:876 +#: ../../src/Translations/AdminTranslations.php:877 msgid "60 minutes" msgstr "60 minutos" -#: ../../src/Translations/AdminTranslations.php:877 +#: ../../src/Translations/AdminTranslations.php:878 msgid "12 hours" msgstr "12 horas" -#: ../../src/Translations/AdminTranslations.php:878 +#: ../../src/Translations/AdminTranslations.php:879 msgid "24 hours" msgstr "24 horas" -#: ../../src/Translations/AdminTranslations.php:879 +#: ../../src/Translations/AdminTranslations.php:880 msgid "2 days" msgstr "2 días" -#: ../../src/Translations/AdminTranslations.php:880 +#: ../../src/Translations/AdminTranslations.php:881 msgid "3 days" msgstr "3 días" -#: ../../src/Translations/AdminTranslations.php:881 +#: ../../src/Translations/AdminTranslations.php:882 msgid "4 days" msgstr "4 días" -#: ../../src/Translations/AdminTranslations.php:882 +#: ../../src/Translations/AdminTranslations.php:883 msgid "5 days" msgstr "5 días" -#: ../../src/Translations/AdminTranslations.php:883 +#: ../../src/Translations/AdminTranslations.php:884 msgid "6 days" msgstr "6 días" -#: ../../src/Translations/AdminTranslations.php:884 +#: ../../src/Translations/AdminTranslations.php:885 msgid "7 days" msgstr "7 días" -#: ../../src/Translations/AdminTranslations.php:889 +#: ../../src/Translations/AdminTranslations.php:890 msgid "Would you like to know how Pix works?" msgstr "¿Quieres saber cómo funciona Pix?" -#: ../../src/Translations/AdminTranslations.php:890 +#: ../../src/Translations/AdminTranslations.php:891 msgid "" "We have a dedicated page where we explain how it works and its advantages." msgstr "Creamos una página que explica su funcionamiento y sus vantajas." -#: ../../src/Translations/AdminTranslations.php:891 +#: ../../src/Translations/AdminTranslations.php:892 msgid "Find out more about Pix" msgstr "Saber más sobre Pix" -#: ../../src/Translations/AdminTranslations.php:892 +#: ../../src/Translations/AdminTranslations.php:893 msgid "Advanced configuration of the Pix experience" msgstr "Configuración avanzada de la experiencia Pix" -#: ../../src/Translations/AdminTranslations.php:900 +#: ../../src/Translations/AdminTranslations.php:901 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." -#: ../../src/Translations/AdminTranslations.php:901 +#: ../../src/Translations/AdminTranslations.php:902 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../src/Translations/AdminTranslations.php:903 +#: ../../src/Translations/AdminTranslations.php:904 msgid "" "Choose which data to register as Pix keys. After registering, you can set up " "Pix in your checkout." @@ -1403,7 +1413,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el Pix en tu checkout." -#: ../../src/Translations/AdminTranslations.php:904 +#: ../../src/Translations/AdminTranslations.php:905 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1411,7 +1421,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../src/Translations/AdminTranslations.php:905 +#: ../../src/Translations/AdminTranslations.php:906 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1419,11 +1429,11 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../src/Translations/AdminTranslations.php:906 +#: ../../src/Translations/AdminTranslations.php:907 msgid "Learn more about Pix" msgstr "Más información sobre Pix" -#: ../../src/Translations/AdminTranslations.php:907 +#: ../../src/Translations/AdminTranslations.php:908 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1431,82 +1441,82 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../src/Translations/AdminTranslations.php:908 +#: ../../src/Translations/AdminTranslations.php:909 msgid "click here." msgstr "haz clic aquí." -#: ../../src/Translations/AdminTranslations.php:921 +#: ../../src/Translations/AdminTranslations.php:922 msgid "To enable test mode" msgstr "Para activar el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:923 +#: ../../src/Translations/AdminTranslations.php:924 msgid "copy your test credentials" msgstr "copia tus credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:924 +#: ../../src/Translations/AdminTranslations.php:925 msgid "and paste them above in section 1 of this page" msgstr "y pégalas en la sección 1 de esta página" -#: ../../src/Translations/AdminTranslations.php:929 +#: ../../src/Translations/AdminTranslations.php:930 msgid "Create your" msgstr "Crea tu" -#: ../../src/Translations/AdminTranslations.php:931 +#: ../../src/Translations/AdminTranslations.php:932 msgid "test user" msgstr "usuario de prueba" -#: ../../src/Translations/AdminTranslations.php:932 +#: ../../src/Translations/AdminTranslations.php:933 msgid "" "(Optional. Can be used in Production Mode and Test Mode, to test payments)" msgstr "" "(Opcional. Se puede utilizar en modo de producción y en modo de prueba, para " "probar los pagos)" -#: ../../src/Translations/AdminTranslations.php:938 +#: ../../src/Translations/AdminTranslations.php:939 msgid "Use our test cards" msgstr "Utiliza nuestras tarjetas de prueba" -#: ../../src/Translations/AdminTranslations.php:939 +#: ../../src/Translations/AdminTranslations.php:940 msgid "never use real cards" msgstr "nunca utilices tarjetas reales" -#: ../../src/Translations/AdminTranslations.php:945 +#: ../../src/Translations/AdminTranslations.php:946 msgid "Visit your store" msgstr "Visita tu tienda" -#: ../../src/Translations/AdminTranslations.php:946 +#: ../../src/Translations/AdminTranslations.php:947 msgid "to test purchases" msgstr "para testear compras" -#: ../../src/Translations/AdminTranslations.php:950 +#: ../../src/Translations/AdminTranslations.php:951 msgid "4. Test your store before you sell" msgstr "4. Testea tu tienda antes de vender" -#: ../../src/Translations/AdminTranslations.php:951 +#: ../../src/Translations/AdminTranslations.php:952 msgid "Choose how you want to operate your store:" msgstr "Elige cómo quieres operar tu tienda:" -#: ../../src/Translations/AdminTranslations.php:952 +#: ../../src/Translations/AdminTranslations.php:953 msgid "Test Mode" msgstr "Modo Test" -#: ../../src/Translations/AdminTranslations.php:953 +#: ../../src/Translations/AdminTranslations.php:954 msgid "Sale Mode (Production)" msgstr "Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:954 +#: ../../src/Translations/AdminTranslations.php:955 msgid "Mercado Pago payment methods in Production Mode" msgstr "Medios de pago Mercado Pago en Modo Produción" -#: ../../src/Translations/AdminTranslations.php:955 +#: ../../src/Translations/AdminTranslations.php:956 msgid "Mercado Pago payment methods in Test Mode" msgstr "Medios de pago Mercado Pago en Modo Test" -#: ../../src/Translations/AdminTranslations.php:956 +#: ../../src/Translations/AdminTranslations.php:957 msgid "Enter test credentials" msgstr "Ingresa las credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:957 +#: ../../src/Translations/AdminTranslations.php:958 msgid "" "Test the experience in Test Mode and then enable the Sale Mode (Production) " "to sell." @@ -1514,114 +1524,114 @@ msgstr "" "Testea la experiencia en Modo Test. Luego activa el Modo Ventas (Producción) " "para realizar ventas." -#: ../../src/Translations/AdminTranslations.php:958 +#: ../../src/Translations/AdminTranslations.php:959 msgid "Mercado Pago Checkouts disabled for real collections." msgstr "Checkouts Mercado Pago inactivos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:959 +#: ../../src/Translations/AdminTranslations.php:960 msgid "Test Mode rules." msgstr "Reglas del modo test." -#: ../../src/Translations/AdminTranslations.php:960 +#: ../../src/Translations/AdminTranslations.php:961 msgid "Mercado Pago Checkouts enabled for real collections." msgstr "Checkouts Mercado Pago activos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:961 +#: ../../src/Translations/AdminTranslations.php:962 msgid "The clients can make real purchases in your store." msgstr "Los clientes pueden hacer compras reales en tu tienda." -#: ../../src/Translations/AdminTranslations.php:966 +#: ../../src/Translations/AdminTranslations.php:967 msgid "Store in sale mode (Production)" msgstr "Tienda en Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:967 +#: ../../src/Translations/AdminTranslations.php:968 msgid "Store under test" msgstr "Tienda en Modo Test" -#: ../../src/Translations/AdminTranslations.php:968 +#: ../../src/Translations/AdminTranslations.php:969 msgid "Save changes" msgstr "Guardar cambios" -#: ../../src/Translations/AdminTranslations.php:980 +#: ../../src/Translations/AdminTranslations.php:981 msgid "Store business fields are valid" msgstr "Los campos comerciales de la tienda son válidos" -#: ../../src/Translations/AdminTranslations.php:981 +#: ../../src/Translations/AdminTranslations.php:982 msgid "Store business fields could not be validated" msgstr "Los campos comerciales de la tienda no se pudieron validar" -#: ../../src/Translations/AdminTranslations.php:982 +#: ../../src/Translations/AdminTranslations.php:983 msgid "At least one payment method is enabled" msgstr "Al menos un método de pago está habilitado" -#: ../../src/Translations/AdminTranslations.php:983 +#: ../../src/Translations/AdminTranslations.php:984 msgid "No payment method enabled" msgstr "Ningún método de pago habilitado" -#: ../../src/Translations/AdminTranslations.php:984 +#: ../../src/Translations/AdminTranslations.php:985 msgid "Credentials fields are valid" msgstr "Los campos de la credencial son válidos" -#: ../../src/Translations/AdminTranslations.php:985 +#: ../../src/Translations/AdminTranslations.php:986 msgid "Credentials fields could not be validated" msgstr "No se pudieron validar los campos de credenciales" -#: ../../src/Translations/AdminTranslations.php:997 +#: ../../src/Translations/AdminTranslations.php:998 msgid "Valid Public Key" msgstr "Public key válida" -#: ../../src/Translations/AdminTranslations.php:998 +#: ../../src/Translations/AdminTranslations.php:999 msgid "Invalid Public Key" msgstr "Public key no válida" -#: ../../src/Translations/AdminTranslations.php:999 +#: ../../src/Translations/AdminTranslations.php:1000 msgid "Valid Access Token" msgstr "Access token válido" -#: ../../src/Translations/AdminTranslations.php:1000 +#: ../../src/Translations/AdminTranslations.php:1001 msgid "Invalid Access Token" msgstr "Access token no válido" -#: ../../src/Translations/AdminTranslations.php:1012 +#: ../../src/Translations/AdminTranslations.php:1013 msgid "Credentials were updated" msgstr "Se actualizaron las credenciales" -#: ../../src/Translations/AdminTranslations.php:1013 +#: ../../src/Translations/AdminTranslations.php:1014 msgid "" "Your store has exited Test Mode and is making real sales in Production Mode." msgstr "" "Ahora su tienda está fuera del modo de prueba y está realizando ventas " "reales en el modo de producción." -#: ../../src/Translations/AdminTranslations.php:1014 +#: ../../src/Translations/AdminTranslations.php:1015 msgid "To test the store, re-enter both test credentials." msgstr "Para probar la tienda, vuelva a ingresar ambas credenciales de prueba." -#: ../../src/Translations/AdminTranslations.php:1015 +#: ../../src/Translations/AdminTranslations.php:1016 msgid "Invalid credentials" msgstr "Credenciales no válidas" -#: ../../src/Translations/AdminTranslations.php:1016 +#: ../../src/Translations/AdminTranslations.php:1017 msgid "See our manual to learn" msgstr "Consulte nuestro manual para saber" -#: ../../src/Translations/AdminTranslations.php:1017 +#: ../../src/Translations/AdminTranslations.php:1018 msgid "how to enter the credentials the right way." msgstr "como ingresar las credenciales de forma correcta." -#: ../../src/Translations/AdminTranslations.php:1018 +#: ../../src/Translations/AdminTranslations.php:1019 msgid " for test mode" msgstr " para el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:1030 +#: ../../src/Translations/AdminTranslations.php:1031 msgid "Store information is valid" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:1043 +#: ../../src/Translations/AdminTranslations.php:1044 msgid "Attention:" msgstr "Atención:" -#: ../../src/Translations/AdminTranslations.php:1044 +#: ../../src/Translations/AdminTranslations.php:1045 msgid "" "The currency settings you have in WooCommerce are not compatible with the " "currency you use in your Mercado Pago account. Please activate the currency " @@ -1630,19 +1640,19 @@ msgstr "" "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." -#: ../../src/Translations/AdminTranslations.php:1047 +#: ../../src/Translations/AdminTranslations.php:1048 msgid "We are converting your currency from: " msgstr "Ahora convertimos tu moneda de: " -#: ../../src/Translations/AdminTranslations.php:1063 +#: ../../src/Translations/AdminTranslations.php:1064 msgid "to " msgstr "a " -#: ../../src/Translations/AdminTranslations.php:1074 +#: ../../src/Translations/AdminTranslations.php:1075 msgid "Payment status on Mercado Pago" msgstr "Estado de pago en el Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1075 +#: ../../src/Translations/AdminTranslations.php:1076 msgid "" "This is the payment status of your Mercado Pago Activities. To check the " "order status, please refer to Order details." @@ -1650,52 +1660,52 @@ msgstr "" "Este es el estado del pago de las Actividades de tu Mercado Pago. Para " "consultar el estado del pedido, consulta en Detalles del Pedido." -#: ../../src/Translations/AdminTranslations.php:1076, -#: ../../src/Translations/AdminTranslations.php:1078 +#: ../../src/Translations/AdminTranslations.php:1077, +#: ../../src/Translations/AdminTranslations.php:1079 msgid "View purchase details at Mercado Pago" msgstr "Ver detalles de compra en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1077, -#: ../../src/Translations/AdminTranslations.php:1079, -#: ../../src/Translations/AdminTranslations.php:1081 +#: ../../src/Translations/AdminTranslations.php:1078, +#: ../../src/Translations/AdminTranslations.php:1080, +#: ../../src/Translations/AdminTranslations.php:1082 msgid "Sync order status" msgstr "Sincronizar el estado del pedido" -#: ../../src/Translations/AdminTranslations.php:1080 +#: ../../src/Translations/AdminTranslations.php:1081 msgid "Consult the reasons for refusal" msgstr "Consultar motivos de rechazo" -#: ../../src/Translations/AdminTranslations.php:1082 +#: ../../src/Translations/AdminTranslations.php:1083 msgid "Order update successfully. This page will be reloaded..." msgstr "Actualización del pedido con éxito. Esta página será recargada…" -#: ../../src/Translations/AdminTranslations.php:1083 +#: ../../src/Translations/AdminTranslations.php:1084 msgid "Unable to update order:" msgstr "No se puede actualizar el pedido:" -#: ../../src/Translations/AdminTranslations.php:1084 +#: ../../src/Translations/AdminTranslations.php:1085 msgid "Payment made" msgstr "Pago realizado" -#: ../../src/Translations/AdminTranslations.php:1085 +#: ../../src/Translations/AdminTranslations.php:1086 msgid "Payment made by the buyer and already credited in the account." msgstr "" "El pago realizado por el comprador y que ya está acreditado en la cuenta." -#: ../../src/Translations/AdminTranslations.php:1086 +#: ../../src/Translations/AdminTranslations.php:1087 msgid "Call resolved" msgstr "Llamado resuelto" -#: ../../src/Translations/AdminTranslations.php:1087, -#: ../../src/Translations/AdminTranslations.php:1137 +#: ../../src/Translations/AdminTranslations.php:1088, +#: ../../src/Translations/AdminTranslations.php:1138 msgid "Please contact Mercado Pago for further details." msgstr "Contacta a Mercado Pago para saber más detalles." -#: ../../src/Translations/AdminTranslations.php:1088 +#: ../../src/Translations/AdminTranslations.php:1089 msgid "Payment refunded" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1089 +#: ../../src/Translations/AdminTranslations.php:1090 msgid "" "Your refund request has been made. Please contact Mercado Pago for further " "details." @@ -1703,59 +1713,59 @@ msgstr "" "Tu pedido de reebolso ya fue realizado. Contacta a Mercado Pago para saber " "más detalles." -#: ../../src/Translations/AdminTranslations.php:1090, -#: ../../src/Translations/AdminTranslations.php:1092 +#: ../../src/Translations/AdminTranslations.php:1091, +#: ../../src/Translations/AdminTranslations.php:1093 msgid "Payment returned" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1091 +#: ../../src/Translations/AdminTranslations.php:1092 msgid "The payment has been returned to the client." msgstr "El pago ya fue devuelto al cliente." -#: ../../src/Translations/AdminTranslations.php:1093 +#: ../../src/Translations/AdminTranslations.php:1094 msgid "The payment has been partially returned to the client." msgstr "El pago ya fue devuelto parcialmente al cliente." -#: ../../src/Translations/AdminTranslations.php:1094 +#: ../../src/Translations/AdminTranslations.php:1095 msgid "Payment canceled" msgstr "Pago cancelado" -#: ../../src/Translations/AdminTranslations.php:1095 +#: ../../src/Translations/AdminTranslations.php:1096 msgid "The payment has been successfully canceled." msgstr "El pago fue cancelado con éxito." -#: ../../src/Translations/AdminTranslations.php:1096 +#: ../../src/Translations/AdminTranslations.php:1097 msgid "Purchase canceled" msgstr "Compra cancelada" -#: ../../src/Translations/AdminTranslations.php:1097 +#: ../../src/Translations/AdminTranslations.php:1098 msgid "The payment has been canceled by the customer." msgstr "El pago fue cancelado por el cliente." -#: ../../src/Translations/AdminTranslations.php:1098, -#: ../../src/Translations/AdminTranslations.php:1100, -#: ../../src/Translations/AdminTranslations.php:1102, -#: ../../src/Translations/AdminTranslations.php:1104, -#: ../../src/Translations/AdminTranslations.php:1106, -#: ../../src/Translations/AdminTranslations.php:1114, -#: ../../src/Translations/AdminTranslations.php:1116, -#: ../../src/Translations/AdminTranslations.php:1118, -#: ../../src/Translations/AdminTranslations.php:1120, -#: ../../src/Translations/AdminTranslations.php:1122, -#: ../../src/Translations/AdminTranslations.php:1124, -#: ../../src/Translations/AdminTranslations.php:1126, -#: ../../src/Translations/AdminTranslations.php:1181 -msgid "Pending payment" -msgstr "Cobro pendiente" - #: ../../src/Translations/AdminTranslations.php:1099, #: ../../src/Translations/AdminTranslations.php:1101, #: ../../src/Translations/AdminTranslations.php:1103, -#: ../../src/Translations/AdminTranslations.php:1105 +#: ../../src/Translations/AdminTranslations.php:1105, +#: ../../src/Translations/AdminTranslations.php:1107, +#: ../../src/Translations/AdminTranslations.php:1115, +#: ../../src/Translations/AdminTranslations.php:1117, +#: ../../src/Translations/AdminTranslations.php:1119, +#: ../../src/Translations/AdminTranslations.php:1121, +#: ../../src/Translations/AdminTranslations.php:1123, +#: ../../src/Translations/AdminTranslations.php:1125, +#: ../../src/Translations/AdminTranslations.php:1127, +#: ../../src/Translations/AdminTranslations.php:1182 +msgid "Pending payment" +msgstr "Cobro pendiente" + +#: ../../src/Translations/AdminTranslations.php:1100, +#: ../../src/Translations/AdminTranslations.php:1102, +#: ../../src/Translations/AdminTranslations.php:1104, +#: ../../src/Translations/AdminTranslations.php:1106 msgid "Awaiting payment from the buyer." msgstr "Esperando el pago del comprador." -#: ../../src/Translations/AdminTranslations.php:1107 +#: ../../src/Translations/AdminTranslations.php:1108 msgid "" "We are veryfing the payment. We will notify you by email in up to 6 hours if " "everything is fine so that you can deliver the product or provide the " @@ -1764,19 +1774,19 @@ msgstr "" "Estamos revisando el pago. En menos de 6 horas te avisaremos por e-mail si " "está todo bien para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1108, -#: ../../src/Translations/AdminTranslations.php:1132, -#: ../../src/Translations/AdminTranslations.php:1148, -#: ../../src/Translations/AdminTranslations.php:1167, -#: ../../src/Translations/AdminTranslations.php:1171, -#: ../../src/Translations/AdminTranslations.php:1173, -#: ../../src/Translations/AdminTranslations.php:1175, -#: ../../src/Translations/AdminTranslations.php:1179 +#: ../../src/Translations/AdminTranslations.php:1109, +#: ../../src/Translations/AdminTranslations.php:1133, +#: ../../src/Translations/AdminTranslations.php:1149, +#: ../../src/Translations/AdminTranslations.php:1168, +#: ../../src/Translations/AdminTranslations.php:1172, +#: ../../src/Translations/AdminTranslations.php:1174, +#: ../../src/Translations/AdminTranslations.php:1176, +#: ../../src/Translations/AdminTranslations.php:1180 msgid "Declined payment" msgstr "Cobro rechazado" -#: ../../src/Translations/AdminTranslations.php:1109, -#: ../../src/Translations/AdminTranslations.php:1133 +#: ../../src/Translations/AdminTranslations.php:1110, +#: ../../src/Translations/AdminTranslations.php:1134 msgid "" "The card-issuing bank declined the payment. Please ask your client to use " "another card or to get in touch with the bank." @@ -1785,27 +1795,27 @@ msgstr "" "“\n" "“otra tarjeta o que se comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1110 +#: ../../src/Translations/AdminTranslations.php:1111 msgid "Payment authorized. Awaiting capture." msgstr "Pago autorizado. Esperando captura." -#: ../../src/Translations/AdminTranslations.php:1111 +#: ../../src/Translations/AdminTranslations.php:1112 msgid "" "The payment has been authorized on the client's card. Please capture the " "payment." msgstr "" "Ya se autorizó el pago en la tarjeta del cliente. Haz la captura del pago." -#: ../../src/Translations/AdminTranslations.php:1112 +#: ../../src/Translations/AdminTranslations.php:1113 msgid "Payment in process" msgstr "Pago en proceso" -#: ../../src/Translations/AdminTranslations.php:1113, -#: ../../src/Translations/AdminTranslations.php:1123 +#: ../../src/Translations/AdminTranslations.php:1114, +#: ../../src/Translations/AdminTranslations.php:1124 msgid "Please wait or contact Mercado Pago for further details" msgstr "Espera o contacta a Mercado Pago para saber más detalles" -#: ../../src/Translations/AdminTranslations.php:1115 +#: ../../src/Translations/AdminTranslations.php:1116 msgid "" "The bank is reviewing the payment. As soon as we have their confirmation, we " "will notify you via email so that you can deliver the product or provide the " @@ -1814,33 +1824,33 @@ msgstr "" "El banco está revisando el pago. Te avisaremos por e-mail cuando esté " "confirmado para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1117, -#: ../../src/Translations/AdminTranslations.php:1119, -#: ../../src/Translations/AdminTranslations.php:1121 +#: ../../src/Translations/AdminTranslations.php:1118, +#: ../../src/Translations/AdminTranslations.php:1120, +#: ../../src/Translations/AdminTranslations.php:1122 msgid "Awaiting payment information validation." msgstr "Esperando validación de los datos de pago." -#: ../../src/Translations/AdminTranslations.php:1125 +#: ../../src/Translations/AdminTranslations.php:1126 msgid "Waiting for the buyer." msgstr "Esperando al comprador." -#: ../../src/Translations/AdminTranslations.php:1127 +#: ../../src/Translations/AdminTranslations.php:1128 msgid "Waiting for the card issuer." msgstr "Espererando al emisor de la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1128, -#: ../../src/Translations/AdminTranslations.php:1130, -#: ../../src/Translations/AdminTranslations.php:1134, -#: ../../src/Translations/AdminTranslations.php:1155, -#: ../../src/Translations/AdminTranslations.php:1177 -msgid "The card issuing bank declined the payment" -msgstr "El banco emisor de la tarjeta rechazó el pago" - #: ../../src/Translations/AdminTranslations.php:1129, #: ../../src/Translations/AdminTranslations.php:1131, #: ../../src/Translations/AdminTranslations.php:1135, #: ../../src/Translations/AdminTranslations.php:1156, #: ../../src/Translations/AdminTranslations.php:1178 +msgid "The card issuing bank declined the payment" +msgstr "El banco emisor de la tarjeta rechazó el pago" + +#: ../../src/Translations/AdminTranslations.php:1130, +#: ../../src/Translations/AdminTranslations.php:1132, +#: ../../src/Translations/AdminTranslations.php:1136, +#: ../../src/Translations/AdminTranslations.php:1157, +#: ../../src/Translations/AdminTranslations.php:1179 msgid "" "Please recommend your customer to pay with another payment method or to " "contact their bank." @@ -1848,32 +1858,32 @@ msgstr "" "Recomiéndale a tu cliente que pague con otro medio de pago o que se " "comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1136 +#: ../../src/Translations/AdminTranslations.php:1137 msgid "Mercado Pago did not process the payment" msgstr "Mercado Pago no procesó el pago" -#: ../../src/Translations/AdminTranslations.php:1138, -#: ../../src/Translations/AdminTranslations.php:1183 -msgid "Expired payment deadline" -msgstr "Venció el plazo para el pago" - #: ../../src/Translations/AdminTranslations.php:1139, #: ../../src/Translations/AdminTranslations.php:1184 -msgid "The client did not pay within the time limit." -msgstr "El cliente no pagó dentro del límite de tiempo." +msgid "Expired payment deadline" +msgstr "Venció el plazo para el pago" #: ../../src/Translations/AdminTranslations.php:1140, -#: ../../src/Translations/AdminTranslations.php:1142, -#: ../../src/Translations/AdminTranslations.php:1144, #: ../../src/Translations/AdminTranslations.php:1185 -msgid "Your customer entered one or more incorrect card details" -msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" +msgid "The client did not pay within the time limit." +msgstr "El cliente no pagó dentro del límite de tiempo." #: ../../src/Translations/AdminTranslations.php:1141, #: ../../src/Translations/AdminTranslations.php:1143, #: ../../src/Translations/AdminTranslations.php:1145, -#: ../../src/Translations/AdminTranslations.php:1186, -#: ../../src/Translations/AdminTranslations.php:1187 +#: ../../src/Translations/AdminTranslations.php:1186 +msgid "Your customer entered one or more incorrect card details" +msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" + +#: ../../src/Translations/AdminTranslations.php:1142, +#: ../../src/Translations/AdminTranslations.php:1144, +#: ../../src/Translations/AdminTranslations.php:1146, +#: ../../src/Translations/AdminTranslations.php:1187, +#: ../../src/Translations/AdminTranslations.php:1188 msgid "" "Please ask them to enter to enter them again exactly as they appear on the " "card or on their bank app to complete the payment." @@ -1881,17 +1891,17 @@ msgstr "" "Pídele que vuelva a ingresarlos tal como figuran en la tarjeta o en la app " "de su banco para finalizar el pago." -#: ../../src/Translations/AdminTranslations.php:1146, -#: ../../src/Translations/AdminTranslations.php:1169 +#: ../../src/Translations/AdminTranslations.php:1147, +#: ../../src/Translations/AdminTranslations.php:1170 msgid "We protected you from a suspicious payment" msgstr "Te protegimos de un pago sospechoso" -#: ../../src/Translations/AdminTranslations.php:1147 +#: ../../src/Translations/AdminTranslations.php:1148 msgid "For safety reasons, this transaction cannot be completed." msgstr "Por motivos de seguridad, esta transacción no podrá ser finalizada." -#: ../../src/Translations/AdminTranslations.php:1149, -#: ../../src/Translations/AdminTranslations.php:1168 +#: ../../src/Translations/AdminTranslations.php:1150, +#: ../../src/Translations/AdminTranslations.php:1169 msgid "" "The buyer is suspended in our platform. Your client must contact us to check " "what happened." @@ -1899,12 +1909,12 @@ msgstr "" "El comprador está suspendido en Mercado Pago. Tu cliente debe comunicarse " "con nosotros para ver qué pasó." -#: ../../src/Translations/AdminTranslations.php:1150 +#: ../../src/Translations/AdminTranslations.php:1151 msgid "For safety reasons, the card issuing bank declined the payment" msgstr "Por seguridad, el banco emisor de la tarjeta rechazó el pago" -#: ../../src/Translations/AdminTranslations.php:1151, -#: ../../src/Translations/AdminTranslations.php:1170 +#: ../../src/Translations/AdminTranslations.php:1152, +#: ../../src/Translations/AdminTranslations.php:1171 msgid "" "Recommend your customer to pay with their usual payment method and device " "for online purchases." @@ -1912,40 +1922,40 @@ msgstr "" "Recomiéndale a tu cliente que pague con el medio de pago y dispositivo que " "suele usar para compras online." -#: ../../src/Translations/AdminTranslations.php:1152 +#: ../../src/Translations/AdminTranslations.php:1153 msgid "Your customer's credit card has no available limit" msgstr "La tarjeta de crédito de tu cliente no tiene límite disponible" -#: ../../src/Translations/AdminTranslations.php:1153, #: ../../src/Translations/AdminTranslations.php:1154, -#: ../../src/Translations/AdminTranslations.php:1158 +#: ../../src/Translations/AdminTranslations.php:1155, +#: ../../src/Translations/AdminTranslations.php:1159 msgid "" "Please ask them to pay with another card or to choose another payment method." msgstr "Pídele que pague con otra tarjeta o que elija otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1157 +#: ../../src/Translations/AdminTranslations.php:1158 msgid "Your customer reached the limit of payment attempts with this card" msgstr "Tu cliente alcanzó el límite de intentos de pago con la tarjeta" -#: ../../src/Translations/AdminTranslations.php:1159 +#: ../../src/Translations/AdminTranslations.php:1160 msgid "" "Your customer's card does not accept the number of installments selected" msgstr "La tarjeta de tu cliente no acepta la cantidad de pagos que seleccionó" -#: ../../src/Translations/AdminTranslations.php:1160 +#: ../../src/Translations/AdminTranslations.php:1161 msgid "" "Please ask them to choose a different number of installments or to pay with " "another method." msgstr "" "Pídele que elija una cantidad de pagos diferente o que use con otro medio." -#: ../../src/Translations/AdminTranslations.php:1161, -#: ../../src/Translations/AdminTranslations.php:1188 +#: ../../src/Translations/AdminTranslations.php:1162, +#: ../../src/Translations/AdminTranslations.php:1189 msgid "Your customer needs to authorize the payment through their bank" msgstr "Tu cliente necesita autorizar el pago con su banco" -#: ../../src/Translations/AdminTranslations.php:1162, -#: ../../src/Translations/AdminTranslations.php:1189 +#: ../../src/Translations/AdminTranslations.php:1163, +#: ../../src/Translations/AdminTranslations.php:1190 msgid "" "Please ask them to call the telephone number on their card or to pay with " "another method." @@ -1953,20 +1963,20 @@ msgstr "" "Pídele que llame al teléfono que está en la tarjeta o que pague con otro " "medio." -#: ../../src/Translations/AdminTranslations.php:1163 +#: ../../src/Translations/AdminTranslations.php:1164 msgid "" "The payment was declined because your customer already paid for this purchase" msgstr "El pago fue rechazado porque tu cliente ya pagó esta compra" -#: ../../src/Translations/AdminTranslations.php:1164 +#: ../../src/Translations/AdminTranslations.php:1165 msgid "Check your approved payments to verify it." msgstr "Revisa tu cobros aprobados para verificarlo." -#: ../../src/Translations/AdminTranslations.php:1165 +#: ../../src/Translations/AdminTranslations.php:1166 msgid "Your customer's card was is not activated yet" msgstr "La tarjeta de tu cliente aún no está habilitada" -#: ../../src/Translations/AdminTranslations.php:1166 +#: ../../src/Translations/AdminTranslations.php:1167 msgid "" "Please ask them to contact their bank by calling the number on the back of " "their card or to pay with another method." @@ -1974,7 +1984,7 @@ msgstr "" "Pídele que se comunique con su banco al número que está en el dorso de la " "tarjeta o que pague con otro medio." -#: ../../src/Translations/AdminTranslations.php:1172 +#: ../../src/Translations/AdminTranslations.php:1173 msgid "" "This payment was declined because it did not pass Mercado Pago security " "controls. Please ask your client to use another card." @@ -1982,7 +1992,7 @@ msgstr "" "Rechazamos este pago porque no pasó los controles de seguridad de Mercado " "Pago. Pedile a tu cliente que use otra tarjeta." -#: ../../src/Translations/AdminTranslations.php:1174 +#: ../../src/Translations/AdminTranslations.php:1175 msgid "" "The amount exceeded the card limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -1990,8 +2000,8 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1176, -#: ../../src/Translations/AdminTranslations.php:1180 +#: ../../src/Translations/AdminTranslations.php:1177, +#: ../../src/Translations/AdminTranslations.php:1181 msgid "" "Please ask your client to use another card or to get in touch with the card " "issuer." @@ -1999,7 +2009,7 @@ msgstr "" "Pídele a tu cliente que use otra tarjeta o que se comunique con el emisor de " "la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1182 +#: ../../src/Translations/AdminTranslations.php:1183 msgid "" "The amount exceeded the card's limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -2007,21 +2017,21 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1190 +#: ../../src/Translations/AdminTranslations.php:1191 msgid "Your customer's debit card has insufficient funds" msgstr "La tarjeta de débito de tu cliente no tiene saldo suficiente" -#: ../../src/Translations/AdminTranslations.php:1191 +#: ../../src/Translations/AdminTranslations.php:1192 msgid "" "Please recommend your customer to pay with another card or to choose another " "payment method." msgstr "Pídele que pague con otra tarjeta o que elige otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1192 +#: ../../src/Translations/AdminTranslations.php:1193 msgid "Something went wrong and the payment was declined" msgstr "El pago fue rechazado porque hubo un error" -#: ../../src/Translations/AdminTranslations.php:1193 +#: ../../src/Translations/AdminTranslations.php:1194 msgid "" "Please recommend you customer to try again or to pay with another payment " "method." diff --git a/i18n/languages/woocommerce-mercadopago-es_CO.mo b/i18n/languages/woocommerce-mercadopago-es_CO.mo index bd1af4ac49f7dfee76b3c4a9adea6e331edd16a2..392533cbdfcbb70849524b76c5c5421daba707ad 100644 GIT binary patch delta 10494 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 delta 10191 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 CD_YP1 diff --git a/i18n/languages/woocommerce-mercadopago-es_CO.po b/i18n/languages/woocommerce-mercadopago-es_CO.po index 56c6233a1..d807f91c5 100644 --- a/i18n/languages/woocommerce-mercadopago-es_CO.po +++ b/i18n/languages/woocommerce-mercadopago-es_CO.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" -"POT-Creation-Date: 2024-02-01 11:32+0000\n" +"POT-Creation-Date: 2024-02-07 19:47+0000\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -15,22 +15,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.2\n" -#: ../../src/WoocommerceMercadoPago.php:426, +#: ../../src/WoocommerceMercadoPago.php:449, #: ../../src/Translations/AdminTranslations.php:166 msgid "Activate WooCommerce" msgstr "Activar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:427, +#: ../../src/WoocommerceMercadoPago.php:450, #: ../../src/Translations/AdminTranslations.php:167 msgid "Install WooCommerce" msgstr "Instalar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:428, +#: ../../src/WoocommerceMercadoPago.php:451, #: ../../src/Translations/AdminTranslations.php:168 msgid "See WooCommerce" msgstr "Ver WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:430, +#: ../../src/WoocommerceMercadoPago.php:453, #: ../../src/Translations/AdminTranslations.php:157 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" @@ -103,50 +103,60 @@ msgstr "" msgid "Activate" msgstr "Activar" -#: ../../src/Translations/AdminTranslations.php:188 +#: ../../src/Translations/AdminTranslations.php:177 +msgid "" +"Unfortunately, the language configured in your WordPress is not compatible " +"with our plugin. For the best experience, please switch to a supported " +"language." +msgstr "" +"Lamentablemente, el idioma configurado en tu WordPress no es compatible con " +"nuestro plugin. Para disfrutar de la mejor experiencia, cambia a un idioma " +"compatible." + +#: ../../src/Translations/AdminTranslations.php:189 msgid "Set plugin" msgstr "Configurar plugin" -#: ../../src/Translations/AdminTranslations.php:189, -#: ../../src/Translations/AdminTranslations.php:743, -#: ../../src/Translations/AdminTranslations.php:802 +#: ../../src/Translations/AdminTranslations.php:190, +#: ../../src/Translations/AdminTranslations.php:744, +#: ../../src/Translations/AdminTranslations.php:803 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../src/Translations/AdminTranslations.php:190, -#: ../../src/Translations/AdminTranslations.php:261 +#: ../../src/Translations/AdminTranslations.php:191, +#: ../../src/Translations/AdminTranslations.php:262 msgid "Plugin manual" msgstr "Manual del plugin" -#: ../../src/Translations/AdminTranslations.php:202 +#: ../../src/Translations/AdminTranslations.php:203 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../src/Translations/AdminTranslations.php:203 +#: ../../src/Translations/AdminTranslations.php:204 msgid "Mercado Pago commission:" msgstr "Comisión de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:204 +#: ../../src/Translations/AdminTranslations.php:205 msgid "Represents the commission configured on plugin settings." msgstr "Representa la comisión configurada en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:205 +#: ../../src/Translations/AdminTranslations.php:206 msgid "Mercado Pago discount:" msgstr "Descuento de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:206 +#: ../../src/Translations/AdminTranslations.php:207 msgid "Represents the discount configured on plugin settings." msgstr "Representa el descuento configurado en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:207 +#: ../../src/Translations/AdminTranslations.php:208 msgid "Represents the installment fee charged by Mercado Pago." msgstr "Representa la comisión a plazos cobrada por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:208 +#: ../../src/Translations/AdminTranslations.php:209 msgid "Mercado Pago Installment Fee:" msgstr "Cuota de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:209 +#: ../../src/Translations/AdminTranslations.php:210 msgid "" "Represents the total purchase plus the installment fee charged by Mercado " "Pago." @@ -154,91 +164,91 @@ msgstr "" "Representa el total de la compra más la comisión de fraccionamiento cobrada " "por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:210 +#: ../../src/Translations/AdminTranslations.php:211 msgid "Mercado Pago Total:" msgstr "Mercado Pago Total:" -#: ../../src/Translations/AdminTranslations.php:223 +#: ../../src/Translations/AdminTranslations.php:224 msgid "Accept" msgstr "Acepta" -#: ../../src/Translations/AdminTranslations.php:224 +#: ../../src/Translations/AdminTranslations.php:225 msgid "payments on the spot" msgstr "pagos al instante" -#: ../../src/Translations/AdminTranslations.php:225 +#: ../../src/Translations/AdminTranslations.php:226 msgid "with" msgstr "con" -#: ../../src/Translations/AdminTranslations.php:226 +#: ../../src/Translations/AdminTranslations.php:227 msgid "the" msgstr "toda la" -#: ../../src/Translations/AdminTranslations.php:227 +#: ../../src/Translations/AdminTranslations.php:228 msgid "security" msgstr "seguridad" -#: ../../src/Translations/AdminTranslations.php:228 +#: ../../src/Translations/AdminTranslations.php:229 msgid "from Mercado Pago" msgstr "de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:233 +#: ../../src/Translations/AdminTranslations.php:234 msgid "Choose" msgstr "Elige" -#: ../../src/Translations/AdminTranslations.php:234 +#: ../../src/Translations/AdminTranslations.php:235 msgid "when you want to receive the money" msgstr "cuándo quieres recibir el dinero" -#: ../../src/Translations/AdminTranslations.php:235 +#: ../../src/Translations/AdminTranslations.php:236 msgid "from your sales and if you want to offer" msgstr "de las ventas y si quieres ofrecer" -#: ../../src/Translations/AdminTranslations.php:236 +#: ../../src/Translations/AdminTranslations.php:237 msgid "interest-free installments" msgstr "cuotas sin interés" -#: ../../src/Translations/AdminTranslations.php:237 +#: ../../src/Translations/AdminTranslations.php:238 msgid "to your clients." msgstr "a los clientes." -#: ../../src/Translations/AdminTranslations.php:242 +#: ../../src/Translations/AdminTranslations.php:243 msgid "Review the step-by-step of" msgstr "Revisa el paso a paso de" -#: ../../src/Translations/AdminTranslations.php:243 +#: ../../src/Translations/AdminTranslations.php:244 msgid "how to integrate the Mercado Pago Plugin" msgstr "cómo integrar el Plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:244 +#: ../../src/Translations/AdminTranslations.php:245 msgid "on our website for developers." msgstr "en nuestro sitio de desarrolladores." -#: ../../src/Translations/AdminTranslations.php:248 +#: ../../src/Translations/AdminTranslations.php:249 msgid "SSL" msgstr "SSL" -#: ../../src/Translations/AdminTranslations.php:249 +#: ../../src/Translations/AdminTranslations.php:250 msgid "Curl" msgstr "Curl" -#: ../../src/Translations/AdminTranslations.php:250 +#: ../../src/Translations/AdminTranslations.php:251 msgid "GD Extensions" msgstr "Extensiones GD" -#: ../../src/Translations/AdminTranslations.php:252 +#: ../../src/Translations/AdminTranslations.php:253 msgid "Technical requirements" msgstr "Requisitos técnicos" -#: ../../src/Translations/AdminTranslations.php:253 +#: ../../src/Translations/AdminTranslations.php:254 msgid "Collections and installments" msgstr "Cobros y cuotas" -#: ../../src/Translations/AdminTranslations.php:254 +#: ../../src/Translations/AdminTranslations.php:255 msgid "Questions?" msgstr "¿Dudas?" -#: ../../src/Translations/AdminTranslations.php:255 +#: ../../src/Translations/AdminTranslations.php:256 msgid "" "Implementation responsible for transmitting data to Mercado Pago in a secure " "and encrypted way." @@ -246,7 +256,7 @@ msgstr "" "Implementación responsable de transmitir los datos a Mercado Pago de forma " "segura y encriptada." -#: ../../src/Translations/AdminTranslations.php:256 +#: ../../src/Translations/AdminTranslations.php:257 msgid "" "It is an extension responsible for making payments via requests from the " "plugin to Mercado Pago." @@ -254,7 +264,7 @@ msgstr "" "Es una extensión encargada de realizar los pagos a través de requests del " "plugin a Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:257 +#: ../../src/Translations/AdminTranslations.php:258 msgid "" "These extensions are responsible for the implementation and operation of Pix " "in your store." @@ -262,11 +272,11 @@ msgstr "" "Extensiones responsables de la aplicación y el funcionamiento de Pix en su " "tienda." -#: ../../src/Translations/AdminTranslations.php:260 +#: ../../src/Translations/AdminTranslations.php:261 msgid "Set deadlines and fees" msgstr "Ajustar plazos y tasas" -#: ../../src/Translations/AdminTranslations.php:274 +#: ../../src/Translations/AdminTranslations.php:275 msgid "" "To enable orders, you must create and activate production credentials in " "your Mercado Pago Account." @@ -274,79 +284,79 @@ msgstr "" "Para habilitar las ventas, debes crear y activar las credenciales de " "producción en tu cuenta de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:275 +#: ../../src/Translations/AdminTranslations.php:276 msgid "Copy and paste the credentials below." msgstr "Copia y pega tus credenciales a continuación." -#: ../../src/Translations/AdminTranslations.php:280 +#: ../../src/Translations/AdminTranslations.php:281 msgid "You must enter" msgstr "Debe introducir" -#: ../../src/Translations/AdminTranslations.php:281 +#: ../../src/Translations/AdminTranslations.php:282 msgid "production credentials" msgstr "las credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:285 +#: ../../src/Translations/AdminTranslations.php:286 msgid "Public Key" msgstr "Public Key" -#: ../../src/Translations/AdminTranslations.php:286 +#: ../../src/Translations/AdminTranslations.php:287 msgid "Access Token" msgstr "Access Token" -#: ../../src/Translations/AdminTranslations.php:287 +#: ../../src/Translations/AdminTranslations.php:288 msgid "1. Integrate your store with Mercado Pago" msgstr "1. Integra la tienda a Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:288 +#: ../../src/Translations/AdminTranslations.php:289 msgid "Production credentials" msgstr "Credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:289 +#: ../../src/Translations/AdminTranslations.php:290 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:291 +#: ../../src/Translations/AdminTranslations.php:292 msgid "Enable Mercado Pago checkouts for test purchases in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para pruebas de compras en la " "tienda." -#: ../../src/Translations/AdminTranslations.php:292 +#: ../../src/Translations/AdminTranslations.php:293 msgid "Enable Mercado Pago checkouts to receive real payments in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para recibir pagos reales en tienda." -#: ../../src/Translations/AdminTranslations.php:293 +#: ../../src/Translations/AdminTranslations.php:294 msgid "Paste your Public Key here" msgstr "Pega aquí tu Public Key" -#: ../../src/Translations/AdminTranslations.php:294 +#: ../../src/Translations/AdminTranslations.php:295 msgid "Paste your Access Token here" msgstr "Pega aquí tu Access Token" -#: ../../src/Translations/AdminTranslations.php:295 +#: ../../src/Translations/AdminTranslations.php:296 msgid "Check credentials" msgstr "Consultar credenciales" -#: ../../src/Translations/AdminTranslations.php:296, -#: ../../src/Translations/AdminTranslations.php:350 +#: ../../src/Translations/AdminTranslations.php:297, +#: ../../src/Translations/AdminTranslations.php:351 msgid "Save and continue" msgstr "Guardar y continuar" -#: ../../src/Translations/AdminTranslations.php:297 +#: ../../src/Translations/AdminTranslations.php:298 msgid "Important! To sell you must enter your credentials." msgstr "¡Importante! Para vender debe introducir sus credenciales." -#: ../../src/Translations/AdminTranslations.php:299 +#: ../../src/Translations/AdminTranslations.php:300 msgid "Enter credentials" msgstr "Introducir credenciales" -#: ../../src/Translations/AdminTranslations.php:300 +#: ../../src/Translations/AdminTranslations.php:301 msgid "Activate your credentials to be able to sell" msgstr "Activa tus credenciales para poder vender" -#: ../../src/Translations/AdminTranslations.php:301 +#: ../../src/Translations/AdminTranslations.php:302 msgid "" "Credentials are codes that you must enter to enable sales. Go below on " "Activate Credentials. On the next screen, use again the Activate Credentials " @@ -357,23 +367,23 @@ msgstr "" "nuevamente el botón Activar Credenciales y complete los campos con la " "información solicitada." -#: ../../src/Translations/AdminTranslations.php:302 +#: ../../src/Translations/AdminTranslations.php:303 msgid "Activate credentials" msgstr "Activar credenciales" -#: ../../src/Translations/AdminTranslations.php:315 +#: ../../src/Translations/AdminTranslations.php:316 msgid "Add the URL to receive payments notifications." msgstr "Ingresa la URL para recibir notificaciones de pago." -#: ../../src/Translations/AdminTranslations.php:316 +#: ../../src/Translations/AdminTranslations.php:317 msgid "Find out more information in the" msgstr "Consulta más información en los" -#: ../../src/Translations/AdminTranslations.php:318 +#: ../../src/Translations/AdminTranslations.php:319 msgid "guides" msgstr "manuales" -#: ../../src/Translations/AdminTranslations.php:323 +#: ../../src/Translations/AdminTranslations.php:324 msgid "" "If you are a Mercado Pago Certified Partner, make sure to add your " "integrator_id." @@ -381,31 +391,31 @@ msgstr "" "Si eres Partner certificado de Mercado Pago, recuerda ingresar tu " "integrator_id." -#: ../../src/Translations/AdminTranslations.php:324 +#: ../../src/Translations/AdminTranslations.php:325 msgid "If you do not have the code, please" msgstr "Si no tienes el código," -#: ../../src/Translations/AdminTranslations.php:326 +#: ../../src/Translations/AdminTranslations.php:327 msgid "request it now" msgstr "solicítalo ahora" -#: ../../src/Translations/AdminTranslations.php:330 +#: ../../src/Translations/AdminTranslations.php:331 msgid "2. Customize your business" msgstr "2. Personaliza tu negocio" -#: ../../src/Translations/AdminTranslations.php:331 +#: ../../src/Translations/AdminTranslations.php:332 msgid "Your store information" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:332 +#: ../../src/Translations/AdminTranslations.php:333 msgid "Advanced integration options (optional)" msgstr "Opciones avanzadas de integración (opcional)" -#: ../../src/Translations/AdminTranslations.php:333 +#: ../../src/Translations/AdminTranslations.php:334 msgid "Debug and Log Mode" msgstr "Modo debug y log" -#: ../../src/Translations/AdminTranslations.php:334 +#: ../../src/Translations/AdminTranslations.php:335 msgid "" "Fill out the following information to have a better experience and offer " "more information to your clients." @@ -413,15 +423,15 @@ msgstr "" "Completa los siguientes datos para tener una mejor experiencia y ofrecer más " "información a los clientes." -#: ../../src/Translations/AdminTranslations.php:335 +#: ../../src/Translations/AdminTranslations.php:336 msgid "Name of your store in your client's invoice" msgstr "Nombre de tu tienda en la factura de los clientes" -#: ../../src/Translations/AdminTranslations.php:336 +#: ../../src/Translations/AdminTranslations.php:337 msgid "Identification in Activities of Mercado Pago" msgstr "Identificación en Actividad de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:337 +#: ../../src/Translations/AdminTranslations.php:338 msgid "" "For further integration of your store with Mercado Pago (IPN, Certified " "Partners, Debug Mode)" @@ -429,202 +439,202 @@ msgstr "" "Para mayor integración de tu tienda con Mercado Pago (IPN, Socios " "Certificados, Modo Debug)" -#: ../../src/Translations/AdminTranslations.php:338 +#: ../../src/Translations/AdminTranslations.php:339 msgid "Store category" msgstr "Categoría de la tienda" -#: ../../src/Translations/AdminTranslations.php:339 +#: ../../src/Translations/AdminTranslations.php:340 msgid "URL for IPN" msgstr "URL para IPN" -#: ../../src/Translations/AdminTranslations.php:340 +#: ../../src/Translations/AdminTranslations.php:341 msgid "Integrator ID" msgstr "Integrator ID" -#: ../../src/Translations/AdminTranslations.php:341 +#: ../../src/Translations/AdminTranslations.php:342 msgid "We record your store's actions in order to provide a better assistance." msgstr "Grabamos las aciones de tu tienda para brindar un mejor soporte." -#: ../../src/Translations/AdminTranslations.php:342 +#: ../../src/Translations/AdminTranslations.php:343 msgid "Ex: Mary's Store" msgstr "Ej.: Tienda de María" -#: ../../src/Translations/AdminTranslations.php:343 +#: ../../src/Translations/AdminTranslations.php:344 msgid "Ex: Mary Store" msgstr "Ej.: TiendaMaría" -#: ../../src/Translations/AdminTranslations.php:344 +#: ../../src/Translations/AdminTranslations.php:345 msgid "Select" msgstr "Seleccionar" -#: ../../src/Translations/AdminTranslations.php:345 +#: ../../src/Translations/AdminTranslations.php:346 msgid "Ex: https://examples.com/my-custom-ipn-url" msgstr "Ej.: https://examples.com/my-custom-ipn-url" -#: ../../src/Translations/AdminTranslations.php:346 +#: ../../src/Translations/AdminTranslations.php:347 msgid "Add plugin default params" msgstr "Agregar parámetros default del plugin" -#: ../../src/Translations/AdminTranslations.php:347 +#: ../../src/Translations/AdminTranslations.php:348 msgid "Ex: 14987126498" msgstr "Ej.: 14987126498" -#: ../../src/Translations/AdminTranslations.php:348 +#: ../../src/Translations/AdminTranslations.php:349 msgid "Show advanced options" msgstr "Ver opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:349 +#: ../../src/Translations/AdminTranslations.php:350 msgid "Hide advanced options" msgstr "Esconder opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:351 +#: ../../src/Translations/AdminTranslations.php:352 msgid "" "If this field is empty, the purchase will be identified as Mercado Pago." msgstr "" "Si el campo queda vacío, la compra del cliente se identificará como Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:352 +#: ../../src/Translations/AdminTranslations.php:353 msgid "In Activities, you will view this term before the order number" msgstr "En Actividad, verás el término ingresado antes del número o del pedido" -#: ../../src/Translations/AdminTranslations.php:353 +#: ../../src/Translations/AdminTranslations.php:354 msgid "" "Select \"Other categories\" if you do not find the appropriate category." msgstr "Seleciona ”Other categories” si no encuentras una categoría adecuada." -#: ../../src/Translations/AdminTranslations.php:354 +#: ../../src/Translations/AdminTranslations.php:355 msgid "request it now." msgstr "solicítalo ahora." -#: ../../src/Translations/AdminTranslations.php:368 +#: ../../src/Translations/AdminTranslations.php:369 msgid "3. Set payment methods" msgstr "3. Configura los medios de pago" -#: ../../src/Translations/AdminTranslations.php:369 +#: ../../src/Translations/AdminTranslations.php:370 msgid "To view more options, please select a payment method below" msgstr "Selecciona uno de los siguientes medios de pago para ver más opciones" -#: ../../src/Translations/AdminTranslations.php:370 +#: ../../src/Translations/AdminTranslations.php:371 msgid "Settings" msgstr "Configurar" -#: ../../src/Translations/AdminTranslations.php:371 +#: ../../src/Translations/AdminTranslations.php:372 msgid "Continue" msgstr "Continuar" -#: ../../src/Translations/AdminTranslations.php:372 +#: ../../src/Translations/AdminTranslations.php:373 msgid "Enabled" msgstr "Activado" -#: ../../src/Translations/AdminTranslations.php:373 +#: ../../src/Translations/AdminTranslations.php:374 msgid "Disabled" msgstr "Inactivo" -#: ../../src/Translations/AdminTranslations.php:374 +#: ../../src/Translations/AdminTranslations.php:375 msgid "Configure your credentials to enable Mercado Pago payment methods." msgstr "" "Completa tus credenciales para habilitar los medios de pago Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:387, -#: ../../src/Translations/AdminTranslations.php:393 +#: ../../src/Translations/AdminTranslations.php:388, +#: ../../src/Translations/AdminTranslations.php:394 msgid "The checkout is" msgstr "El checkout está" -#: ../../src/Translations/AdminTranslations.php:388, -#: ../../src/Translations/AdminTranslations.php:400, -#: ../../src/Translations/AdminTranslations.php:515, -#: ../../src/Translations/AdminTranslations.php:527, -#: ../../src/Translations/AdminTranslations.php:539, -#: ../../src/Translations/AdminTranslations.php:605, -#: ../../src/Translations/AdminTranslations.php:617, -#: ../../src/Translations/AdminTranslations.php:629, -#: ../../src/Translations/AdminTranslations.php:705, -#: ../../src/Translations/AdminTranslations.php:766, -#: ../../src/Translations/AdminTranslations.php:825, -#: ../../src/Translations/AdminTranslations.php:837 +#: ../../src/Translations/AdminTranslations.php:389, +#: ../../src/Translations/AdminTranslations.php:401, +#: ../../src/Translations/AdminTranslations.php:516, +#: ../../src/Translations/AdminTranslations.php:528, +#: ../../src/Translations/AdminTranslations.php:540, +#: ../../src/Translations/AdminTranslations.php:606, +#: ../../src/Translations/AdminTranslations.php:618, +#: ../../src/Translations/AdminTranslations.php:630, +#: ../../src/Translations/AdminTranslations.php:706, +#: ../../src/Translations/AdminTranslations.php:767, +#: ../../src/Translations/AdminTranslations.php:826, +#: ../../src/Translations/AdminTranslations.php:838 msgid "enabled" msgstr "activo" -#: ../../src/Translations/AdminTranslations.php:394, +#: ../../src/Translations/AdminTranslations.php:395, +#: ../../src/Translations/AdminTranslations.php:407, +#: ../../src/Translations/AdminTranslations.php:522, +#: ../../src/Translations/AdminTranslations.php:534, +#: ../../src/Translations/AdminTranslations.php:546, +#: ../../src/Translations/AdminTranslations.php:612, +#: ../../src/Translations/AdminTranslations.php:624, +#: ../../src/Translations/AdminTranslations.php:636, +#: ../../src/Translations/AdminTranslations.php:712, +#: ../../src/Translations/AdminTranslations.php:773, +#: ../../src/Translations/AdminTranslations.php:832, +#: ../../src/Translations/AdminTranslations.php:844 +msgid "disabled" +msgstr "inactivo" + +#: ../../src/Translations/AdminTranslations.php:400, #: ../../src/Translations/AdminTranslations.php:406, -#: ../../src/Translations/AdminTranslations.php:521, +#: ../../src/Translations/AdminTranslations.php:527, #: ../../src/Translations/AdminTranslations.php:533, -#: ../../src/Translations/AdminTranslations.php:545, -#: ../../src/Translations/AdminTranslations.php:611, +#: ../../src/Translations/AdminTranslations.php:617, #: ../../src/Translations/AdminTranslations.php:623, -#: ../../src/Translations/AdminTranslations.php:635, +#: ../../src/Translations/AdminTranslations.php:705, #: ../../src/Translations/AdminTranslations.php:711, +#: ../../src/Translations/AdminTranslations.php:766, #: ../../src/Translations/AdminTranslations.php:772, -#: ../../src/Translations/AdminTranslations.php:831, +#: ../../src/Translations/AdminTranslations.php:837, #: ../../src/Translations/AdminTranslations.php:843 -msgid "disabled" -msgstr "inactivo" - -#: ../../src/Translations/AdminTranslations.php:399, -#: ../../src/Translations/AdminTranslations.php:405, -#: ../../src/Translations/AdminTranslations.php:526, -#: ../../src/Translations/AdminTranslations.php:532, -#: ../../src/Translations/AdminTranslations.php:616, -#: ../../src/Translations/AdminTranslations.php:622, -#: ../../src/Translations/AdminTranslations.php:704, -#: ../../src/Translations/AdminTranslations.php:710, -#: ../../src/Translations/AdminTranslations.php:765, -#: ../../src/Translations/AdminTranslations.php:771, -#: ../../src/Translations/AdminTranslations.php:836, -#: ../../src/Translations/AdminTranslations.php:842 msgid "Currency conversion is" msgstr "Conversión de moneda está" -#: ../../src/Translations/AdminTranslations.php:411, -#: ../../src/Translations/AdminTranslations.php:417 +#: ../../src/Translations/AdminTranslations.php:412, +#: ../../src/Translations/AdminTranslations.php:418 msgid "The buyer" msgstr "El comprador" -#: ../../src/Translations/AdminTranslations.php:412 +#: ../../src/Translations/AdminTranslations.php:413 msgid "will be automatically redirected to the store" msgstr "será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:418 +#: ../../src/Translations/AdminTranslations.php:419 msgid "will not be automatically redirected to the store" msgstr "no será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:424, -#: ../../src/Translations/AdminTranslations.php:430, -#: ../../src/Translations/AdminTranslations.php:640, -#: ../../src/Translations/AdminTranslations.php:646 +#: ../../src/Translations/AdminTranslations.php:425, +#: ../../src/Translations/AdminTranslations.php:431, +#: ../../src/Translations/AdminTranslations.php:641, +#: ../../src/Translations/AdminTranslations.php:647 msgid "Pending payments" msgstr "Los pagos pendientes" -#: ../../src/Translations/AdminTranslations.php:425, -#: ../../src/Translations/AdminTranslations.php:641 +#: ../../src/Translations/AdminTranslations.php:426, +#: ../../src/Translations/AdminTranslations.php:642 msgid "will be automatically declined" msgstr "se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:431, -#: ../../src/Translations/AdminTranslations.php:647 +#: ../../src/Translations/AdminTranslations.php:432, +#: ../../src/Translations/AdminTranslations.php:648 msgid "will not be automatically declined" msgstr "no se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:435, -#: ../../src/Translations/AdminTranslations.php:450 +#: ../../src/Translations/AdminTranslations.php:436, +#: ../../src/Translations/AdminTranslations.php:451 msgid "Your saved cards or money in Mercado Pago" msgstr "Compras con tarjetas guardadas o saldo en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:436, -#: ../../src/Translations/AdminTranslations.php:438 +#: ../../src/Translations/AdminTranslations.php:437, +#: ../../src/Translations/AdminTranslations.php:439 msgid "Debit, Credit and invoice in Mercado Pago environment" msgstr "Débito, crédito y efectivo, en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:437 +#: ../../src/Translations/AdminTranslations.php:438 msgid "Mercado Pago - Checkout Pro" msgstr "Mercado Pago - Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:439 +#: ../../src/Translations/AdminTranslations.php:440 msgid "Checkout Pro" msgstr "Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:440 +#: ../../src/Translations/AdminTranslations.php:441 msgid "" "With Checkout Pro you sell with all the safety inside Mercado Pago " "environment." @@ -632,23 +642,13 @@ msgstr "" "Con el Checkout Pro, podrás vender con toda la seguridad, dentro de Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:441, -#: ../../src/Translations/AdminTranslations.php:555, -#: ../../src/Translations/AdminTranslations.php:720, -#: ../../src/Translations/AdminTranslations.php:781, -#: ../../src/Translations/AdminTranslations.php:861 -msgid "Mercado Pago plugin general settings" -msgstr "Configuraciones generales del plugin de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:442, #: ../../src/Translations/AdminTranslations.php:556, -#: ../../src/Translations/AdminTranslations.php:658, #: ../../src/Translations/AdminTranslations.php:721, #: ../../src/Translations/AdminTranslations.php:782, #: ../../src/Translations/AdminTranslations.php:862 -msgid "" -"Set the deadlines and fees, test your store or access the Plugin manual." -msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." +msgid "Mercado Pago plugin general settings" +msgstr "Configuraciones generales del plugin de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:443, #: ../../src/Translations/AdminTranslations.php:557, @@ -656,16 +656,26 @@ msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:722, #: ../../src/Translations/AdminTranslations.php:783, #: ../../src/Translations/AdminTranslations.php:863 -msgid "Go to Settings" -msgstr "Ir a Configuraciones" +msgid "" +"Set the deadlines and fees, test your store or access the Plugin manual." +msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:444, +#: ../../src/Translations/AdminTranslations.php:558, #: ../../src/Translations/AdminTranslations.php:660, +#: ../../src/Translations/AdminTranslations.php:723, +#: ../../src/Translations/AdminTranslations.php:784, #: ../../src/Translations/AdminTranslations.php:864 +msgid "Go to Settings" +msgstr "Ir a Configuraciones" + +#: ../../src/Translations/AdminTranslations.php:445, +#: ../../src/Translations/AdminTranslations.php:661, +#: ../../src/Translations/AdminTranslations.php:865 msgid "Enable the checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:445 +#: ../../src/Translations/AdminTranslations.php:446 msgid "" "By disabling it, you will disable all payments from Mercado Pago Checkout at " "Mercado Pago website by redirect." @@ -673,40 +683,31 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago del checkout en el " "sitio web de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:448, -#: ../../src/Translations/AdminTranslations.php:566, -#: ../../src/Translations/AdminTranslations.php:664, -#: ../../src/Translations/AdminTranslations.php:727, -#: ../../src/Translations/AdminTranslations.php:788, -#: ../../src/Translations/AdminTranslations.php:868 -msgid "Title in the store Checkout" -msgstr "Título en el checkout de la tienda" - #: ../../src/Translations/AdminTranslations.php:449, +#: ../../src/Translations/AdminTranslations.php:567, #: ../../src/Translations/AdminTranslations.php:665, #: ../../src/Translations/AdminTranslations.php:728, #: ../../src/Translations/AdminTranslations.php:789, #: ../../src/Translations/AdminTranslations.php:869 +msgid "Title in the store Checkout" +msgstr "Título en el checkout de la tienda" + +#: ../../src/Translations/AdminTranslations.php:450, +#: ../../src/Translations/AdminTranslations.php:666, +#: ../../src/Translations/AdminTranslations.php:729, +#: ../../src/Translations/AdminTranslations.php:790, +#: ../../src/Translations/AdminTranslations.php:870 msgid "Change the display text in Checkout, maximum characters: 85" msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85" -#: ../../src/Translations/AdminTranslations.php:451, -#: ../../src/Translations/AdminTranslations.php:569, -#: ../../src/Translations/AdminTranslations.php:667, -#: ../../src/Translations/AdminTranslations.php:730, -#: ../../src/Translations/AdminTranslations.php:791, -#: ../../src/Translations/AdminTranslations.php:871 -msgid "The text inserted here will not be translated to other languages" -msgstr "El texto insertado aquí no se traducirá a otros idiomas" - #: ../../src/Translations/AdminTranslations.php:452, #: ../../src/Translations/AdminTranslations.php:570, -#: ../../src/Translations/AdminTranslations.php:671, +#: ../../src/Translations/AdminTranslations.php:668, #: ../../src/Translations/AdminTranslations.php:731, #: ../../src/Translations/AdminTranslations.php:792, -#: ../../src/Translations/AdminTranslations.php:885 -msgid "Convert Currency" -msgstr "Convertir moneda" +#: ../../src/Translations/AdminTranslations.php:872 +msgid "The text inserted here will not be translated to other languages" +msgstr "El texto insertado aquí no se traducirá a otros idiomas" #: ../../src/Translations/AdminTranslations.php:453, #: ../../src/Translations/AdminTranslations.php:571, @@ -714,6 +715,15 @@ msgstr "Convertir moneda" #: ../../src/Translations/AdminTranslations.php:732, #: ../../src/Translations/AdminTranslations.php:793, #: ../../src/Translations/AdminTranslations.php:886 +msgid "Convert Currency" +msgstr "Convertir moneda" + +#: ../../src/Translations/AdminTranslations.php:454, +#: ../../src/Translations/AdminTranslations.php:572, +#: ../../src/Translations/AdminTranslations.php:673, +#: ../../src/Translations/AdminTranslations.php:733, +#: ../../src/Translations/AdminTranslations.php:794, +#: ../../src/Translations/AdminTranslations.php:887 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." @@ -721,100 +731,100 @@ 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." -#: ../../src/Translations/AdminTranslations.php:456 +#: ../../src/Translations/AdminTranslations.php:457 msgid "Choose the payment methods you accept in your store" msgstr "Elige los medios de pago que se aceptan en la tienda" -#: ../../src/Translations/AdminTranslations.php:457 +#: ../../src/Translations/AdminTranslations.php:458 msgid "Enable the payment methods available to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../src/Translations/AdminTranslations.php:458 +#: ../../src/Translations/AdminTranslations.php:459 msgid "Credit Cards" msgstr "Tarjetas de crédito" -#: ../../src/Translations/AdminTranslations.php:459 +#: ../../src/Translations/AdminTranslations.php:460 msgid "Debit Cards" msgstr "Tarjetas de débito" -#: ../../src/Translations/AdminTranslations.php:460 +#: ../../src/Translations/AdminTranslations.php:461 msgid "Other Payment Methods" msgstr "Otros medios" -#: ../../src/Translations/AdminTranslations.php:461 +#: ../../src/Translations/AdminTranslations.php:462 msgid "Maximum number of installments" msgstr "Máximo de cuotas" -#: ../../src/Translations/AdminTranslations.php:462 +#: ../../src/Translations/AdminTranslations.php:463 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?" -#: ../../src/Translations/AdminTranslations.php:463 +#: ../../src/Translations/AdminTranslations.php:464 msgid "1 installment" msgstr "1 cuota" -#: ../../src/Translations/AdminTranslations.php:464 +#: ../../src/Translations/AdminTranslations.php:465 msgid "2 installments" msgstr "2 cuotas" -#: ../../src/Translations/AdminTranslations.php:465 +#: ../../src/Translations/AdminTranslations.php:466 msgid "3 installments" msgstr "3 cuotas" -#: ../../src/Translations/AdminTranslations.php:466 +#: ../../src/Translations/AdminTranslations.php:467 msgid "4 installments" msgstr "4 cuotas" -#: ../../src/Translations/AdminTranslations.php:467 +#: ../../src/Translations/AdminTranslations.php:468 msgid "5 installments" msgstr "5 cuotas" -#: ../../src/Translations/AdminTranslations.php:468 +#: ../../src/Translations/AdminTranslations.php:469 msgid "6 installments" msgstr "6 cuotas" -#: ../../src/Translations/AdminTranslations.php:469 +#: ../../src/Translations/AdminTranslations.php:470 msgid "10 installments" msgstr "10 cuotas" -#: ../../src/Translations/AdminTranslations.php:470 +#: ../../src/Translations/AdminTranslations.php:471 msgid "12 installments" msgstr "12 cuotas" -#: ../../src/Translations/AdminTranslations.php:471 +#: ../../src/Translations/AdminTranslations.php:472 msgid "15 installments" msgstr "15 cuotas" -#: ../../src/Translations/AdminTranslations.php:472 +#: ../../src/Translations/AdminTranslations.php:473 msgid "18 installments" msgstr "18 cuotas" -#: ../../src/Translations/AdminTranslations.php:473 +#: ../../src/Translations/AdminTranslations.php:474 msgid "24 installments" msgstr "24 cuotas" -#: ../../src/Translations/AdminTranslations.php:474, -#: ../../src/Translations/AdminTranslations.php:584 +#: ../../src/Translations/AdminTranslations.php:475, +#: ../../src/Translations/AdminTranslations.php:585 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:475, -#: ../../src/Translations/AdminTranslations.php:585, -#: ../../src/Translations/AdminTranslations.php:681, -#: ../../src/Translations/AdminTranslations.php:738, -#: ../../src/Translations/AdminTranslations.php:797, -#: ../../src/Translations/AdminTranslations.php:893 +#: ../../src/Translations/AdminTranslations.php:476, +#: ../../src/Translations/AdminTranslations.php:586, +#: ../../src/Translations/AdminTranslations.php:682, +#: ../../src/Translations/AdminTranslations.php:739, +#: ../../src/Translations/AdminTranslations.php:798, +#: ../../src/Translations/AdminTranslations.php:894 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." -#: ../../src/Translations/AdminTranslations.php:476 +#: ../../src/Translations/AdminTranslations.php:477 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../src/Translations/AdminTranslations.php:477 +#: ../../src/Translations/AdminTranslations.php:478 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -822,39 +832,39 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../src/Translations/AdminTranslations.php:478 +#: ../../src/Translations/AdminTranslations.php:479 msgid "Redirect" msgstr "Redirect" -#: ../../src/Translations/AdminTranslations.php:479 +#: ../../src/Translations/AdminTranslations.php:480 msgid "Modal" msgstr "Modal" -#: ../../src/Translations/AdminTranslations.php:480 +#: ../../src/Translations/AdminTranslations.php:481 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../src/Translations/AdminTranslations.php:481 +#: ../../src/Translations/AdminTranslations.php:482 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?" -#: ../../src/Translations/AdminTranslations.php:484 +#: ../../src/Translations/AdminTranslations.php:485 msgid "Success URL" msgstr "URL de éxito" -#: ../../src/Translations/AdminTranslations.php:485 +#: ../../src/Translations/AdminTranslations.php:486 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." -#: ../../src/Translations/AdminTranslations.php:486 +#: ../../src/Translations/AdminTranslations.php:487 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../src/Translations/AdminTranslations.php:487 +#: ../../src/Translations/AdminTranslations.php:488 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 " @@ -864,11 +874,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../src/Translations/AdminTranslations.php:488 +#: ../../src/Translations/AdminTranslations.php:489 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../src/Translations/AdminTranslations.php:489 +#: ../../src/Translations/AdminTranslations.php:490 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -876,13 +886,13 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../src/Translations/AdminTranslations.php:490, -#: ../../src/Translations/AdminTranslations.php:682 +#: ../../src/Translations/AdminTranslations.php:491, +#: ../../src/Translations/AdminTranslations.php:683 msgid "Automatic decline of payments without instant approval" msgstr "Rechazo automático de pagos sin aprobación instantanea" -#: ../../src/Translations/AdminTranslations.php:491, -#: ../../src/Translations/AdminTranslations.php:683 +#: ../../src/Translations/AdminTranslations.php:492, +#: ../../src/Translations/AdminTranslations.php:684 msgid "" "Enable it if you want to automatically decline payments that are not " "instantly approved by banks or other institutions." @@ -890,55 +900,46 @@ msgstr "" "Actívalo si quieres rechazar automáticamente los pagos que no son aprobados " "instantáneamente por bancos u otros compradores." -#: ../../src/Translations/AdminTranslations.php:492 +#: ../../src/Translations/AdminTranslations.php:493 msgid "Debit, Credit and Invoice in Mercado Pago environment." msgstr "Débito, crédito y efectivo, en Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:495, -#: ../../src/Translations/AdminTranslations.php:586, -#: ../../src/Translations/AdminTranslations.php:686, -#: ../../src/Translations/AdminTranslations.php:747, -#: ../../src/Translations/AdminTranslations.php:806, -#: ../../src/Translations/AdminTranslations.php:894 -msgid "Discount in Mercado Pago Checkouts" -msgstr "Descuento en los checkouts de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:496, #: ../../src/Translations/AdminTranslations.php:587, #: ../../src/Translations/AdminTranslations.php:687, #: ../../src/Translations/AdminTranslations.php:748, #: ../../src/Translations/AdminTranslations.php:807, #: ../../src/Translations/AdminTranslations.php:895 -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." +msgid "Discount in Mercado Pago Checkouts" +msgstr "Descuento en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:497, -#: ../../src/Translations/AdminTranslations.php:500, #: ../../src/Translations/AdminTranslations.php:588, -#: ../../src/Translations/AdminTranslations.php:591, #: ../../src/Translations/AdminTranslations.php:688, -#: ../../src/Translations/AdminTranslations.php:691, #: ../../src/Translations/AdminTranslations.php:749, -#: ../../src/Translations/AdminTranslations.php:752, #: ../../src/Translations/AdminTranslations.php:808, -#: ../../src/Translations/AdminTranslations.php:811, -#: ../../src/Translations/AdminTranslations.php:896, -#: ../../src/Translations/AdminTranslations.php:899 -msgid "Activate and show this information on Mercado Pago Checkout" -msgstr "Activar y mostrar esa información en el checkout Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:896 +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." #: ../../src/Translations/AdminTranslations.php:498, +#: ../../src/Translations/AdminTranslations.php:501, #: ../../src/Translations/AdminTranslations.php:589, +#: ../../src/Translations/AdminTranslations.php:592, #: ../../src/Translations/AdminTranslations.php:689, +#: ../../src/Translations/AdminTranslations.php:692, #: ../../src/Translations/AdminTranslations.php:750, +#: ../../src/Translations/AdminTranslations.php:753, #: ../../src/Translations/AdminTranslations.php:809, -#: ../../src/Translations/AdminTranslations.php:897 -msgid "Commission in Mercado Pago Checkouts" -msgstr "Comisiones en los checkouts de Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:812, +#: ../../src/Translations/AdminTranslations.php:897, +#: ../../src/Translations/AdminTranslations.php:900 +msgid "Activate and show this information on Mercado Pago Checkout" +msgstr "Activar y mostrar esa información en el checkout Mercado Pago" #: ../../src/Translations/AdminTranslations.php:499, #: ../../src/Translations/AdminTranslations.php:590, @@ -946,6 +947,15 @@ msgstr "Comisiones en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:751, #: ../../src/Translations/AdminTranslations.php:810, #: ../../src/Translations/AdminTranslations.php:898 +msgid "Commission in Mercado Pago Checkouts" +msgstr "Comisiones en los checkouts de Mercado Pago" + +#: ../../src/Translations/AdminTranslations.php:500, +#: ../../src/Translations/AdminTranslations.php:591, +#: ../../src/Translations/AdminTranslations.php:691, +#: ../../src/Translations/AdminTranslations.php:752, +#: ../../src/Translations/AdminTranslations.php:811, +#: ../../src/Translations/AdminTranslations.php:899 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -953,35 +963,35 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:501 +#: ../../src/Translations/AdminTranslations.php:502 msgid "This seems to be an invalid URL" msgstr "Esto parece ser una URL no válida" -#: ../../src/Translations/AdminTranslations.php:514, -#: ../../src/Translations/AdminTranslations.php:520 +#: ../../src/Translations/AdminTranslations.php:515, +#: ../../src/Translations/AdminTranslations.php:521 msgid "Payment in installments without card in the store checkout is" msgstr "Cuotas sin tarjeta en el checkout de la tienda está" -#: ../../src/Translations/AdminTranslations.php:538, -#: ../../src/Translations/AdminTranslations.php:544 +#: ../../src/Translations/AdminTranslations.php:539, +#: ../../src/Translations/AdminTranslations.php:545 msgid "The installments without card component is" msgstr "El componente de cuotas sin tarjeta está" -#: ../../src/Translations/AdminTranslations.php:549, -#: ../../src/Translations/AdminTranslations.php:553 +#: ../../src/Translations/AdminTranslations.php:550, +#: ../../src/Translations/AdminTranslations.php:554 msgid "Installments without card" msgstr "Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:550, -#: ../../src/Translations/AdminTranslations.php:552 +#: ../../src/Translations/AdminTranslations.php:551, +#: ../../src/Translations/AdminTranslations.php:553 msgid "Customers who buy on spot and pay later in up to 12 installments" msgstr "Tus clientes compran al instante y pagan después en hasta 12 cuotas" -#: ../../src/Translations/AdminTranslations.php:551 +#: ../../src/Translations/AdminTranslations.php:552 msgid "Mercado Pago - Installments without card" msgstr "Mercado Pago - Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:554 +#: ../../src/Translations/AdminTranslations.php:555 msgid "" "Reach millions of buyers by offering Mercado Credito as a payment method. " "Our flexible payment options give your customers the possibility to buy " @@ -995,11 +1005,11 @@ msgstr "" "necesidad de utilizar una tarjeta. Para tu negocio, la aprobación de la " "compra es inmediata y está garantizada." -#: ../../src/Translations/AdminTranslations.php:558 +#: ../../src/Translations/AdminTranslations.php:559 msgid "Activate installments without card in your store checkout" msgstr "Activar cuotas sin tarjeta en el checkout de tu tienda" -#: ../../src/Translations/AdminTranslations.php:559 +#: ../../src/Translations/AdminTranslations.php:560 msgid "" "Offer the option to pay in installments without card directly from your " "store's checkout." @@ -1007,37 +1017,37 @@ msgstr "" "Ofrece la opción de pago en cuotas sin tarjeta directo desde el checkout de " "tu tienda." -#: ../../src/Translations/AdminTranslations.php:562 +#: ../../src/Translations/AdminTranslations.php:563 msgid "Checkout visualization" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:563, -#: ../../src/Translations/AdminTranslations.php:583 +#: ../../src/Translations/AdminTranslations.php:564, +#: ../../src/Translations/AdminTranslations.php:584 msgid "Check below how this feature will be displayed to your customers:" msgstr "A continuación verás cómo este recurso aparecerá para tus clientes:" -#: ../../src/Translations/AdminTranslations.php:564 +#: ../../src/Translations/AdminTranslations.php:565 msgid "Checkout Preview" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:565 +#: ../../src/Translations/AdminTranslations.php:566 msgid "PREVIEW" msgstr "DEMO" -#: ../../src/Translations/AdminTranslations.php:567 +#: ../../src/Translations/AdminTranslations.php:568 msgid "It is possible to edit the title. Maximum of 85 characters." msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85." -#: ../../src/Translations/AdminTranslations.php:568 +#: ../../src/Translations/AdminTranslations.php:569 msgid "Checkout without card" msgstr "Hasta 12 pagos sin tarjeta con Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:574 +#: ../../src/Translations/AdminTranslations.php:575 msgid "" "Inform your customers about the option of paying in installments without card" msgstr "Informa a tus clientes sobre la opción de cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:575 +#: ../../src/Translations/AdminTranslations.php:576 msgid "" "By activating the installments without card component, you increase your " "chances of selling." @@ -1045,62 +1055,62 @@ msgstr "" "Al activar el componente de cuotas sin tarjeta,, aumentarás tus " "posibilidades de venta." -#: ../../src/Translations/AdminTranslations.php:578 +#: ../../src/Translations/AdminTranslations.php:579 msgid "Banner on the product page | Computer version" msgstr "Componente en la página del producto | Versión para computadora" -#: ../../src/Translations/AdminTranslations.php:579 +#: ../../src/Translations/AdminTranslations.php:580 msgid "Banner on the product page | Cellphone version" msgstr "Componente en la página del producto | Versión para celular" -#: ../../src/Translations/AdminTranslations.php:580 +#: ../../src/Translations/AdminTranslations.php:581 msgid "Computer" msgstr "Computadora" -#: ../../src/Translations/AdminTranslations.php:581 +#: ../../src/Translations/AdminTranslations.php:582 msgid "Mobile" msgstr "Celular" -#: ../../src/Translations/AdminTranslations.php:582 +#: ../../src/Translations/AdminTranslations.php:583 msgid "Component visualization" msgstr "Visualización del componente" -#: ../../src/Translations/AdminTranslations.php:604, -#: ../../src/Translations/AdminTranslations.php:610 +#: ../../src/Translations/AdminTranslations.php:605, +#: ../../src/Translations/AdminTranslations.php:611 msgid "Transparent Checkout for credit cards is" msgstr "El Checkout Transparente de las tarjetas de crédito está" -#: ../../src/Translations/AdminTranslations.php:628, -#: ../../src/Translations/AdminTranslations.php:634 +#: ../../src/Translations/AdminTranslations.php:629, +#: ../../src/Translations/AdminTranslations.php:635 msgid "Payments via Mercado Pago accounts are" msgstr "Los pagos a través de la cuenta de Mercado Pago están" -#: ../../src/Translations/AdminTranslations.php:651, -#: ../../src/Translations/AdminTranslations.php:666 +#: ../../src/Translations/AdminTranslations.php:652, +#: ../../src/Translations/AdminTranslations.php:667 msgid "Debit and Credit" msgstr "Débito e crédito" -#: ../../src/Translations/AdminTranslations.php:652, -#: ../../src/Translations/AdminTranslations.php:654, -#: ../../src/Translations/AdminTranslations.php:716, -#: ../../src/Translations/AdminTranslations.php:777, -#: ../../src/Translations/AdminTranslations.php:856, -#: ../../src/Translations/AdminTranslations.php:858 -msgid "Transparent Checkout in your store environment" -msgstr "Checkout Transparente en tu tienda" - #: ../../src/Translations/AdminTranslations.php:653, +#: ../../src/Translations/AdminTranslations.php:655, #: ../../src/Translations/AdminTranslations.php:717, #: ../../src/Translations/AdminTranslations.php:778, -#: ../../src/Translations/AdminTranslations.php:857 +#: ../../src/Translations/AdminTranslations.php:857, +#: ../../src/Translations/AdminTranslations.php:859 +msgid "Transparent Checkout in your store environment" +msgstr "Checkout Transparente en tu tienda" + +#: ../../src/Translations/AdminTranslations.php:654, +#: ../../src/Translations/AdminTranslations.php:718, +#: ../../src/Translations/AdminTranslations.php:779, +#: ../../src/Translations/AdminTranslations.php:858 msgid "Mercado pago - Customized Checkout" msgstr "Mercado Pago - Checkout Personalizado" -#: ../../src/Translations/AdminTranslations.php:655 +#: ../../src/Translations/AdminTranslations.php:656 msgid "Transparent Checkout | Credit card" msgstr "Checkout Transparente | Tarjeta de Crédito" -#: ../../src/Translations/AdminTranslations.php:656 +#: ../../src/Translations/AdminTranslations.php:657 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and with the security from Mercado Pago." @@ -1108,11 +1118,11 @@ msgstr "" "Con el Checkout Transparente, puedes vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:657 +#: ../../src/Translations/AdminTranslations.php:658 msgid "Mercado Pago Plugin general settings" msgstr "Configuraciones generales del plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:661 +#: ../../src/Translations/AdminTranslations.php:662 msgid "" "By disabling it, you will disable all credit cards payments from Mercado " "Pago Transparent Checkout." @@ -1120,11 +1130,11 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:668 +#: ../../src/Translations/AdminTranslations.php:669 msgid "Installments Fees" msgstr "Tasas de pago en cuotas" -#: ../../src/Translations/AdminTranslations.php:669 +#: ../../src/Translations/AdminTranslations.php:670 msgid "" "Set installment fees and whether they will be charged from the store or from " "the buyer." @@ -1132,15 +1142,15 @@ msgstr "" "Configura las tasas de las cuotas y si se las cobrarán a la tienda o al " "comprador." -#: ../../src/Translations/AdminTranslations.php:670 +#: ../../src/Translations/AdminTranslations.php:671 msgid "Set fees" msgstr "Configurar tasas" -#: ../../src/Translations/AdminTranslations.php:675 +#: ../../src/Translations/AdminTranslations.php:676 msgid "Payments via Mercado Pago account" msgstr "Pagos a través de la cuenta de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:676 +#: ../../src/Translations/AdminTranslations.php:677 msgid "" "Your customers pay faster with saved cards, money balance or other available " "methods in their Mercado Pago accounts." @@ -1148,26 +1158,26 @@ msgstr "" "Tus clientes pagan más rápido con tarjetas guardadas, dinero disponible o " "con otros medios disponibles en sus cuentas de MP." -#: ../../src/Translations/AdminTranslations.php:679 +#: ../../src/Translations/AdminTranslations.php:680 msgid "Check an example of how it will appear in your store:" msgstr "Conoce un ejemplo de cómo aparecerá en la tienda:" -#: ../../src/Translations/AdminTranslations.php:680 +#: ../../src/Translations/AdminTranslations.php:681 msgid "Advanced configuration of the personalized payment experience" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:715, -#: ../../src/Translations/AdminTranslations.php:729 +#: ../../src/Translations/AdminTranslations.php:716, +#: ../../src/Translations/AdminTranslations.php:730 msgid "Invoice" msgstr "Efectivo" -#: ../../src/Translations/AdminTranslations.php:718 +#: ../../src/Translations/AdminTranslations.php:719 msgid "Transparent Checkout | Invoice or Loterica" msgstr "Checkout Transparente | Efectivo" -#: ../../src/Translations/AdminTranslations.php:719, -#: ../../src/Translations/AdminTranslations.php:780, -#: ../../src/Translations/AdminTranslations.php:860 +#: ../../src/Translations/AdminTranslations.php:720, +#: ../../src/Translations/AdminTranslations.php:781, +#: ../../src/Translations/AdminTranslations.php:861 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and all the safety from Mercado Pago." @@ -1175,12 +1185,12 @@ msgstr "" "Con el Checkout Transparente, podrás vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:723, -#: ../../src/Translations/AdminTranslations.php:784 +#: ../../src/Translations/AdminTranslations.php:724, +#: ../../src/Translations/AdminTranslations.php:785 msgid "Enable the Checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:724 +#: ../../src/Translations/AdminTranslations.php:725 msgid "" "By disabling it, you will disable all invoice payments from Mercado Pago " "Transparent Checkout." @@ -1188,34 +1198,34 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago en efectivo en el " "Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:725 +#: ../../src/Translations/AdminTranslations.php:726 msgid "The transparent checkout for tickets is enabled." msgstr "El Checkout Transparente está activo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:726 +#: ../../src/Translations/AdminTranslations.php:727 msgid "The transparent checkout for tickets is disabled." msgstr "El Checkout Transparente está inactivo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:735 +#: ../../src/Translations/AdminTranslations.php:736 msgid "Payment Due" msgstr "Fecha de pago" -#: ../../src/Translations/AdminTranslations.php:736 +#: ../../src/Translations/AdminTranslations.php:737 msgid "In how many days will cash payments expire." msgstr "En cuántos días vencerán los pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:737 +#: ../../src/Translations/AdminTranslations.php:738 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../src/Translations/AdminTranslations.php:739, -#: ../../src/Translations/AdminTranslations.php:798 +#: ../../src/Translations/AdminTranslations.php:740, +#: ../../src/Translations/AdminTranslations.php:799 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../src/Translations/AdminTranslations.php:740, -#: ../../src/Translations/AdminTranslations.php:799 +#: ../../src/Translations/AdminTranslations.php:741, +#: ../../src/Translations/AdminTranslations.php:800 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 " @@ -1225,41 +1235,41 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../src/Translations/AdminTranslations.php:741, -#: ../../src/Translations/AdminTranslations.php:800 +#: ../../src/Translations/AdminTranslations.php:742, +#: ../../src/Translations/AdminTranslations.php:801 msgid "Reduce inventory is enabled." msgstr "Reducir inventario está activo." -#: ../../src/Translations/AdminTranslations.php:742, -#: ../../src/Translations/AdminTranslations.php:801 +#: ../../src/Translations/AdminTranslations.php:743, +#: ../../src/Translations/AdminTranslations.php:802 msgid "Reduce inventory is disabled." msgstr "Reducir inventario está inactivo." -#: ../../src/Translations/AdminTranslations.php:744, -#: ../../src/Translations/AdminTranslations.php:803 +#: ../../src/Translations/AdminTranslations.php:745, +#: ../../src/Translations/AdminTranslations.php:804 msgid "Enable the available payment methods" msgstr "Habilita los medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:745, -#: ../../src/Translations/AdminTranslations.php:804 +#: ../../src/Translations/AdminTranslations.php:746, +#: ../../src/Translations/AdminTranslations.php:805 msgid "Choose the available payment methods in your store." msgstr "Elige los medios de pago que se aceptan en la tienda." -#: ../../src/Translations/AdminTranslations.php:746, -#: ../../src/Translations/AdminTranslations.php:805 +#: ../../src/Translations/AdminTranslations.php:747, +#: ../../src/Translations/AdminTranslations.php:806 msgid "All payment methods" msgstr "Medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:776, -#: ../../src/Translations/AdminTranslations.php:790 +#: ../../src/Translations/AdminTranslations.php:777, +#: ../../src/Translations/AdminTranslations.php:791 msgid "PSE" msgstr "PSE" -#: ../../src/Translations/AdminTranslations.php:779 +#: ../../src/Translations/AdminTranslations.php:780 msgid "Transparent Checkout PSE" msgstr "Pago transparente PSE" -#: ../../src/Translations/AdminTranslations.php:785 +#: ../../src/Translations/AdminTranslations.php:786 msgid "" "By deactivating it, you will disable PSE payments from Mercado Pago " "Transparent Checkout." @@ -1267,49 +1277,49 @@ msgstr "" "Al desactivarlo, desactivará los pagos PSE de Mercado Pago Transparente " "Checkout." -#: ../../src/Translations/AdminTranslations.php:786 +#: ../../src/Translations/AdminTranslations.php:787 msgid "The transparent checkout for PSE is enabled." msgstr "El Checkout Transparente está activo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:787 +#: ../../src/Translations/AdminTranslations.php:788 msgid "The transparent checkout for PSE is disabled." msgstr "El Checkout Transparente está inactivo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:796 +#: ../../src/Translations/AdminTranslations.php:797 msgid "Advanced configuration of the PSE payment experience" msgstr "Configuración avanzada de la experiencia de pago PSE" -#: ../../src/Translations/AdminTranslations.php:824, -#: ../../src/Translations/AdminTranslations.php:830 +#: ../../src/Translations/AdminTranslations.php:825, +#: ../../src/Translations/AdminTranslations.php:831 msgid "The transparent checkout for Pix payment is" msgstr "El Checkout Transparente está" -#: ../../src/Translations/AdminTranslations.php:848 +#: ../../src/Translations/AdminTranslations.php:849 msgid "Go to the" msgstr "Ve al área" -#: ../../src/Translations/AdminTranslations.php:849 +#: ../../src/Translations/AdminTranslations.php:850 msgid "Your Profile" msgstr "Tu Perfil" -#: ../../src/Translations/AdminTranslations.php:850 +#: ../../src/Translations/AdminTranslations.php:851 msgid "area and choose the" msgstr "y elige la sección" -#: ../../src/Translations/AdminTranslations.php:851 +#: ../../src/Translations/AdminTranslations.php:852 msgid "Your Pix Keys section" msgstr "Tus claves Pix" -#: ../../src/Translations/AdminTranslations.php:855, -#: ../../src/Translations/AdminTranslations.php:870 +#: ../../src/Translations/AdminTranslations.php:856, +#: ../../src/Translations/AdminTranslations.php:871 msgid "Pix" msgstr "Pix" -#: ../../src/Translations/AdminTranslations.php:859 +#: ../../src/Translations/AdminTranslations.php:860 msgid "Transparent Checkout | Pix" msgstr "Checkout Transparente | Pix" -#: ../../src/Translations/AdminTranslations.php:865 +#: ../../src/Translations/AdminTranslations.php:866 msgid "" "By disabling it, you will disable all Pix payments from Mercado Pago " "Transparent Checkout." @@ -1317,85 +1327,85 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:872 +#: ../../src/Translations/AdminTranslations.php:873 msgid "Expiration for payments via Pix" msgstr "Vencimiento para pagos con Pix" -#: ../../src/Translations/AdminTranslations.php:873 +#: ../../src/Translations/AdminTranslations.php:874 msgid "Set the limit in minutes for your clients to pay via Pix." msgstr "" "Define el límite de minutos para que tus clientes puedan pagar con Pix." -#: ../../src/Translations/AdminTranslations.php:874 +#: ../../src/Translations/AdminTranslations.php:875 msgid "15 minutes" msgstr "15 minutos" -#: ../../src/Translations/AdminTranslations.php:875 +#: ../../src/Translations/AdminTranslations.php:876 msgid "30 minutes (recommended)" msgstr "30 minutos (recomendado)" -#: ../../src/Translations/AdminTranslations.php:876 +#: ../../src/Translations/AdminTranslations.php:877 msgid "60 minutes" msgstr "60 minutos" -#: ../../src/Translations/AdminTranslations.php:877 +#: ../../src/Translations/AdminTranslations.php:878 msgid "12 hours" msgstr "12 horas" -#: ../../src/Translations/AdminTranslations.php:878 +#: ../../src/Translations/AdminTranslations.php:879 msgid "24 hours" msgstr "24 horas" -#: ../../src/Translations/AdminTranslations.php:879 +#: ../../src/Translations/AdminTranslations.php:880 msgid "2 days" msgstr "2 días" -#: ../../src/Translations/AdminTranslations.php:880 +#: ../../src/Translations/AdminTranslations.php:881 msgid "3 days" msgstr "3 días" -#: ../../src/Translations/AdminTranslations.php:881 +#: ../../src/Translations/AdminTranslations.php:882 msgid "4 days" msgstr "4 días" -#: ../../src/Translations/AdminTranslations.php:882 +#: ../../src/Translations/AdminTranslations.php:883 msgid "5 days" msgstr "5 días" -#: ../../src/Translations/AdminTranslations.php:883 +#: ../../src/Translations/AdminTranslations.php:884 msgid "6 days" msgstr "6 días" -#: ../../src/Translations/AdminTranslations.php:884 +#: ../../src/Translations/AdminTranslations.php:885 msgid "7 days" msgstr "7 días" -#: ../../src/Translations/AdminTranslations.php:889 +#: ../../src/Translations/AdminTranslations.php:890 msgid "Would you like to know how Pix works?" msgstr "¿Quieres saber cómo funciona Pix?" -#: ../../src/Translations/AdminTranslations.php:890 +#: ../../src/Translations/AdminTranslations.php:891 msgid "" "We have a dedicated page where we explain how it works and its advantages." msgstr "Creamos una página que explica su funcionamiento y sus vantajas." -#: ../../src/Translations/AdminTranslations.php:891 +#: ../../src/Translations/AdminTranslations.php:892 msgid "Find out more about Pix" msgstr "Saber más sobre Pix" -#: ../../src/Translations/AdminTranslations.php:892 +#: ../../src/Translations/AdminTranslations.php:893 msgid "Advanced configuration of the Pix experience" msgstr "Configuración avanzada de la experiencia Pix" -#: ../../src/Translations/AdminTranslations.php:900 +#: ../../src/Translations/AdminTranslations.php:901 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." -#: ../../src/Translations/AdminTranslations.php:901 +#: ../../src/Translations/AdminTranslations.php:902 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../src/Translations/AdminTranslations.php:903 +#: ../../src/Translations/AdminTranslations.php:904 msgid "" "Choose which data to register as Pix keys. After registering, you can set up " "Pix in your checkout." @@ -1403,7 +1413,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el Pix en tu checkout." -#: ../../src/Translations/AdminTranslations.php:904 +#: ../../src/Translations/AdminTranslations.php:905 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1411,7 +1421,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../src/Translations/AdminTranslations.php:905 +#: ../../src/Translations/AdminTranslations.php:906 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1419,11 +1429,11 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../src/Translations/AdminTranslations.php:906 +#: ../../src/Translations/AdminTranslations.php:907 msgid "Learn more about Pix" msgstr "Más información sobre Pix" -#: ../../src/Translations/AdminTranslations.php:907 +#: ../../src/Translations/AdminTranslations.php:908 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1431,82 +1441,82 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../src/Translations/AdminTranslations.php:908 +#: ../../src/Translations/AdminTranslations.php:909 msgid "click here." msgstr "haz clic aquí." -#: ../../src/Translations/AdminTranslations.php:921 +#: ../../src/Translations/AdminTranslations.php:922 msgid "To enable test mode" msgstr "Para activar el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:923 +#: ../../src/Translations/AdminTranslations.php:924 msgid "copy your test credentials" msgstr "copia tus credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:924 +#: ../../src/Translations/AdminTranslations.php:925 msgid "and paste them above in section 1 of this page" msgstr "y pégalas en la sección 1 de esta página" -#: ../../src/Translations/AdminTranslations.php:929 +#: ../../src/Translations/AdminTranslations.php:930 msgid "Create your" msgstr "Crea tu" -#: ../../src/Translations/AdminTranslations.php:931 +#: ../../src/Translations/AdminTranslations.php:932 msgid "test user" msgstr "usuario de prueba" -#: ../../src/Translations/AdminTranslations.php:932 +#: ../../src/Translations/AdminTranslations.php:933 msgid "" "(Optional. Can be used in Production Mode and Test Mode, to test payments)" msgstr "" "(Opcional. Se puede utilizar en modo de producción y en modo de prueba, para " "probar los pagos)" -#: ../../src/Translations/AdminTranslations.php:938 +#: ../../src/Translations/AdminTranslations.php:939 msgid "Use our test cards" msgstr "Utiliza nuestras tarjetas de prueba" -#: ../../src/Translations/AdminTranslations.php:939 +#: ../../src/Translations/AdminTranslations.php:940 msgid "never use real cards" msgstr "nunca utilices tarjetas reales" -#: ../../src/Translations/AdminTranslations.php:945 +#: ../../src/Translations/AdminTranslations.php:946 msgid "Visit your store" msgstr "Visita tu tienda" -#: ../../src/Translations/AdminTranslations.php:946 +#: ../../src/Translations/AdminTranslations.php:947 msgid "to test purchases" msgstr "para testear compras" -#: ../../src/Translations/AdminTranslations.php:950 +#: ../../src/Translations/AdminTranslations.php:951 msgid "4. Test your store before you sell" msgstr "4. Testea tu tienda antes de vender" -#: ../../src/Translations/AdminTranslations.php:951 +#: ../../src/Translations/AdminTranslations.php:952 msgid "Choose how you want to operate your store:" msgstr "Elige cómo quieres operar tu tienda:" -#: ../../src/Translations/AdminTranslations.php:952 +#: ../../src/Translations/AdminTranslations.php:953 msgid "Test Mode" msgstr "Modo Test" -#: ../../src/Translations/AdminTranslations.php:953 +#: ../../src/Translations/AdminTranslations.php:954 msgid "Sale Mode (Production)" msgstr "Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:954 +#: ../../src/Translations/AdminTranslations.php:955 msgid "Mercado Pago payment methods in Production Mode" msgstr "Medios de pago Mercado Pago en Modo Produción" -#: ../../src/Translations/AdminTranslations.php:955 +#: ../../src/Translations/AdminTranslations.php:956 msgid "Mercado Pago payment methods in Test Mode" msgstr "Medios de pago Mercado Pago en Modo Test" -#: ../../src/Translations/AdminTranslations.php:956 +#: ../../src/Translations/AdminTranslations.php:957 msgid "Enter test credentials" msgstr "Ingresa las credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:957 +#: ../../src/Translations/AdminTranslations.php:958 msgid "" "Test the experience in Test Mode and then enable the Sale Mode (Production) " "to sell." @@ -1514,114 +1524,114 @@ msgstr "" "Testea la experiencia en Modo Test. Luego activa el Modo Ventas (Producción) " "para realizar ventas." -#: ../../src/Translations/AdminTranslations.php:958 +#: ../../src/Translations/AdminTranslations.php:959 msgid "Mercado Pago Checkouts disabled for real collections." msgstr "Checkouts Mercado Pago inactivos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:959 +#: ../../src/Translations/AdminTranslations.php:960 msgid "Test Mode rules." msgstr "Reglas del modo test." -#: ../../src/Translations/AdminTranslations.php:960 +#: ../../src/Translations/AdminTranslations.php:961 msgid "Mercado Pago Checkouts enabled for real collections." msgstr "Checkouts Mercado Pago activos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:961 +#: ../../src/Translations/AdminTranslations.php:962 msgid "The clients can make real purchases in your store." msgstr "Los clientes pueden hacer compras reales en tu tienda." -#: ../../src/Translations/AdminTranslations.php:966 +#: ../../src/Translations/AdminTranslations.php:967 msgid "Store in sale mode (Production)" msgstr "Tienda en Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:967 +#: ../../src/Translations/AdminTranslations.php:968 msgid "Store under test" msgstr "Tienda en Modo Test" -#: ../../src/Translations/AdminTranslations.php:968 +#: ../../src/Translations/AdminTranslations.php:969 msgid "Save changes" msgstr "Guardar cambios" -#: ../../src/Translations/AdminTranslations.php:980 +#: ../../src/Translations/AdminTranslations.php:981 msgid "Store business fields are valid" msgstr "Los campos comerciales de la tienda son válidos" -#: ../../src/Translations/AdminTranslations.php:981 +#: ../../src/Translations/AdminTranslations.php:982 msgid "Store business fields could not be validated" msgstr "Los campos comerciales de la tienda no se pudieron validar" -#: ../../src/Translations/AdminTranslations.php:982 +#: ../../src/Translations/AdminTranslations.php:983 msgid "At least one payment method is enabled" msgstr "Al menos un método de pago está habilitado" -#: ../../src/Translations/AdminTranslations.php:983 +#: ../../src/Translations/AdminTranslations.php:984 msgid "No payment method enabled" msgstr "Ningún método de pago habilitado" -#: ../../src/Translations/AdminTranslations.php:984 +#: ../../src/Translations/AdminTranslations.php:985 msgid "Credentials fields are valid" msgstr "Los campos de la credencial son válidos" -#: ../../src/Translations/AdminTranslations.php:985 +#: ../../src/Translations/AdminTranslations.php:986 msgid "Credentials fields could not be validated" msgstr "No se pudieron validar los campos de credenciales" -#: ../../src/Translations/AdminTranslations.php:997 +#: ../../src/Translations/AdminTranslations.php:998 msgid "Valid Public Key" msgstr "Public key válida" -#: ../../src/Translations/AdminTranslations.php:998 +#: ../../src/Translations/AdminTranslations.php:999 msgid "Invalid Public Key" msgstr "Public key no válida" -#: ../../src/Translations/AdminTranslations.php:999 +#: ../../src/Translations/AdminTranslations.php:1000 msgid "Valid Access Token" msgstr "Access token válido" -#: ../../src/Translations/AdminTranslations.php:1000 +#: ../../src/Translations/AdminTranslations.php:1001 msgid "Invalid Access Token" msgstr "Access token no válido" -#: ../../src/Translations/AdminTranslations.php:1012 +#: ../../src/Translations/AdminTranslations.php:1013 msgid "Credentials were updated" msgstr "Se actualizaron las credenciales" -#: ../../src/Translations/AdminTranslations.php:1013 +#: ../../src/Translations/AdminTranslations.php:1014 msgid "" "Your store has exited Test Mode and is making real sales in Production Mode." msgstr "" "Ahora su tienda está fuera del modo de prueba y está realizando ventas " "reales en el modo de producción." -#: ../../src/Translations/AdminTranslations.php:1014 +#: ../../src/Translations/AdminTranslations.php:1015 msgid "To test the store, re-enter both test credentials." msgstr "Para probar la tienda, vuelva a ingresar ambas credenciales de prueba." -#: ../../src/Translations/AdminTranslations.php:1015 +#: ../../src/Translations/AdminTranslations.php:1016 msgid "Invalid credentials" msgstr "Credenciales no válidas" -#: ../../src/Translations/AdminTranslations.php:1016 +#: ../../src/Translations/AdminTranslations.php:1017 msgid "See our manual to learn" msgstr "Consulte nuestro manual para saber" -#: ../../src/Translations/AdminTranslations.php:1017 +#: ../../src/Translations/AdminTranslations.php:1018 msgid "how to enter the credentials the right way." msgstr "como ingresar las credenciales de forma correcta." -#: ../../src/Translations/AdminTranslations.php:1018 +#: ../../src/Translations/AdminTranslations.php:1019 msgid " for test mode" msgstr " para el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:1030 +#: ../../src/Translations/AdminTranslations.php:1031 msgid "Store information is valid" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:1043 +#: ../../src/Translations/AdminTranslations.php:1044 msgid "Attention:" msgstr "Atención:" -#: ../../src/Translations/AdminTranslations.php:1044 +#: ../../src/Translations/AdminTranslations.php:1045 msgid "" "The currency settings you have in WooCommerce are not compatible with the " "currency you use in your Mercado Pago account. Please activate the currency " @@ -1630,19 +1640,19 @@ msgstr "" "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." -#: ../../src/Translations/AdminTranslations.php:1047 +#: ../../src/Translations/AdminTranslations.php:1048 msgid "We are converting your currency from: " msgstr "Ahora convertimos tu moneda de: " -#: ../../src/Translations/AdminTranslations.php:1063 +#: ../../src/Translations/AdminTranslations.php:1064 msgid "to " msgstr "a " -#: ../../src/Translations/AdminTranslations.php:1074 +#: ../../src/Translations/AdminTranslations.php:1075 msgid "Payment status on Mercado Pago" msgstr "Estado de pago en el Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1075 +#: ../../src/Translations/AdminTranslations.php:1076 msgid "" "This is the payment status of your Mercado Pago Activities. To check the " "order status, please refer to Order details." @@ -1650,52 +1660,52 @@ msgstr "" "Este es el estado del pago de las Actividades de tu Mercado Pago. Para " "consultar el estado del pedido, consulta en Detalles del Pedido." -#: ../../src/Translations/AdminTranslations.php:1076, -#: ../../src/Translations/AdminTranslations.php:1078 +#: ../../src/Translations/AdminTranslations.php:1077, +#: ../../src/Translations/AdminTranslations.php:1079 msgid "View purchase details at Mercado Pago" msgstr "Ver detalles de compra en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1077, -#: ../../src/Translations/AdminTranslations.php:1079, -#: ../../src/Translations/AdminTranslations.php:1081 +#: ../../src/Translations/AdminTranslations.php:1078, +#: ../../src/Translations/AdminTranslations.php:1080, +#: ../../src/Translations/AdminTranslations.php:1082 msgid "Sync order status" msgstr "Sincronizar el estado del pedido" -#: ../../src/Translations/AdminTranslations.php:1080 +#: ../../src/Translations/AdminTranslations.php:1081 msgid "Consult the reasons for refusal" msgstr "Consultar motivos de rechazo" -#: ../../src/Translations/AdminTranslations.php:1082 +#: ../../src/Translations/AdminTranslations.php:1083 msgid "Order update successfully. This page will be reloaded..." msgstr "Actualización del pedido con éxito. Esta página será recargada…" -#: ../../src/Translations/AdminTranslations.php:1083 +#: ../../src/Translations/AdminTranslations.php:1084 msgid "Unable to update order:" msgstr "No se puede actualizar el pedido:" -#: ../../src/Translations/AdminTranslations.php:1084 +#: ../../src/Translations/AdminTranslations.php:1085 msgid "Payment made" msgstr "Pago realizado" -#: ../../src/Translations/AdminTranslations.php:1085 +#: ../../src/Translations/AdminTranslations.php:1086 msgid "Payment made by the buyer and already credited in the account." msgstr "" "El pago realizado por el comprador y que ya está acreditado en la cuenta." -#: ../../src/Translations/AdminTranslations.php:1086 +#: ../../src/Translations/AdminTranslations.php:1087 msgid "Call resolved" msgstr "Llamado resuelto" -#: ../../src/Translations/AdminTranslations.php:1087, -#: ../../src/Translations/AdminTranslations.php:1137 +#: ../../src/Translations/AdminTranslations.php:1088, +#: ../../src/Translations/AdminTranslations.php:1138 msgid "Please contact Mercado Pago for further details." msgstr "Contacta a Mercado Pago para saber más detalles." -#: ../../src/Translations/AdminTranslations.php:1088 +#: ../../src/Translations/AdminTranslations.php:1089 msgid "Payment refunded" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1089 +#: ../../src/Translations/AdminTranslations.php:1090 msgid "" "Your refund request has been made. Please contact Mercado Pago for further " "details." @@ -1703,59 +1713,59 @@ msgstr "" "Tu pedido de reebolso ya fue realizado. Contacta a Mercado Pago para saber " "más detalles." -#: ../../src/Translations/AdminTranslations.php:1090, -#: ../../src/Translations/AdminTranslations.php:1092 +#: ../../src/Translations/AdminTranslations.php:1091, +#: ../../src/Translations/AdminTranslations.php:1093 msgid "Payment returned" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1091 +#: ../../src/Translations/AdminTranslations.php:1092 msgid "The payment has been returned to the client." msgstr "El pago ya fue devuelto al cliente." -#: ../../src/Translations/AdminTranslations.php:1093 +#: ../../src/Translations/AdminTranslations.php:1094 msgid "The payment has been partially returned to the client." msgstr "El pago ya fue devuelto parcialmente al cliente." -#: ../../src/Translations/AdminTranslations.php:1094 +#: ../../src/Translations/AdminTranslations.php:1095 msgid "Payment canceled" msgstr "Pago cancelado" -#: ../../src/Translations/AdminTranslations.php:1095 +#: ../../src/Translations/AdminTranslations.php:1096 msgid "The payment has been successfully canceled." msgstr "El pago fue cancelado con éxito." -#: ../../src/Translations/AdminTranslations.php:1096 +#: ../../src/Translations/AdminTranslations.php:1097 msgid "Purchase canceled" msgstr "Compra cancelada" -#: ../../src/Translations/AdminTranslations.php:1097 +#: ../../src/Translations/AdminTranslations.php:1098 msgid "The payment has been canceled by the customer." msgstr "El pago fue cancelado por el cliente." -#: ../../src/Translations/AdminTranslations.php:1098, -#: ../../src/Translations/AdminTranslations.php:1100, -#: ../../src/Translations/AdminTranslations.php:1102, -#: ../../src/Translations/AdminTranslations.php:1104, -#: ../../src/Translations/AdminTranslations.php:1106, -#: ../../src/Translations/AdminTranslations.php:1114, -#: ../../src/Translations/AdminTranslations.php:1116, -#: ../../src/Translations/AdminTranslations.php:1118, -#: ../../src/Translations/AdminTranslations.php:1120, -#: ../../src/Translations/AdminTranslations.php:1122, -#: ../../src/Translations/AdminTranslations.php:1124, -#: ../../src/Translations/AdminTranslations.php:1126, -#: ../../src/Translations/AdminTranslations.php:1181 -msgid "Pending payment" -msgstr "Cobro pendiente" - #: ../../src/Translations/AdminTranslations.php:1099, #: ../../src/Translations/AdminTranslations.php:1101, #: ../../src/Translations/AdminTranslations.php:1103, -#: ../../src/Translations/AdminTranslations.php:1105 +#: ../../src/Translations/AdminTranslations.php:1105, +#: ../../src/Translations/AdminTranslations.php:1107, +#: ../../src/Translations/AdminTranslations.php:1115, +#: ../../src/Translations/AdminTranslations.php:1117, +#: ../../src/Translations/AdminTranslations.php:1119, +#: ../../src/Translations/AdminTranslations.php:1121, +#: ../../src/Translations/AdminTranslations.php:1123, +#: ../../src/Translations/AdminTranslations.php:1125, +#: ../../src/Translations/AdminTranslations.php:1127, +#: ../../src/Translations/AdminTranslations.php:1182 +msgid "Pending payment" +msgstr "Cobro pendiente" + +#: ../../src/Translations/AdminTranslations.php:1100, +#: ../../src/Translations/AdminTranslations.php:1102, +#: ../../src/Translations/AdminTranslations.php:1104, +#: ../../src/Translations/AdminTranslations.php:1106 msgid "Awaiting payment from the buyer." msgstr "Esperando el pago del comprador." -#: ../../src/Translations/AdminTranslations.php:1107 +#: ../../src/Translations/AdminTranslations.php:1108 msgid "" "We are veryfing the payment. We will notify you by email in up to 6 hours if " "everything is fine so that you can deliver the product or provide the " @@ -1764,19 +1774,19 @@ msgstr "" "Estamos revisando el pago. En menos de 6 horas te avisaremos por e-mail si " "está todo bien para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1108, -#: ../../src/Translations/AdminTranslations.php:1132, -#: ../../src/Translations/AdminTranslations.php:1148, -#: ../../src/Translations/AdminTranslations.php:1167, -#: ../../src/Translations/AdminTranslations.php:1171, -#: ../../src/Translations/AdminTranslations.php:1173, -#: ../../src/Translations/AdminTranslations.php:1175, -#: ../../src/Translations/AdminTranslations.php:1179 +#: ../../src/Translations/AdminTranslations.php:1109, +#: ../../src/Translations/AdminTranslations.php:1133, +#: ../../src/Translations/AdminTranslations.php:1149, +#: ../../src/Translations/AdminTranslations.php:1168, +#: ../../src/Translations/AdminTranslations.php:1172, +#: ../../src/Translations/AdminTranslations.php:1174, +#: ../../src/Translations/AdminTranslations.php:1176, +#: ../../src/Translations/AdminTranslations.php:1180 msgid "Declined payment" msgstr "Cobro rechazado" -#: ../../src/Translations/AdminTranslations.php:1109, -#: ../../src/Translations/AdminTranslations.php:1133 +#: ../../src/Translations/AdminTranslations.php:1110, +#: ../../src/Translations/AdminTranslations.php:1134 msgid "" "The card-issuing bank declined the payment. Please ask your client to use " "another card or to get in touch with the bank." @@ -1785,27 +1795,27 @@ msgstr "" "“\n" "“otra tarjeta o que se comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1110 +#: ../../src/Translations/AdminTranslations.php:1111 msgid "Payment authorized. Awaiting capture." msgstr "Pago autorizado. Esperando captura." -#: ../../src/Translations/AdminTranslations.php:1111 +#: ../../src/Translations/AdminTranslations.php:1112 msgid "" "The payment has been authorized on the client's card. Please capture the " "payment." msgstr "" "Ya se autorizó el pago en la tarjeta del cliente. Haz la captura del pago." -#: ../../src/Translations/AdminTranslations.php:1112 +#: ../../src/Translations/AdminTranslations.php:1113 msgid "Payment in process" msgstr "Pago en proceso" -#: ../../src/Translations/AdminTranslations.php:1113, -#: ../../src/Translations/AdminTranslations.php:1123 +#: ../../src/Translations/AdminTranslations.php:1114, +#: ../../src/Translations/AdminTranslations.php:1124 msgid "Please wait or contact Mercado Pago for further details" msgstr "Espera o contacta a Mercado Pago para saber más detalles" -#: ../../src/Translations/AdminTranslations.php:1115 +#: ../../src/Translations/AdminTranslations.php:1116 msgid "" "The bank is reviewing the payment. As soon as we have their confirmation, we " "will notify you via email so that you can deliver the product or provide the " @@ -1814,33 +1824,33 @@ msgstr "" "El banco está revisando el pago. Te avisaremos por e-mail cuando esté " "confirmado para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1117, -#: ../../src/Translations/AdminTranslations.php:1119, -#: ../../src/Translations/AdminTranslations.php:1121 +#: ../../src/Translations/AdminTranslations.php:1118, +#: ../../src/Translations/AdminTranslations.php:1120, +#: ../../src/Translations/AdminTranslations.php:1122 msgid "Awaiting payment information validation." msgstr "Esperando validación de los datos de pago." -#: ../../src/Translations/AdminTranslations.php:1125 +#: ../../src/Translations/AdminTranslations.php:1126 msgid "Waiting for the buyer." msgstr "Esperando al comprador." -#: ../../src/Translations/AdminTranslations.php:1127 +#: ../../src/Translations/AdminTranslations.php:1128 msgid "Waiting for the card issuer." msgstr "Espererando al emisor de la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1128, -#: ../../src/Translations/AdminTranslations.php:1130, -#: ../../src/Translations/AdminTranslations.php:1134, -#: ../../src/Translations/AdminTranslations.php:1155, -#: ../../src/Translations/AdminTranslations.php:1177 -msgid "The card issuing bank declined the payment" -msgstr "El banco emisor de la tarjeta rechazó el pago" - #: ../../src/Translations/AdminTranslations.php:1129, #: ../../src/Translations/AdminTranslations.php:1131, #: ../../src/Translations/AdminTranslations.php:1135, #: ../../src/Translations/AdminTranslations.php:1156, #: ../../src/Translations/AdminTranslations.php:1178 +msgid "The card issuing bank declined the payment" +msgstr "El banco emisor de la tarjeta rechazó el pago" + +#: ../../src/Translations/AdminTranslations.php:1130, +#: ../../src/Translations/AdminTranslations.php:1132, +#: ../../src/Translations/AdminTranslations.php:1136, +#: ../../src/Translations/AdminTranslations.php:1157, +#: ../../src/Translations/AdminTranslations.php:1179 msgid "" "Please recommend your customer to pay with another payment method or to " "contact their bank." @@ -1848,32 +1858,32 @@ msgstr "" "Recomiéndale a tu cliente que pague con otro medio de pago o que se " "comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1136 +#: ../../src/Translations/AdminTranslations.php:1137 msgid "Mercado Pago did not process the payment" msgstr "Mercado Pago no procesó el pago" -#: ../../src/Translations/AdminTranslations.php:1138, -#: ../../src/Translations/AdminTranslations.php:1183 -msgid "Expired payment deadline" -msgstr "Venció el plazo para el pago" - #: ../../src/Translations/AdminTranslations.php:1139, #: ../../src/Translations/AdminTranslations.php:1184 -msgid "The client did not pay within the time limit." -msgstr "El cliente no pagó dentro del límite de tiempo." +msgid "Expired payment deadline" +msgstr "Venció el plazo para el pago" #: ../../src/Translations/AdminTranslations.php:1140, -#: ../../src/Translations/AdminTranslations.php:1142, -#: ../../src/Translations/AdminTranslations.php:1144, #: ../../src/Translations/AdminTranslations.php:1185 -msgid "Your customer entered one or more incorrect card details" -msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" +msgid "The client did not pay within the time limit." +msgstr "El cliente no pagó dentro del límite de tiempo." #: ../../src/Translations/AdminTranslations.php:1141, #: ../../src/Translations/AdminTranslations.php:1143, #: ../../src/Translations/AdminTranslations.php:1145, -#: ../../src/Translations/AdminTranslations.php:1186, -#: ../../src/Translations/AdminTranslations.php:1187 +#: ../../src/Translations/AdminTranslations.php:1186 +msgid "Your customer entered one or more incorrect card details" +msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" + +#: ../../src/Translations/AdminTranslations.php:1142, +#: ../../src/Translations/AdminTranslations.php:1144, +#: ../../src/Translations/AdminTranslations.php:1146, +#: ../../src/Translations/AdminTranslations.php:1187, +#: ../../src/Translations/AdminTranslations.php:1188 msgid "" "Please ask them to enter to enter them again exactly as they appear on the " "card or on their bank app to complete the payment." @@ -1881,17 +1891,17 @@ msgstr "" "Pídele que vuelva a ingresarlos tal como figuran en la tarjeta o en la app " "de su banco para finalizar el pago." -#: ../../src/Translations/AdminTranslations.php:1146, -#: ../../src/Translations/AdminTranslations.php:1169 +#: ../../src/Translations/AdminTranslations.php:1147, +#: ../../src/Translations/AdminTranslations.php:1170 msgid "We protected you from a suspicious payment" msgstr "Te protegimos de un pago sospechoso" -#: ../../src/Translations/AdminTranslations.php:1147 +#: ../../src/Translations/AdminTranslations.php:1148 msgid "For safety reasons, this transaction cannot be completed." msgstr "Por motivos de seguridad, esta transacción no podrá ser finalizada." -#: ../../src/Translations/AdminTranslations.php:1149, -#: ../../src/Translations/AdminTranslations.php:1168 +#: ../../src/Translations/AdminTranslations.php:1150, +#: ../../src/Translations/AdminTranslations.php:1169 msgid "" "The buyer is suspended in our platform. Your client must contact us to check " "what happened." @@ -1899,12 +1909,12 @@ msgstr "" "El comprador está suspendido en Mercado Pago. Tu cliente debe comunicarse " "con nosotros para ver qué pasó." -#: ../../src/Translations/AdminTranslations.php:1150 +#: ../../src/Translations/AdminTranslations.php:1151 msgid "For safety reasons, the card issuing bank declined the payment" msgstr "Por seguridad, el banco emisor de la tarjeta rechazó el pago" -#: ../../src/Translations/AdminTranslations.php:1151, -#: ../../src/Translations/AdminTranslations.php:1170 +#: ../../src/Translations/AdminTranslations.php:1152, +#: ../../src/Translations/AdminTranslations.php:1171 msgid "" "Recommend your customer to pay with their usual payment method and device " "for online purchases." @@ -1912,40 +1922,40 @@ msgstr "" "Recomiéndale a tu cliente que pague con el medio de pago y dispositivo que " "suele usar para compras online." -#: ../../src/Translations/AdminTranslations.php:1152 +#: ../../src/Translations/AdminTranslations.php:1153 msgid "Your customer's credit card has no available limit" msgstr "La tarjeta de crédito de tu cliente no tiene límite disponible" -#: ../../src/Translations/AdminTranslations.php:1153, #: ../../src/Translations/AdminTranslations.php:1154, -#: ../../src/Translations/AdminTranslations.php:1158 +#: ../../src/Translations/AdminTranslations.php:1155, +#: ../../src/Translations/AdminTranslations.php:1159 msgid "" "Please ask them to pay with another card or to choose another payment method." msgstr "Pídele que pague con otra tarjeta o que elija otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1157 +#: ../../src/Translations/AdminTranslations.php:1158 msgid "Your customer reached the limit of payment attempts with this card" msgstr "Tu cliente alcanzó el límite de intentos de pago con la tarjeta" -#: ../../src/Translations/AdminTranslations.php:1159 +#: ../../src/Translations/AdminTranslations.php:1160 msgid "" "Your customer's card does not accept the number of installments selected" msgstr "La tarjeta de tu cliente no acepta la cantidad de pagos que seleccionó" -#: ../../src/Translations/AdminTranslations.php:1160 +#: ../../src/Translations/AdminTranslations.php:1161 msgid "" "Please ask them to choose a different number of installments or to pay with " "another method." msgstr "" "Pídele que elija una cantidad de pagos diferente o que use con otro medio." -#: ../../src/Translations/AdminTranslations.php:1161, -#: ../../src/Translations/AdminTranslations.php:1188 +#: ../../src/Translations/AdminTranslations.php:1162, +#: ../../src/Translations/AdminTranslations.php:1189 msgid "Your customer needs to authorize the payment through their bank" msgstr "Tu cliente necesita autorizar el pago con su banco" -#: ../../src/Translations/AdminTranslations.php:1162, -#: ../../src/Translations/AdminTranslations.php:1189 +#: ../../src/Translations/AdminTranslations.php:1163, +#: ../../src/Translations/AdminTranslations.php:1190 msgid "" "Please ask them to call the telephone number on their card or to pay with " "another method." @@ -1953,20 +1963,20 @@ msgstr "" "Pídele que llame al teléfono que está en la tarjeta o que pague con otro " "medio." -#: ../../src/Translations/AdminTranslations.php:1163 +#: ../../src/Translations/AdminTranslations.php:1164 msgid "" "The payment was declined because your customer already paid for this purchase" msgstr "El pago fue rechazado porque tu cliente ya pagó esta compra" -#: ../../src/Translations/AdminTranslations.php:1164 +#: ../../src/Translations/AdminTranslations.php:1165 msgid "Check your approved payments to verify it." msgstr "Revisa tu cobros aprobados para verificarlo." -#: ../../src/Translations/AdminTranslations.php:1165 +#: ../../src/Translations/AdminTranslations.php:1166 msgid "Your customer's card was is not activated yet" msgstr "La tarjeta de tu cliente aún no está habilitada" -#: ../../src/Translations/AdminTranslations.php:1166 +#: ../../src/Translations/AdminTranslations.php:1167 msgid "" "Please ask them to contact their bank by calling the number on the back of " "their card or to pay with another method." @@ -1974,7 +1984,7 @@ msgstr "" "Pídele que se comunique con su banco al número que está en el dorso de la " "tarjeta o que pague con otro medio." -#: ../../src/Translations/AdminTranslations.php:1172 +#: ../../src/Translations/AdminTranslations.php:1173 msgid "" "This payment was declined because it did not pass Mercado Pago security " "controls. Please ask your client to use another card." @@ -1982,7 +1992,7 @@ msgstr "" "Rechazamos este pago porque no pasó los controles de seguridad de Mercado " "Pago. Pedile a tu cliente que use otra tarjeta." -#: ../../src/Translations/AdminTranslations.php:1174 +#: ../../src/Translations/AdminTranslations.php:1175 msgid "" "The amount exceeded the card limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -1990,8 +2000,8 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1176, -#: ../../src/Translations/AdminTranslations.php:1180 +#: ../../src/Translations/AdminTranslations.php:1177, +#: ../../src/Translations/AdminTranslations.php:1181 msgid "" "Please ask your client to use another card or to get in touch with the card " "issuer." @@ -1999,7 +2009,7 @@ msgstr "" "Pídele a tu cliente que use otra tarjeta o que se comunique con el emisor de " "la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1182 +#: ../../src/Translations/AdminTranslations.php:1183 msgid "" "The amount exceeded the card's limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -2007,21 +2017,21 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1190 +#: ../../src/Translations/AdminTranslations.php:1191 msgid "Your customer's debit card has insufficient funds" msgstr "La tarjeta de débito de tu cliente no tiene saldo suficiente" -#: ../../src/Translations/AdminTranslations.php:1191 +#: ../../src/Translations/AdminTranslations.php:1192 msgid "" "Please recommend your customer to pay with another card or to choose another " "payment method." msgstr "Pídele que pague con otra tarjeta o que elige otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1192 +#: ../../src/Translations/AdminTranslations.php:1193 msgid "Something went wrong and the payment was declined" msgstr "El pago fue rechazado porque hubo un error" -#: ../../src/Translations/AdminTranslations.php:1193 +#: ../../src/Translations/AdminTranslations.php:1194 msgid "" "Please recommend you customer to try again or to pay with another payment " "method." diff --git a/i18n/languages/woocommerce-mercadopago-es_ES.mo b/i18n/languages/woocommerce-mercadopago-es_ES.mo index bd1af4ac49f7dfee76b3c4a9adea6e331edd16a2..392533cbdfcbb70849524b76c5c5421daba707ad 100644 GIT binary patch delta 10494 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 delta 10191 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 CD_YP1 diff --git a/i18n/languages/woocommerce-mercadopago-es_ES.po b/i18n/languages/woocommerce-mercadopago-es_ES.po index 56c6233a1..d807f91c5 100644 --- a/i18n/languages/woocommerce-mercadopago-es_ES.po +++ b/i18n/languages/woocommerce-mercadopago-es_ES.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" -"POT-Creation-Date: 2024-02-01 11:32+0000\n" +"POT-Creation-Date: 2024-02-07 19:47+0000\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -15,22 +15,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.2\n" -#: ../../src/WoocommerceMercadoPago.php:426, +#: ../../src/WoocommerceMercadoPago.php:449, #: ../../src/Translations/AdminTranslations.php:166 msgid "Activate WooCommerce" msgstr "Activar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:427, +#: ../../src/WoocommerceMercadoPago.php:450, #: ../../src/Translations/AdminTranslations.php:167 msgid "Install WooCommerce" msgstr "Instalar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:428, +#: ../../src/WoocommerceMercadoPago.php:451, #: ../../src/Translations/AdminTranslations.php:168 msgid "See WooCommerce" msgstr "Ver WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:430, +#: ../../src/WoocommerceMercadoPago.php:453, #: ../../src/Translations/AdminTranslations.php:157 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" @@ -103,50 +103,60 @@ msgstr "" msgid "Activate" msgstr "Activar" -#: ../../src/Translations/AdminTranslations.php:188 +#: ../../src/Translations/AdminTranslations.php:177 +msgid "" +"Unfortunately, the language configured in your WordPress is not compatible " +"with our plugin. For the best experience, please switch to a supported " +"language." +msgstr "" +"Lamentablemente, el idioma configurado en tu WordPress no es compatible con " +"nuestro plugin. Para disfrutar de la mejor experiencia, cambia a un idioma " +"compatible." + +#: ../../src/Translations/AdminTranslations.php:189 msgid "Set plugin" msgstr "Configurar plugin" -#: ../../src/Translations/AdminTranslations.php:189, -#: ../../src/Translations/AdminTranslations.php:743, -#: ../../src/Translations/AdminTranslations.php:802 +#: ../../src/Translations/AdminTranslations.php:190, +#: ../../src/Translations/AdminTranslations.php:744, +#: ../../src/Translations/AdminTranslations.php:803 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../src/Translations/AdminTranslations.php:190, -#: ../../src/Translations/AdminTranslations.php:261 +#: ../../src/Translations/AdminTranslations.php:191, +#: ../../src/Translations/AdminTranslations.php:262 msgid "Plugin manual" msgstr "Manual del plugin" -#: ../../src/Translations/AdminTranslations.php:202 +#: ../../src/Translations/AdminTranslations.php:203 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../src/Translations/AdminTranslations.php:203 +#: ../../src/Translations/AdminTranslations.php:204 msgid "Mercado Pago commission:" msgstr "Comisión de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:204 +#: ../../src/Translations/AdminTranslations.php:205 msgid "Represents the commission configured on plugin settings." msgstr "Representa la comisión configurada en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:205 +#: ../../src/Translations/AdminTranslations.php:206 msgid "Mercado Pago discount:" msgstr "Descuento de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:206 +#: ../../src/Translations/AdminTranslations.php:207 msgid "Represents the discount configured on plugin settings." msgstr "Representa el descuento configurado en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:207 +#: ../../src/Translations/AdminTranslations.php:208 msgid "Represents the installment fee charged by Mercado Pago." msgstr "Representa la comisión a plazos cobrada por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:208 +#: ../../src/Translations/AdminTranslations.php:209 msgid "Mercado Pago Installment Fee:" msgstr "Cuota de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:209 +#: ../../src/Translations/AdminTranslations.php:210 msgid "" "Represents the total purchase plus the installment fee charged by Mercado " "Pago." @@ -154,91 +164,91 @@ msgstr "" "Representa el total de la compra más la comisión de fraccionamiento cobrada " "por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:210 +#: ../../src/Translations/AdminTranslations.php:211 msgid "Mercado Pago Total:" msgstr "Mercado Pago Total:" -#: ../../src/Translations/AdminTranslations.php:223 +#: ../../src/Translations/AdminTranslations.php:224 msgid "Accept" msgstr "Acepta" -#: ../../src/Translations/AdminTranslations.php:224 +#: ../../src/Translations/AdminTranslations.php:225 msgid "payments on the spot" msgstr "pagos al instante" -#: ../../src/Translations/AdminTranslations.php:225 +#: ../../src/Translations/AdminTranslations.php:226 msgid "with" msgstr "con" -#: ../../src/Translations/AdminTranslations.php:226 +#: ../../src/Translations/AdminTranslations.php:227 msgid "the" msgstr "toda la" -#: ../../src/Translations/AdminTranslations.php:227 +#: ../../src/Translations/AdminTranslations.php:228 msgid "security" msgstr "seguridad" -#: ../../src/Translations/AdminTranslations.php:228 +#: ../../src/Translations/AdminTranslations.php:229 msgid "from Mercado Pago" msgstr "de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:233 +#: ../../src/Translations/AdminTranslations.php:234 msgid "Choose" msgstr "Elige" -#: ../../src/Translations/AdminTranslations.php:234 +#: ../../src/Translations/AdminTranslations.php:235 msgid "when you want to receive the money" msgstr "cuándo quieres recibir el dinero" -#: ../../src/Translations/AdminTranslations.php:235 +#: ../../src/Translations/AdminTranslations.php:236 msgid "from your sales and if you want to offer" msgstr "de las ventas y si quieres ofrecer" -#: ../../src/Translations/AdminTranslations.php:236 +#: ../../src/Translations/AdminTranslations.php:237 msgid "interest-free installments" msgstr "cuotas sin interés" -#: ../../src/Translations/AdminTranslations.php:237 +#: ../../src/Translations/AdminTranslations.php:238 msgid "to your clients." msgstr "a los clientes." -#: ../../src/Translations/AdminTranslations.php:242 +#: ../../src/Translations/AdminTranslations.php:243 msgid "Review the step-by-step of" msgstr "Revisa el paso a paso de" -#: ../../src/Translations/AdminTranslations.php:243 +#: ../../src/Translations/AdminTranslations.php:244 msgid "how to integrate the Mercado Pago Plugin" msgstr "cómo integrar el Plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:244 +#: ../../src/Translations/AdminTranslations.php:245 msgid "on our website for developers." msgstr "en nuestro sitio de desarrolladores." -#: ../../src/Translations/AdminTranslations.php:248 +#: ../../src/Translations/AdminTranslations.php:249 msgid "SSL" msgstr "SSL" -#: ../../src/Translations/AdminTranslations.php:249 +#: ../../src/Translations/AdminTranslations.php:250 msgid "Curl" msgstr "Curl" -#: ../../src/Translations/AdminTranslations.php:250 +#: ../../src/Translations/AdminTranslations.php:251 msgid "GD Extensions" msgstr "Extensiones GD" -#: ../../src/Translations/AdminTranslations.php:252 +#: ../../src/Translations/AdminTranslations.php:253 msgid "Technical requirements" msgstr "Requisitos técnicos" -#: ../../src/Translations/AdminTranslations.php:253 +#: ../../src/Translations/AdminTranslations.php:254 msgid "Collections and installments" msgstr "Cobros y cuotas" -#: ../../src/Translations/AdminTranslations.php:254 +#: ../../src/Translations/AdminTranslations.php:255 msgid "Questions?" msgstr "¿Dudas?" -#: ../../src/Translations/AdminTranslations.php:255 +#: ../../src/Translations/AdminTranslations.php:256 msgid "" "Implementation responsible for transmitting data to Mercado Pago in a secure " "and encrypted way." @@ -246,7 +256,7 @@ msgstr "" "Implementación responsable de transmitir los datos a Mercado Pago de forma " "segura y encriptada." -#: ../../src/Translations/AdminTranslations.php:256 +#: ../../src/Translations/AdminTranslations.php:257 msgid "" "It is an extension responsible for making payments via requests from the " "plugin to Mercado Pago." @@ -254,7 +264,7 @@ msgstr "" "Es una extensión encargada de realizar los pagos a través de requests del " "plugin a Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:257 +#: ../../src/Translations/AdminTranslations.php:258 msgid "" "These extensions are responsible for the implementation and operation of Pix " "in your store." @@ -262,11 +272,11 @@ msgstr "" "Extensiones responsables de la aplicación y el funcionamiento de Pix en su " "tienda." -#: ../../src/Translations/AdminTranslations.php:260 +#: ../../src/Translations/AdminTranslations.php:261 msgid "Set deadlines and fees" msgstr "Ajustar plazos y tasas" -#: ../../src/Translations/AdminTranslations.php:274 +#: ../../src/Translations/AdminTranslations.php:275 msgid "" "To enable orders, you must create and activate production credentials in " "your Mercado Pago Account." @@ -274,79 +284,79 @@ msgstr "" "Para habilitar las ventas, debes crear y activar las credenciales de " "producción en tu cuenta de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:275 +#: ../../src/Translations/AdminTranslations.php:276 msgid "Copy and paste the credentials below." msgstr "Copia y pega tus credenciales a continuación." -#: ../../src/Translations/AdminTranslations.php:280 +#: ../../src/Translations/AdminTranslations.php:281 msgid "You must enter" msgstr "Debe introducir" -#: ../../src/Translations/AdminTranslations.php:281 +#: ../../src/Translations/AdminTranslations.php:282 msgid "production credentials" msgstr "las credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:285 +#: ../../src/Translations/AdminTranslations.php:286 msgid "Public Key" msgstr "Public Key" -#: ../../src/Translations/AdminTranslations.php:286 +#: ../../src/Translations/AdminTranslations.php:287 msgid "Access Token" msgstr "Access Token" -#: ../../src/Translations/AdminTranslations.php:287 +#: ../../src/Translations/AdminTranslations.php:288 msgid "1. Integrate your store with Mercado Pago" msgstr "1. Integra la tienda a Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:288 +#: ../../src/Translations/AdminTranslations.php:289 msgid "Production credentials" msgstr "Credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:289 +#: ../../src/Translations/AdminTranslations.php:290 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:291 +#: ../../src/Translations/AdminTranslations.php:292 msgid "Enable Mercado Pago checkouts for test purchases in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para pruebas de compras en la " "tienda." -#: ../../src/Translations/AdminTranslations.php:292 +#: ../../src/Translations/AdminTranslations.php:293 msgid "Enable Mercado Pago checkouts to receive real payments in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para recibir pagos reales en tienda." -#: ../../src/Translations/AdminTranslations.php:293 +#: ../../src/Translations/AdminTranslations.php:294 msgid "Paste your Public Key here" msgstr "Pega aquí tu Public Key" -#: ../../src/Translations/AdminTranslations.php:294 +#: ../../src/Translations/AdminTranslations.php:295 msgid "Paste your Access Token here" msgstr "Pega aquí tu Access Token" -#: ../../src/Translations/AdminTranslations.php:295 +#: ../../src/Translations/AdminTranslations.php:296 msgid "Check credentials" msgstr "Consultar credenciales" -#: ../../src/Translations/AdminTranslations.php:296, -#: ../../src/Translations/AdminTranslations.php:350 +#: ../../src/Translations/AdminTranslations.php:297, +#: ../../src/Translations/AdminTranslations.php:351 msgid "Save and continue" msgstr "Guardar y continuar" -#: ../../src/Translations/AdminTranslations.php:297 +#: ../../src/Translations/AdminTranslations.php:298 msgid "Important! To sell you must enter your credentials." msgstr "¡Importante! Para vender debe introducir sus credenciales." -#: ../../src/Translations/AdminTranslations.php:299 +#: ../../src/Translations/AdminTranslations.php:300 msgid "Enter credentials" msgstr "Introducir credenciales" -#: ../../src/Translations/AdminTranslations.php:300 +#: ../../src/Translations/AdminTranslations.php:301 msgid "Activate your credentials to be able to sell" msgstr "Activa tus credenciales para poder vender" -#: ../../src/Translations/AdminTranslations.php:301 +#: ../../src/Translations/AdminTranslations.php:302 msgid "" "Credentials are codes that you must enter to enable sales. Go below on " "Activate Credentials. On the next screen, use again the Activate Credentials " @@ -357,23 +367,23 @@ msgstr "" "nuevamente el botón Activar Credenciales y complete los campos con la " "información solicitada." -#: ../../src/Translations/AdminTranslations.php:302 +#: ../../src/Translations/AdminTranslations.php:303 msgid "Activate credentials" msgstr "Activar credenciales" -#: ../../src/Translations/AdminTranslations.php:315 +#: ../../src/Translations/AdminTranslations.php:316 msgid "Add the URL to receive payments notifications." msgstr "Ingresa la URL para recibir notificaciones de pago." -#: ../../src/Translations/AdminTranslations.php:316 +#: ../../src/Translations/AdminTranslations.php:317 msgid "Find out more information in the" msgstr "Consulta más información en los" -#: ../../src/Translations/AdminTranslations.php:318 +#: ../../src/Translations/AdminTranslations.php:319 msgid "guides" msgstr "manuales" -#: ../../src/Translations/AdminTranslations.php:323 +#: ../../src/Translations/AdminTranslations.php:324 msgid "" "If you are a Mercado Pago Certified Partner, make sure to add your " "integrator_id." @@ -381,31 +391,31 @@ msgstr "" "Si eres Partner certificado de Mercado Pago, recuerda ingresar tu " "integrator_id." -#: ../../src/Translations/AdminTranslations.php:324 +#: ../../src/Translations/AdminTranslations.php:325 msgid "If you do not have the code, please" msgstr "Si no tienes el código," -#: ../../src/Translations/AdminTranslations.php:326 +#: ../../src/Translations/AdminTranslations.php:327 msgid "request it now" msgstr "solicítalo ahora" -#: ../../src/Translations/AdminTranslations.php:330 +#: ../../src/Translations/AdminTranslations.php:331 msgid "2. Customize your business" msgstr "2. Personaliza tu negocio" -#: ../../src/Translations/AdminTranslations.php:331 +#: ../../src/Translations/AdminTranslations.php:332 msgid "Your store information" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:332 +#: ../../src/Translations/AdminTranslations.php:333 msgid "Advanced integration options (optional)" msgstr "Opciones avanzadas de integración (opcional)" -#: ../../src/Translations/AdminTranslations.php:333 +#: ../../src/Translations/AdminTranslations.php:334 msgid "Debug and Log Mode" msgstr "Modo debug y log" -#: ../../src/Translations/AdminTranslations.php:334 +#: ../../src/Translations/AdminTranslations.php:335 msgid "" "Fill out the following information to have a better experience and offer " "more information to your clients." @@ -413,15 +423,15 @@ msgstr "" "Completa los siguientes datos para tener una mejor experiencia y ofrecer más " "información a los clientes." -#: ../../src/Translations/AdminTranslations.php:335 +#: ../../src/Translations/AdminTranslations.php:336 msgid "Name of your store in your client's invoice" msgstr "Nombre de tu tienda en la factura de los clientes" -#: ../../src/Translations/AdminTranslations.php:336 +#: ../../src/Translations/AdminTranslations.php:337 msgid "Identification in Activities of Mercado Pago" msgstr "Identificación en Actividad de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:337 +#: ../../src/Translations/AdminTranslations.php:338 msgid "" "For further integration of your store with Mercado Pago (IPN, Certified " "Partners, Debug Mode)" @@ -429,202 +439,202 @@ msgstr "" "Para mayor integración de tu tienda con Mercado Pago (IPN, Socios " "Certificados, Modo Debug)" -#: ../../src/Translations/AdminTranslations.php:338 +#: ../../src/Translations/AdminTranslations.php:339 msgid "Store category" msgstr "Categoría de la tienda" -#: ../../src/Translations/AdminTranslations.php:339 +#: ../../src/Translations/AdminTranslations.php:340 msgid "URL for IPN" msgstr "URL para IPN" -#: ../../src/Translations/AdminTranslations.php:340 +#: ../../src/Translations/AdminTranslations.php:341 msgid "Integrator ID" msgstr "Integrator ID" -#: ../../src/Translations/AdminTranslations.php:341 +#: ../../src/Translations/AdminTranslations.php:342 msgid "We record your store's actions in order to provide a better assistance." msgstr "Grabamos las aciones de tu tienda para brindar un mejor soporte." -#: ../../src/Translations/AdminTranslations.php:342 +#: ../../src/Translations/AdminTranslations.php:343 msgid "Ex: Mary's Store" msgstr "Ej.: Tienda de María" -#: ../../src/Translations/AdminTranslations.php:343 +#: ../../src/Translations/AdminTranslations.php:344 msgid "Ex: Mary Store" msgstr "Ej.: TiendaMaría" -#: ../../src/Translations/AdminTranslations.php:344 +#: ../../src/Translations/AdminTranslations.php:345 msgid "Select" msgstr "Seleccionar" -#: ../../src/Translations/AdminTranslations.php:345 +#: ../../src/Translations/AdminTranslations.php:346 msgid "Ex: https://examples.com/my-custom-ipn-url" msgstr "Ej.: https://examples.com/my-custom-ipn-url" -#: ../../src/Translations/AdminTranslations.php:346 +#: ../../src/Translations/AdminTranslations.php:347 msgid "Add plugin default params" msgstr "Agregar parámetros default del plugin" -#: ../../src/Translations/AdminTranslations.php:347 +#: ../../src/Translations/AdminTranslations.php:348 msgid "Ex: 14987126498" msgstr "Ej.: 14987126498" -#: ../../src/Translations/AdminTranslations.php:348 +#: ../../src/Translations/AdminTranslations.php:349 msgid "Show advanced options" msgstr "Ver opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:349 +#: ../../src/Translations/AdminTranslations.php:350 msgid "Hide advanced options" msgstr "Esconder opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:351 +#: ../../src/Translations/AdminTranslations.php:352 msgid "" "If this field is empty, the purchase will be identified as Mercado Pago." msgstr "" "Si el campo queda vacío, la compra del cliente se identificará como Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:352 +#: ../../src/Translations/AdminTranslations.php:353 msgid "In Activities, you will view this term before the order number" msgstr "En Actividad, verás el término ingresado antes del número o del pedido" -#: ../../src/Translations/AdminTranslations.php:353 +#: ../../src/Translations/AdminTranslations.php:354 msgid "" "Select \"Other categories\" if you do not find the appropriate category." msgstr "Seleciona ”Other categories” si no encuentras una categoría adecuada." -#: ../../src/Translations/AdminTranslations.php:354 +#: ../../src/Translations/AdminTranslations.php:355 msgid "request it now." msgstr "solicítalo ahora." -#: ../../src/Translations/AdminTranslations.php:368 +#: ../../src/Translations/AdminTranslations.php:369 msgid "3. Set payment methods" msgstr "3. Configura los medios de pago" -#: ../../src/Translations/AdminTranslations.php:369 +#: ../../src/Translations/AdminTranslations.php:370 msgid "To view more options, please select a payment method below" msgstr "Selecciona uno de los siguientes medios de pago para ver más opciones" -#: ../../src/Translations/AdminTranslations.php:370 +#: ../../src/Translations/AdminTranslations.php:371 msgid "Settings" msgstr "Configurar" -#: ../../src/Translations/AdminTranslations.php:371 +#: ../../src/Translations/AdminTranslations.php:372 msgid "Continue" msgstr "Continuar" -#: ../../src/Translations/AdminTranslations.php:372 +#: ../../src/Translations/AdminTranslations.php:373 msgid "Enabled" msgstr "Activado" -#: ../../src/Translations/AdminTranslations.php:373 +#: ../../src/Translations/AdminTranslations.php:374 msgid "Disabled" msgstr "Inactivo" -#: ../../src/Translations/AdminTranslations.php:374 +#: ../../src/Translations/AdminTranslations.php:375 msgid "Configure your credentials to enable Mercado Pago payment methods." msgstr "" "Completa tus credenciales para habilitar los medios de pago Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:387, -#: ../../src/Translations/AdminTranslations.php:393 +#: ../../src/Translations/AdminTranslations.php:388, +#: ../../src/Translations/AdminTranslations.php:394 msgid "The checkout is" msgstr "El checkout está" -#: ../../src/Translations/AdminTranslations.php:388, -#: ../../src/Translations/AdminTranslations.php:400, -#: ../../src/Translations/AdminTranslations.php:515, -#: ../../src/Translations/AdminTranslations.php:527, -#: ../../src/Translations/AdminTranslations.php:539, -#: ../../src/Translations/AdminTranslations.php:605, -#: ../../src/Translations/AdminTranslations.php:617, -#: ../../src/Translations/AdminTranslations.php:629, -#: ../../src/Translations/AdminTranslations.php:705, -#: ../../src/Translations/AdminTranslations.php:766, -#: ../../src/Translations/AdminTranslations.php:825, -#: ../../src/Translations/AdminTranslations.php:837 +#: ../../src/Translations/AdminTranslations.php:389, +#: ../../src/Translations/AdminTranslations.php:401, +#: ../../src/Translations/AdminTranslations.php:516, +#: ../../src/Translations/AdminTranslations.php:528, +#: ../../src/Translations/AdminTranslations.php:540, +#: ../../src/Translations/AdminTranslations.php:606, +#: ../../src/Translations/AdminTranslations.php:618, +#: ../../src/Translations/AdminTranslations.php:630, +#: ../../src/Translations/AdminTranslations.php:706, +#: ../../src/Translations/AdminTranslations.php:767, +#: ../../src/Translations/AdminTranslations.php:826, +#: ../../src/Translations/AdminTranslations.php:838 msgid "enabled" msgstr "activo" -#: ../../src/Translations/AdminTranslations.php:394, +#: ../../src/Translations/AdminTranslations.php:395, +#: ../../src/Translations/AdminTranslations.php:407, +#: ../../src/Translations/AdminTranslations.php:522, +#: ../../src/Translations/AdminTranslations.php:534, +#: ../../src/Translations/AdminTranslations.php:546, +#: ../../src/Translations/AdminTranslations.php:612, +#: ../../src/Translations/AdminTranslations.php:624, +#: ../../src/Translations/AdminTranslations.php:636, +#: ../../src/Translations/AdminTranslations.php:712, +#: ../../src/Translations/AdminTranslations.php:773, +#: ../../src/Translations/AdminTranslations.php:832, +#: ../../src/Translations/AdminTranslations.php:844 +msgid "disabled" +msgstr "inactivo" + +#: ../../src/Translations/AdminTranslations.php:400, #: ../../src/Translations/AdminTranslations.php:406, -#: ../../src/Translations/AdminTranslations.php:521, +#: ../../src/Translations/AdminTranslations.php:527, #: ../../src/Translations/AdminTranslations.php:533, -#: ../../src/Translations/AdminTranslations.php:545, -#: ../../src/Translations/AdminTranslations.php:611, +#: ../../src/Translations/AdminTranslations.php:617, #: ../../src/Translations/AdminTranslations.php:623, -#: ../../src/Translations/AdminTranslations.php:635, +#: ../../src/Translations/AdminTranslations.php:705, #: ../../src/Translations/AdminTranslations.php:711, +#: ../../src/Translations/AdminTranslations.php:766, #: ../../src/Translations/AdminTranslations.php:772, -#: ../../src/Translations/AdminTranslations.php:831, +#: ../../src/Translations/AdminTranslations.php:837, #: ../../src/Translations/AdminTranslations.php:843 -msgid "disabled" -msgstr "inactivo" - -#: ../../src/Translations/AdminTranslations.php:399, -#: ../../src/Translations/AdminTranslations.php:405, -#: ../../src/Translations/AdminTranslations.php:526, -#: ../../src/Translations/AdminTranslations.php:532, -#: ../../src/Translations/AdminTranslations.php:616, -#: ../../src/Translations/AdminTranslations.php:622, -#: ../../src/Translations/AdminTranslations.php:704, -#: ../../src/Translations/AdminTranslations.php:710, -#: ../../src/Translations/AdminTranslations.php:765, -#: ../../src/Translations/AdminTranslations.php:771, -#: ../../src/Translations/AdminTranslations.php:836, -#: ../../src/Translations/AdminTranslations.php:842 msgid "Currency conversion is" msgstr "Conversión de moneda está" -#: ../../src/Translations/AdminTranslations.php:411, -#: ../../src/Translations/AdminTranslations.php:417 +#: ../../src/Translations/AdminTranslations.php:412, +#: ../../src/Translations/AdminTranslations.php:418 msgid "The buyer" msgstr "El comprador" -#: ../../src/Translations/AdminTranslations.php:412 +#: ../../src/Translations/AdminTranslations.php:413 msgid "will be automatically redirected to the store" msgstr "será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:418 +#: ../../src/Translations/AdminTranslations.php:419 msgid "will not be automatically redirected to the store" msgstr "no será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:424, -#: ../../src/Translations/AdminTranslations.php:430, -#: ../../src/Translations/AdminTranslations.php:640, -#: ../../src/Translations/AdminTranslations.php:646 +#: ../../src/Translations/AdminTranslations.php:425, +#: ../../src/Translations/AdminTranslations.php:431, +#: ../../src/Translations/AdminTranslations.php:641, +#: ../../src/Translations/AdminTranslations.php:647 msgid "Pending payments" msgstr "Los pagos pendientes" -#: ../../src/Translations/AdminTranslations.php:425, -#: ../../src/Translations/AdminTranslations.php:641 +#: ../../src/Translations/AdminTranslations.php:426, +#: ../../src/Translations/AdminTranslations.php:642 msgid "will be automatically declined" msgstr "se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:431, -#: ../../src/Translations/AdminTranslations.php:647 +#: ../../src/Translations/AdminTranslations.php:432, +#: ../../src/Translations/AdminTranslations.php:648 msgid "will not be automatically declined" msgstr "no se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:435, -#: ../../src/Translations/AdminTranslations.php:450 +#: ../../src/Translations/AdminTranslations.php:436, +#: ../../src/Translations/AdminTranslations.php:451 msgid "Your saved cards or money in Mercado Pago" msgstr "Compras con tarjetas guardadas o saldo en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:436, -#: ../../src/Translations/AdminTranslations.php:438 +#: ../../src/Translations/AdminTranslations.php:437, +#: ../../src/Translations/AdminTranslations.php:439 msgid "Debit, Credit and invoice in Mercado Pago environment" msgstr "Débito, crédito y efectivo, en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:437 +#: ../../src/Translations/AdminTranslations.php:438 msgid "Mercado Pago - Checkout Pro" msgstr "Mercado Pago - Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:439 +#: ../../src/Translations/AdminTranslations.php:440 msgid "Checkout Pro" msgstr "Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:440 +#: ../../src/Translations/AdminTranslations.php:441 msgid "" "With Checkout Pro you sell with all the safety inside Mercado Pago " "environment." @@ -632,23 +642,13 @@ msgstr "" "Con el Checkout Pro, podrás vender con toda la seguridad, dentro de Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:441, -#: ../../src/Translations/AdminTranslations.php:555, -#: ../../src/Translations/AdminTranslations.php:720, -#: ../../src/Translations/AdminTranslations.php:781, -#: ../../src/Translations/AdminTranslations.php:861 -msgid "Mercado Pago plugin general settings" -msgstr "Configuraciones generales del plugin de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:442, #: ../../src/Translations/AdminTranslations.php:556, -#: ../../src/Translations/AdminTranslations.php:658, #: ../../src/Translations/AdminTranslations.php:721, #: ../../src/Translations/AdminTranslations.php:782, #: ../../src/Translations/AdminTranslations.php:862 -msgid "" -"Set the deadlines and fees, test your store or access the Plugin manual." -msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." +msgid "Mercado Pago plugin general settings" +msgstr "Configuraciones generales del plugin de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:443, #: ../../src/Translations/AdminTranslations.php:557, @@ -656,16 +656,26 @@ msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:722, #: ../../src/Translations/AdminTranslations.php:783, #: ../../src/Translations/AdminTranslations.php:863 -msgid "Go to Settings" -msgstr "Ir a Configuraciones" +msgid "" +"Set the deadlines and fees, test your store or access the Plugin manual." +msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:444, +#: ../../src/Translations/AdminTranslations.php:558, #: ../../src/Translations/AdminTranslations.php:660, +#: ../../src/Translations/AdminTranslations.php:723, +#: ../../src/Translations/AdminTranslations.php:784, #: ../../src/Translations/AdminTranslations.php:864 +msgid "Go to Settings" +msgstr "Ir a Configuraciones" + +#: ../../src/Translations/AdminTranslations.php:445, +#: ../../src/Translations/AdminTranslations.php:661, +#: ../../src/Translations/AdminTranslations.php:865 msgid "Enable the checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:445 +#: ../../src/Translations/AdminTranslations.php:446 msgid "" "By disabling it, you will disable all payments from Mercado Pago Checkout at " "Mercado Pago website by redirect." @@ -673,40 +683,31 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago del checkout en el " "sitio web de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:448, -#: ../../src/Translations/AdminTranslations.php:566, -#: ../../src/Translations/AdminTranslations.php:664, -#: ../../src/Translations/AdminTranslations.php:727, -#: ../../src/Translations/AdminTranslations.php:788, -#: ../../src/Translations/AdminTranslations.php:868 -msgid "Title in the store Checkout" -msgstr "Título en el checkout de la tienda" - #: ../../src/Translations/AdminTranslations.php:449, +#: ../../src/Translations/AdminTranslations.php:567, #: ../../src/Translations/AdminTranslations.php:665, #: ../../src/Translations/AdminTranslations.php:728, #: ../../src/Translations/AdminTranslations.php:789, #: ../../src/Translations/AdminTranslations.php:869 +msgid "Title in the store Checkout" +msgstr "Título en el checkout de la tienda" + +#: ../../src/Translations/AdminTranslations.php:450, +#: ../../src/Translations/AdminTranslations.php:666, +#: ../../src/Translations/AdminTranslations.php:729, +#: ../../src/Translations/AdminTranslations.php:790, +#: ../../src/Translations/AdminTranslations.php:870 msgid "Change the display text in Checkout, maximum characters: 85" msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85" -#: ../../src/Translations/AdminTranslations.php:451, -#: ../../src/Translations/AdminTranslations.php:569, -#: ../../src/Translations/AdminTranslations.php:667, -#: ../../src/Translations/AdminTranslations.php:730, -#: ../../src/Translations/AdminTranslations.php:791, -#: ../../src/Translations/AdminTranslations.php:871 -msgid "The text inserted here will not be translated to other languages" -msgstr "El texto insertado aquí no se traducirá a otros idiomas" - #: ../../src/Translations/AdminTranslations.php:452, #: ../../src/Translations/AdminTranslations.php:570, -#: ../../src/Translations/AdminTranslations.php:671, +#: ../../src/Translations/AdminTranslations.php:668, #: ../../src/Translations/AdminTranslations.php:731, #: ../../src/Translations/AdminTranslations.php:792, -#: ../../src/Translations/AdminTranslations.php:885 -msgid "Convert Currency" -msgstr "Convertir moneda" +#: ../../src/Translations/AdminTranslations.php:872 +msgid "The text inserted here will not be translated to other languages" +msgstr "El texto insertado aquí no se traducirá a otros idiomas" #: ../../src/Translations/AdminTranslations.php:453, #: ../../src/Translations/AdminTranslations.php:571, @@ -714,6 +715,15 @@ msgstr "Convertir moneda" #: ../../src/Translations/AdminTranslations.php:732, #: ../../src/Translations/AdminTranslations.php:793, #: ../../src/Translations/AdminTranslations.php:886 +msgid "Convert Currency" +msgstr "Convertir moneda" + +#: ../../src/Translations/AdminTranslations.php:454, +#: ../../src/Translations/AdminTranslations.php:572, +#: ../../src/Translations/AdminTranslations.php:673, +#: ../../src/Translations/AdminTranslations.php:733, +#: ../../src/Translations/AdminTranslations.php:794, +#: ../../src/Translations/AdminTranslations.php:887 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." @@ -721,100 +731,100 @@ 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." -#: ../../src/Translations/AdminTranslations.php:456 +#: ../../src/Translations/AdminTranslations.php:457 msgid "Choose the payment methods you accept in your store" msgstr "Elige los medios de pago que se aceptan en la tienda" -#: ../../src/Translations/AdminTranslations.php:457 +#: ../../src/Translations/AdminTranslations.php:458 msgid "Enable the payment methods available to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../src/Translations/AdminTranslations.php:458 +#: ../../src/Translations/AdminTranslations.php:459 msgid "Credit Cards" msgstr "Tarjetas de crédito" -#: ../../src/Translations/AdminTranslations.php:459 +#: ../../src/Translations/AdminTranslations.php:460 msgid "Debit Cards" msgstr "Tarjetas de débito" -#: ../../src/Translations/AdminTranslations.php:460 +#: ../../src/Translations/AdminTranslations.php:461 msgid "Other Payment Methods" msgstr "Otros medios" -#: ../../src/Translations/AdminTranslations.php:461 +#: ../../src/Translations/AdminTranslations.php:462 msgid "Maximum number of installments" msgstr "Máximo de cuotas" -#: ../../src/Translations/AdminTranslations.php:462 +#: ../../src/Translations/AdminTranslations.php:463 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?" -#: ../../src/Translations/AdminTranslations.php:463 +#: ../../src/Translations/AdminTranslations.php:464 msgid "1 installment" msgstr "1 cuota" -#: ../../src/Translations/AdminTranslations.php:464 +#: ../../src/Translations/AdminTranslations.php:465 msgid "2 installments" msgstr "2 cuotas" -#: ../../src/Translations/AdminTranslations.php:465 +#: ../../src/Translations/AdminTranslations.php:466 msgid "3 installments" msgstr "3 cuotas" -#: ../../src/Translations/AdminTranslations.php:466 +#: ../../src/Translations/AdminTranslations.php:467 msgid "4 installments" msgstr "4 cuotas" -#: ../../src/Translations/AdminTranslations.php:467 +#: ../../src/Translations/AdminTranslations.php:468 msgid "5 installments" msgstr "5 cuotas" -#: ../../src/Translations/AdminTranslations.php:468 +#: ../../src/Translations/AdminTranslations.php:469 msgid "6 installments" msgstr "6 cuotas" -#: ../../src/Translations/AdminTranslations.php:469 +#: ../../src/Translations/AdminTranslations.php:470 msgid "10 installments" msgstr "10 cuotas" -#: ../../src/Translations/AdminTranslations.php:470 +#: ../../src/Translations/AdminTranslations.php:471 msgid "12 installments" msgstr "12 cuotas" -#: ../../src/Translations/AdminTranslations.php:471 +#: ../../src/Translations/AdminTranslations.php:472 msgid "15 installments" msgstr "15 cuotas" -#: ../../src/Translations/AdminTranslations.php:472 +#: ../../src/Translations/AdminTranslations.php:473 msgid "18 installments" msgstr "18 cuotas" -#: ../../src/Translations/AdminTranslations.php:473 +#: ../../src/Translations/AdminTranslations.php:474 msgid "24 installments" msgstr "24 cuotas" -#: ../../src/Translations/AdminTranslations.php:474, -#: ../../src/Translations/AdminTranslations.php:584 +#: ../../src/Translations/AdminTranslations.php:475, +#: ../../src/Translations/AdminTranslations.php:585 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:475, -#: ../../src/Translations/AdminTranslations.php:585, -#: ../../src/Translations/AdminTranslations.php:681, -#: ../../src/Translations/AdminTranslations.php:738, -#: ../../src/Translations/AdminTranslations.php:797, -#: ../../src/Translations/AdminTranslations.php:893 +#: ../../src/Translations/AdminTranslations.php:476, +#: ../../src/Translations/AdminTranslations.php:586, +#: ../../src/Translations/AdminTranslations.php:682, +#: ../../src/Translations/AdminTranslations.php:739, +#: ../../src/Translations/AdminTranslations.php:798, +#: ../../src/Translations/AdminTranslations.php:894 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." -#: ../../src/Translations/AdminTranslations.php:476 +#: ../../src/Translations/AdminTranslations.php:477 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../src/Translations/AdminTranslations.php:477 +#: ../../src/Translations/AdminTranslations.php:478 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -822,39 +832,39 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../src/Translations/AdminTranslations.php:478 +#: ../../src/Translations/AdminTranslations.php:479 msgid "Redirect" msgstr "Redirect" -#: ../../src/Translations/AdminTranslations.php:479 +#: ../../src/Translations/AdminTranslations.php:480 msgid "Modal" msgstr "Modal" -#: ../../src/Translations/AdminTranslations.php:480 +#: ../../src/Translations/AdminTranslations.php:481 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../src/Translations/AdminTranslations.php:481 +#: ../../src/Translations/AdminTranslations.php:482 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?" -#: ../../src/Translations/AdminTranslations.php:484 +#: ../../src/Translations/AdminTranslations.php:485 msgid "Success URL" msgstr "URL de éxito" -#: ../../src/Translations/AdminTranslations.php:485 +#: ../../src/Translations/AdminTranslations.php:486 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." -#: ../../src/Translations/AdminTranslations.php:486 +#: ../../src/Translations/AdminTranslations.php:487 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../src/Translations/AdminTranslations.php:487 +#: ../../src/Translations/AdminTranslations.php:488 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 " @@ -864,11 +874,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../src/Translations/AdminTranslations.php:488 +#: ../../src/Translations/AdminTranslations.php:489 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../src/Translations/AdminTranslations.php:489 +#: ../../src/Translations/AdminTranslations.php:490 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -876,13 +886,13 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../src/Translations/AdminTranslations.php:490, -#: ../../src/Translations/AdminTranslations.php:682 +#: ../../src/Translations/AdminTranslations.php:491, +#: ../../src/Translations/AdminTranslations.php:683 msgid "Automatic decline of payments without instant approval" msgstr "Rechazo automático de pagos sin aprobación instantanea" -#: ../../src/Translations/AdminTranslations.php:491, -#: ../../src/Translations/AdminTranslations.php:683 +#: ../../src/Translations/AdminTranslations.php:492, +#: ../../src/Translations/AdminTranslations.php:684 msgid "" "Enable it if you want to automatically decline payments that are not " "instantly approved by banks or other institutions." @@ -890,55 +900,46 @@ msgstr "" "Actívalo si quieres rechazar automáticamente los pagos que no son aprobados " "instantáneamente por bancos u otros compradores." -#: ../../src/Translations/AdminTranslations.php:492 +#: ../../src/Translations/AdminTranslations.php:493 msgid "Debit, Credit and Invoice in Mercado Pago environment." msgstr "Débito, crédito y efectivo, en Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:495, -#: ../../src/Translations/AdminTranslations.php:586, -#: ../../src/Translations/AdminTranslations.php:686, -#: ../../src/Translations/AdminTranslations.php:747, -#: ../../src/Translations/AdminTranslations.php:806, -#: ../../src/Translations/AdminTranslations.php:894 -msgid "Discount in Mercado Pago Checkouts" -msgstr "Descuento en los checkouts de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:496, #: ../../src/Translations/AdminTranslations.php:587, #: ../../src/Translations/AdminTranslations.php:687, #: ../../src/Translations/AdminTranslations.php:748, #: ../../src/Translations/AdminTranslations.php:807, #: ../../src/Translations/AdminTranslations.php:895 -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." +msgid "Discount in Mercado Pago Checkouts" +msgstr "Descuento en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:497, -#: ../../src/Translations/AdminTranslations.php:500, #: ../../src/Translations/AdminTranslations.php:588, -#: ../../src/Translations/AdminTranslations.php:591, #: ../../src/Translations/AdminTranslations.php:688, -#: ../../src/Translations/AdminTranslations.php:691, #: ../../src/Translations/AdminTranslations.php:749, -#: ../../src/Translations/AdminTranslations.php:752, #: ../../src/Translations/AdminTranslations.php:808, -#: ../../src/Translations/AdminTranslations.php:811, -#: ../../src/Translations/AdminTranslations.php:896, -#: ../../src/Translations/AdminTranslations.php:899 -msgid "Activate and show this information on Mercado Pago Checkout" -msgstr "Activar y mostrar esa información en el checkout Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:896 +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." #: ../../src/Translations/AdminTranslations.php:498, +#: ../../src/Translations/AdminTranslations.php:501, #: ../../src/Translations/AdminTranslations.php:589, +#: ../../src/Translations/AdminTranslations.php:592, #: ../../src/Translations/AdminTranslations.php:689, +#: ../../src/Translations/AdminTranslations.php:692, #: ../../src/Translations/AdminTranslations.php:750, +#: ../../src/Translations/AdminTranslations.php:753, #: ../../src/Translations/AdminTranslations.php:809, -#: ../../src/Translations/AdminTranslations.php:897 -msgid "Commission in Mercado Pago Checkouts" -msgstr "Comisiones en los checkouts de Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:812, +#: ../../src/Translations/AdminTranslations.php:897, +#: ../../src/Translations/AdminTranslations.php:900 +msgid "Activate and show this information on Mercado Pago Checkout" +msgstr "Activar y mostrar esa información en el checkout Mercado Pago" #: ../../src/Translations/AdminTranslations.php:499, #: ../../src/Translations/AdminTranslations.php:590, @@ -946,6 +947,15 @@ msgstr "Comisiones en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:751, #: ../../src/Translations/AdminTranslations.php:810, #: ../../src/Translations/AdminTranslations.php:898 +msgid "Commission in Mercado Pago Checkouts" +msgstr "Comisiones en los checkouts de Mercado Pago" + +#: ../../src/Translations/AdminTranslations.php:500, +#: ../../src/Translations/AdminTranslations.php:591, +#: ../../src/Translations/AdminTranslations.php:691, +#: ../../src/Translations/AdminTranslations.php:752, +#: ../../src/Translations/AdminTranslations.php:811, +#: ../../src/Translations/AdminTranslations.php:899 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -953,35 +963,35 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:501 +#: ../../src/Translations/AdminTranslations.php:502 msgid "This seems to be an invalid URL" msgstr "Esto parece ser una URL no válida" -#: ../../src/Translations/AdminTranslations.php:514, -#: ../../src/Translations/AdminTranslations.php:520 +#: ../../src/Translations/AdminTranslations.php:515, +#: ../../src/Translations/AdminTranslations.php:521 msgid "Payment in installments without card in the store checkout is" msgstr "Cuotas sin tarjeta en el checkout de la tienda está" -#: ../../src/Translations/AdminTranslations.php:538, -#: ../../src/Translations/AdminTranslations.php:544 +#: ../../src/Translations/AdminTranslations.php:539, +#: ../../src/Translations/AdminTranslations.php:545 msgid "The installments without card component is" msgstr "El componente de cuotas sin tarjeta está" -#: ../../src/Translations/AdminTranslations.php:549, -#: ../../src/Translations/AdminTranslations.php:553 +#: ../../src/Translations/AdminTranslations.php:550, +#: ../../src/Translations/AdminTranslations.php:554 msgid "Installments without card" msgstr "Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:550, -#: ../../src/Translations/AdminTranslations.php:552 +#: ../../src/Translations/AdminTranslations.php:551, +#: ../../src/Translations/AdminTranslations.php:553 msgid "Customers who buy on spot and pay later in up to 12 installments" msgstr "Tus clientes compran al instante y pagan después en hasta 12 cuotas" -#: ../../src/Translations/AdminTranslations.php:551 +#: ../../src/Translations/AdminTranslations.php:552 msgid "Mercado Pago - Installments without card" msgstr "Mercado Pago - Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:554 +#: ../../src/Translations/AdminTranslations.php:555 msgid "" "Reach millions of buyers by offering Mercado Credito as a payment method. " "Our flexible payment options give your customers the possibility to buy " @@ -995,11 +1005,11 @@ msgstr "" "necesidad de utilizar una tarjeta. Para tu negocio, la aprobación de la " "compra es inmediata y está garantizada." -#: ../../src/Translations/AdminTranslations.php:558 +#: ../../src/Translations/AdminTranslations.php:559 msgid "Activate installments without card in your store checkout" msgstr "Activar cuotas sin tarjeta en el checkout de tu tienda" -#: ../../src/Translations/AdminTranslations.php:559 +#: ../../src/Translations/AdminTranslations.php:560 msgid "" "Offer the option to pay in installments without card directly from your " "store's checkout." @@ -1007,37 +1017,37 @@ msgstr "" "Ofrece la opción de pago en cuotas sin tarjeta directo desde el checkout de " "tu tienda." -#: ../../src/Translations/AdminTranslations.php:562 +#: ../../src/Translations/AdminTranslations.php:563 msgid "Checkout visualization" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:563, -#: ../../src/Translations/AdminTranslations.php:583 +#: ../../src/Translations/AdminTranslations.php:564, +#: ../../src/Translations/AdminTranslations.php:584 msgid "Check below how this feature will be displayed to your customers:" msgstr "A continuación verás cómo este recurso aparecerá para tus clientes:" -#: ../../src/Translations/AdminTranslations.php:564 +#: ../../src/Translations/AdminTranslations.php:565 msgid "Checkout Preview" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:565 +#: ../../src/Translations/AdminTranslations.php:566 msgid "PREVIEW" msgstr "DEMO" -#: ../../src/Translations/AdminTranslations.php:567 +#: ../../src/Translations/AdminTranslations.php:568 msgid "It is possible to edit the title. Maximum of 85 characters." msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85." -#: ../../src/Translations/AdminTranslations.php:568 +#: ../../src/Translations/AdminTranslations.php:569 msgid "Checkout without card" msgstr "Hasta 12 pagos sin tarjeta con Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:574 +#: ../../src/Translations/AdminTranslations.php:575 msgid "" "Inform your customers about the option of paying in installments without card" msgstr "Informa a tus clientes sobre la opción de cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:575 +#: ../../src/Translations/AdminTranslations.php:576 msgid "" "By activating the installments without card component, you increase your " "chances of selling." @@ -1045,62 +1055,62 @@ msgstr "" "Al activar el componente de cuotas sin tarjeta,, aumentarás tus " "posibilidades de venta." -#: ../../src/Translations/AdminTranslations.php:578 +#: ../../src/Translations/AdminTranslations.php:579 msgid "Banner on the product page | Computer version" msgstr "Componente en la página del producto | Versión para computadora" -#: ../../src/Translations/AdminTranslations.php:579 +#: ../../src/Translations/AdminTranslations.php:580 msgid "Banner on the product page | Cellphone version" msgstr "Componente en la página del producto | Versión para celular" -#: ../../src/Translations/AdminTranslations.php:580 +#: ../../src/Translations/AdminTranslations.php:581 msgid "Computer" msgstr "Computadora" -#: ../../src/Translations/AdminTranslations.php:581 +#: ../../src/Translations/AdminTranslations.php:582 msgid "Mobile" msgstr "Celular" -#: ../../src/Translations/AdminTranslations.php:582 +#: ../../src/Translations/AdminTranslations.php:583 msgid "Component visualization" msgstr "Visualización del componente" -#: ../../src/Translations/AdminTranslations.php:604, -#: ../../src/Translations/AdminTranslations.php:610 +#: ../../src/Translations/AdminTranslations.php:605, +#: ../../src/Translations/AdminTranslations.php:611 msgid "Transparent Checkout for credit cards is" msgstr "El Checkout Transparente de las tarjetas de crédito está" -#: ../../src/Translations/AdminTranslations.php:628, -#: ../../src/Translations/AdminTranslations.php:634 +#: ../../src/Translations/AdminTranslations.php:629, +#: ../../src/Translations/AdminTranslations.php:635 msgid "Payments via Mercado Pago accounts are" msgstr "Los pagos a través de la cuenta de Mercado Pago están" -#: ../../src/Translations/AdminTranslations.php:651, -#: ../../src/Translations/AdminTranslations.php:666 +#: ../../src/Translations/AdminTranslations.php:652, +#: ../../src/Translations/AdminTranslations.php:667 msgid "Debit and Credit" msgstr "Débito e crédito" -#: ../../src/Translations/AdminTranslations.php:652, -#: ../../src/Translations/AdminTranslations.php:654, -#: ../../src/Translations/AdminTranslations.php:716, -#: ../../src/Translations/AdminTranslations.php:777, -#: ../../src/Translations/AdminTranslations.php:856, -#: ../../src/Translations/AdminTranslations.php:858 -msgid "Transparent Checkout in your store environment" -msgstr "Checkout Transparente en tu tienda" - #: ../../src/Translations/AdminTranslations.php:653, +#: ../../src/Translations/AdminTranslations.php:655, #: ../../src/Translations/AdminTranslations.php:717, #: ../../src/Translations/AdminTranslations.php:778, -#: ../../src/Translations/AdminTranslations.php:857 +#: ../../src/Translations/AdminTranslations.php:857, +#: ../../src/Translations/AdminTranslations.php:859 +msgid "Transparent Checkout in your store environment" +msgstr "Checkout Transparente en tu tienda" + +#: ../../src/Translations/AdminTranslations.php:654, +#: ../../src/Translations/AdminTranslations.php:718, +#: ../../src/Translations/AdminTranslations.php:779, +#: ../../src/Translations/AdminTranslations.php:858 msgid "Mercado pago - Customized Checkout" msgstr "Mercado Pago - Checkout Personalizado" -#: ../../src/Translations/AdminTranslations.php:655 +#: ../../src/Translations/AdminTranslations.php:656 msgid "Transparent Checkout | Credit card" msgstr "Checkout Transparente | Tarjeta de Crédito" -#: ../../src/Translations/AdminTranslations.php:656 +#: ../../src/Translations/AdminTranslations.php:657 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and with the security from Mercado Pago." @@ -1108,11 +1118,11 @@ msgstr "" "Con el Checkout Transparente, puedes vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:657 +#: ../../src/Translations/AdminTranslations.php:658 msgid "Mercado Pago Plugin general settings" msgstr "Configuraciones generales del plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:661 +#: ../../src/Translations/AdminTranslations.php:662 msgid "" "By disabling it, you will disable all credit cards payments from Mercado " "Pago Transparent Checkout." @@ -1120,11 +1130,11 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:668 +#: ../../src/Translations/AdminTranslations.php:669 msgid "Installments Fees" msgstr "Tasas de pago en cuotas" -#: ../../src/Translations/AdminTranslations.php:669 +#: ../../src/Translations/AdminTranslations.php:670 msgid "" "Set installment fees and whether they will be charged from the store or from " "the buyer." @@ -1132,15 +1142,15 @@ msgstr "" "Configura las tasas de las cuotas y si se las cobrarán a la tienda o al " "comprador." -#: ../../src/Translations/AdminTranslations.php:670 +#: ../../src/Translations/AdminTranslations.php:671 msgid "Set fees" msgstr "Configurar tasas" -#: ../../src/Translations/AdminTranslations.php:675 +#: ../../src/Translations/AdminTranslations.php:676 msgid "Payments via Mercado Pago account" msgstr "Pagos a través de la cuenta de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:676 +#: ../../src/Translations/AdminTranslations.php:677 msgid "" "Your customers pay faster with saved cards, money balance or other available " "methods in their Mercado Pago accounts." @@ -1148,26 +1158,26 @@ msgstr "" "Tus clientes pagan más rápido con tarjetas guardadas, dinero disponible o " "con otros medios disponibles en sus cuentas de MP." -#: ../../src/Translations/AdminTranslations.php:679 +#: ../../src/Translations/AdminTranslations.php:680 msgid "Check an example of how it will appear in your store:" msgstr "Conoce un ejemplo de cómo aparecerá en la tienda:" -#: ../../src/Translations/AdminTranslations.php:680 +#: ../../src/Translations/AdminTranslations.php:681 msgid "Advanced configuration of the personalized payment experience" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:715, -#: ../../src/Translations/AdminTranslations.php:729 +#: ../../src/Translations/AdminTranslations.php:716, +#: ../../src/Translations/AdminTranslations.php:730 msgid "Invoice" msgstr "Efectivo" -#: ../../src/Translations/AdminTranslations.php:718 +#: ../../src/Translations/AdminTranslations.php:719 msgid "Transparent Checkout | Invoice or Loterica" msgstr "Checkout Transparente | Efectivo" -#: ../../src/Translations/AdminTranslations.php:719, -#: ../../src/Translations/AdminTranslations.php:780, -#: ../../src/Translations/AdminTranslations.php:860 +#: ../../src/Translations/AdminTranslations.php:720, +#: ../../src/Translations/AdminTranslations.php:781, +#: ../../src/Translations/AdminTranslations.php:861 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and all the safety from Mercado Pago." @@ -1175,12 +1185,12 @@ msgstr "" "Con el Checkout Transparente, podrás vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:723, -#: ../../src/Translations/AdminTranslations.php:784 +#: ../../src/Translations/AdminTranslations.php:724, +#: ../../src/Translations/AdminTranslations.php:785 msgid "Enable the Checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:724 +#: ../../src/Translations/AdminTranslations.php:725 msgid "" "By disabling it, you will disable all invoice payments from Mercado Pago " "Transparent Checkout." @@ -1188,34 +1198,34 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago en efectivo en el " "Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:725 +#: ../../src/Translations/AdminTranslations.php:726 msgid "The transparent checkout for tickets is enabled." msgstr "El Checkout Transparente está activo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:726 +#: ../../src/Translations/AdminTranslations.php:727 msgid "The transparent checkout for tickets is disabled." msgstr "El Checkout Transparente está inactivo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:735 +#: ../../src/Translations/AdminTranslations.php:736 msgid "Payment Due" msgstr "Fecha de pago" -#: ../../src/Translations/AdminTranslations.php:736 +#: ../../src/Translations/AdminTranslations.php:737 msgid "In how many days will cash payments expire." msgstr "En cuántos días vencerán los pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:737 +#: ../../src/Translations/AdminTranslations.php:738 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../src/Translations/AdminTranslations.php:739, -#: ../../src/Translations/AdminTranslations.php:798 +#: ../../src/Translations/AdminTranslations.php:740, +#: ../../src/Translations/AdminTranslations.php:799 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../src/Translations/AdminTranslations.php:740, -#: ../../src/Translations/AdminTranslations.php:799 +#: ../../src/Translations/AdminTranslations.php:741, +#: ../../src/Translations/AdminTranslations.php:800 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 " @@ -1225,41 +1235,41 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../src/Translations/AdminTranslations.php:741, -#: ../../src/Translations/AdminTranslations.php:800 +#: ../../src/Translations/AdminTranslations.php:742, +#: ../../src/Translations/AdminTranslations.php:801 msgid "Reduce inventory is enabled." msgstr "Reducir inventario está activo." -#: ../../src/Translations/AdminTranslations.php:742, -#: ../../src/Translations/AdminTranslations.php:801 +#: ../../src/Translations/AdminTranslations.php:743, +#: ../../src/Translations/AdminTranslations.php:802 msgid "Reduce inventory is disabled." msgstr "Reducir inventario está inactivo." -#: ../../src/Translations/AdminTranslations.php:744, -#: ../../src/Translations/AdminTranslations.php:803 +#: ../../src/Translations/AdminTranslations.php:745, +#: ../../src/Translations/AdminTranslations.php:804 msgid "Enable the available payment methods" msgstr "Habilita los medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:745, -#: ../../src/Translations/AdminTranslations.php:804 +#: ../../src/Translations/AdminTranslations.php:746, +#: ../../src/Translations/AdminTranslations.php:805 msgid "Choose the available payment methods in your store." msgstr "Elige los medios de pago que se aceptan en la tienda." -#: ../../src/Translations/AdminTranslations.php:746, -#: ../../src/Translations/AdminTranslations.php:805 +#: ../../src/Translations/AdminTranslations.php:747, +#: ../../src/Translations/AdminTranslations.php:806 msgid "All payment methods" msgstr "Medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:776, -#: ../../src/Translations/AdminTranslations.php:790 +#: ../../src/Translations/AdminTranslations.php:777, +#: ../../src/Translations/AdminTranslations.php:791 msgid "PSE" msgstr "PSE" -#: ../../src/Translations/AdminTranslations.php:779 +#: ../../src/Translations/AdminTranslations.php:780 msgid "Transparent Checkout PSE" msgstr "Pago transparente PSE" -#: ../../src/Translations/AdminTranslations.php:785 +#: ../../src/Translations/AdminTranslations.php:786 msgid "" "By deactivating it, you will disable PSE payments from Mercado Pago " "Transparent Checkout." @@ -1267,49 +1277,49 @@ msgstr "" "Al desactivarlo, desactivará los pagos PSE de Mercado Pago Transparente " "Checkout." -#: ../../src/Translations/AdminTranslations.php:786 +#: ../../src/Translations/AdminTranslations.php:787 msgid "The transparent checkout for PSE is enabled." msgstr "El Checkout Transparente está activo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:787 +#: ../../src/Translations/AdminTranslations.php:788 msgid "The transparent checkout for PSE is disabled." msgstr "El Checkout Transparente está inactivo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:796 +#: ../../src/Translations/AdminTranslations.php:797 msgid "Advanced configuration of the PSE payment experience" msgstr "Configuración avanzada de la experiencia de pago PSE" -#: ../../src/Translations/AdminTranslations.php:824, -#: ../../src/Translations/AdminTranslations.php:830 +#: ../../src/Translations/AdminTranslations.php:825, +#: ../../src/Translations/AdminTranslations.php:831 msgid "The transparent checkout for Pix payment is" msgstr "El Checkout Transparente está" -#: ../../src/Translations/AdminTranslations.php:848 +#: ../../src/Translations/AdminTranslations.php:849 msgid "Go to the" msgstr "Ve al área" -#: ../../src/Translations/AdminTranslations.php:849 +#: ../../src/Translations/AdminTranslations.php:850 msgid "Your Profile" msgstr "Tu Perfil" -#: ../../src/Translations/AdminTranslations.php:850 +#: ../../src/Translations/AdminTranslations.php:851 msgid "area and choose the" msgstr "y elige la sección" -#: ../../src/Translations/AdminTranslations.php:851 +#: ../../src/Translations/AdminTranslations.php:852 msgid "Your Pix Keys section" msgstr "Tus claves Pix" -#: ../../src/Translations/AdminTranslations.php:855, -#: ../../src/Translations/AdminTranslations.php:870 +#: ../../src/Translations/AdminTranslations.php:856, +#: ../../src/Translations/AdminTranslations.php:871 msgid "Pix" msgstr "Pix" -#: ../../src/Translations/AdminTranslations.php:859 +#: ../../src/Translations/AdminTranslations.php:860 msgid "Transparent Checkout | Pix" msgstr "Checkout Transparente | Pix" -#: ../../src/Translations/AdminTranslations.php:865 +#: ../../src/Translations/AdminTranslations.php:866 msgid "" "By disabling it, you will disable all Pix payments from Mercado Pago " "Transparent Checkout." @@ -1317,85 +1327,85 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:872 +#: ../../src/Translations/AdminTranslations.php:873 msgid "Expiration for payments via Pix" msgstr "Vencimiento para pagos con Pix" -#: ../../src/Translations/AdminTranslations.php:873 +#: ../../src/Translations/AdminTranslations.php:874 msgid "Set the limit in minutes for your clients to pay via Pix." msgstr "" "Define el límite de minutos para que tus clientes puedan pagar con Pix." -#: ../../src/Translations/AdminTranslations.php:874 +#: ../../src/Translations/AdminTranslations.php:875 msgid "15 minutes" msgstr "15 minutos" -#: ../../src/Translations/AdminTranslations.php:875 +#: ../../src/Translations/AdminTranslations.php:876 msgid "30 minutes (recommended)" msgstr "30 minutos (recomendado)" -#: ../../src/Translations/AdminTranslations.php:876 +#: ../../src/Translations/AdminTranslations.php:877 msgid "60 minutes" msgstr "60 minutos" -#: ../../src/Translations/AdminTranslations.php:877 +#: ../../src/Translations/AdminTranslations.php:878 msgid "12 hours" msgstr "12 horas" -#: ../../src/Translations/AdminTranslations.php:878 +#: ../../src/Translations/AdminTranslations.php:879 msgid "24 hours" msgstr "24 horas" -#: ../../src/Translations/AdminTranslations.php:879 +#: ../../src/Translations/AdminTranslations.php:880 msgid "2 days" msgstr "2 días" -#: ../../src/Translations/AdminTranslations.php:880 +#: ../../src/Translations/AdminTranslations.php:881 msgid "3 days" msgstr "3 días" -#: ../../src/Translations/AdminTranslations.php:881 +#: ../../src/Translations/AdminTranslations.php:882 msgid "4 days" msgstr "4 días" -#: ../../src/Translations/AdminTranslations.php:882 +#: ../../src/Translations/AdminTranslations.php:883 msgid "5 days" msgstr "5 días" -#: ../../src/Translations/AdminTranslations.php:883 +#: ../../src/Translations/AdminTranslations.php:884 msgid "6 days" msgstr "6 días" -#: ../../src/Translations/AdminTranslations.php:884 +#: ../../src/Translations/AdminTranslations.php:885 msgid "7 days" msgstr "7 días" -#: ../../src/Translations/AdminTranslations.php:889 +#: ../../src/Translations/AdminTranslations.php:890 msgid "Would you like to know how Pix works?" msgstr "¿Quieres saber cómo funciona Pix?" -#: ../../src/Translations/AdminTranslations.php:890 +#: ../../src/Translations/AdminTranslations.php:891 msgid "" "We have a dedicated page where we explain how it works and its advantages." msgstr "Creamos una página que explica su funcionamiento y sus vantajas." -#: ../../src/Translations/AdminTranslations.php:891 +#: ../../src/Translations/AdminTranslations.php:892 msgid "Find out more about Pix" msgstr "Saber más sobre Pix" -#: ../../src/Translations/AdminTranslations.php:892 +#: ../../src/Translations/AdminTranslations.php:893 msgid "Advanced configuration of the Pix experience" msgstr "Configuración avanzada de la experiencia Pix" -#: ../../src/Translations/AdminTranslations.php:900 +#: ../../src/Translations/AdminTranslations.php:901 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." -#: ../../src/Translations/AdminTranslations.php:901 +#: ../../src/Translations/AdminTranslations.php:902 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../src/Translations/AdminTranslations.php:903 +#: ../../src/Translations/AdminTranslations.php:904 msgid "" "Choose which data to register as Pix keys. After registering, you can set up " "Pix in your checkout." @@ -1403,7 +1413,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el Pix en tu checkout." -#: ../../src/Translations/AdminTranslations.php:904 +#: ../../src/Translations/AdminTranslations.php:905 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1411,7 +1421,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../src/Translations/AdminTranslations.php:905 +#: ../../src/Translations/AdminTranslations.php:906 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1419,11 +1429,11 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../src/Translations/AdminTranslations.php:906 +#: ../../src/Translations/AdminTranslations.php:907 msgid "Learn more about Pix" msgstr "Más información sobre Pix" -#: ../../src/Translations/AdminTranslations.php:907 +#: ../../src/Translations/AdminTranslations.php:908 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1431,82 +1441,82 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../src/Translations/AdminTranslations.php:908 +#: ../../src/Translations/AdminTranslations.php:909 msgid "click here." msgstr "haz clic aquí." -#: ../../src/Translations/AdminTranslations.php:921 +#: ../../src/Translations/AdminTranslations.php:922 msgid "To enable test mode" msgstr "Para activar el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:923 +#: ../../src/Translations/AdminTranslations.php:924 msgid "copy your test credentials" msgstr "copia tus credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:924 +#: ../../src/Translations/AdminTranslations.php:925 msgid "and paste them above in section 1 of this page" msgstr "y pégalas en la sección 1 de esta página" -#: ../../src/Translations/AdminTranslations.php:929 +#: ../../src/Translations/AdminTranslations.php:930 msgid "Create your" msgstr "Crea tu" -#: ../../src/Translations/AdminTranslations.php:931 +#: ../../src/Translations/AdminTranslations.php:932 msgid "test user" msgstr "usuario de prueba" -#: ../../src/Translations/AdminTranslations.php:932 +#: ../../src/Translations/AdminTranslations.php:933 msgid "" "(Optional. Can be used in Production Mode and Test Mode, to test payments)" msgstr "" "(Opcional. Se puede utilizar en modo de producción y en modo de prueba, para " "probar los pagos)" -#: ../../src/Translations/AdminTranslations.php:938 +#: ../../src/Translations/AdminTranslations.php:939 msgid "Use our test cards" msgstr "Utiliza nuestras tarjetas de prueba" -#: ../../src/Translations/AdminTranslations.php:939 +#: ../../src/Translations/AdminTranslations.php:940 msgid "never use real cards" msgstr "nunca utilices tarjetas reales" -#: ../../src/Translations/AdminTranslations.php:945 +#: ../../src/Translations/AdminTranslations.php:946 msgid "Visit your store" msgstr "Visita tu tienda" -#: ../../src/Translations/AdminTranslations.php:946 +#: ../../src/Translations/AdminTranslations.php:947 msgid "to test purchases" msgstr "para testear compras" -#: ../../src/Translations/AdminTranslations.php:950 +#: ../../src/Translations/AdminTranslations.php:951 msgid "4. Test your store before you sell" msgstr "4. Testea tu tienda antes de vender" -#: ../../src/Translations/AdminTranslations.php:951 +#: ../../src/Translations/AdminTranslations.php:952 msgid "Choose how you want to operate your store:" msgstr "Elige cómo quieres operar tu tienda:" -#: ../../src/Translations/AdminTranslations.php:952 +#: ../../src/Translations/AdminTranslations.php:953 msgid "Test Mode" msgstr "Modo Test" -#: ../../src/Translations/AdminTranslations.php:953 +#: ../../src/Translations/AdminTranslations.php:954 msgid "Sale Mode (Production)" msgstr "Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:954 +#: ../../src/Translations/AdminTranslations.php:955 msgid "Mercado Pago payment methods in Production Mode" msgstr "Medios de pago Mercado Pago en Modo Produción" -#: ../../src/Translations/AdminTranslations.php:955 +#: ../../src/Translations/AdminTranslations.php:956 msgid "Mercado Pago payment methods in Test Mode" msgstr "Medios de pago Mercado Pago en Modo Test" -#: ../../src/Translations/AdminTranslations.php:956 +#: ../../src/Translations/AdminTranslations.php:957 msgid "Enter test credentials" msgstr "Ingresa las credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:957 +#: ../../src/Translations/AdminTranslations.php:958 msgid "" "Test the experience in Test Mode and then enable the Sale Mode (Production) " "to sell." @@ -1514,114 +1524,114 @@ msgstr "" "Testea la experiencia en Modo Test. Luego activa el Modo Ventas (Producción) " "para realizar ventas." -#: ../../src/Translations/AdminTranslations.php:958 +#: ../../src/Translations/AdminTranslations.php:959 msgid "Mercado Pago Checkouts disabled for real collections." msgstr "Checkouts Mercado Pago inactivos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:959 +#: ../../src/Translations/AdminTranslations.php:960 msgid "Test Mode rules." msgstr "Reglas del modo test." -#: ../../src/Translations/AdminTranslations.php:960 +#: ../../src/Translations/AdminTranslations.php:961 msgid "Mercado Pago Checkouts enabled for real collections." msgstr "Checkouts Mercado Pago activos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:961 +#: ../../src/Translations/AdminTranslations.php:962 msgid "The clients can make real purchases in your store." msgstr "Los clientes pueden hacer compras reales en tu tienda." -#: ../../src/Translations/AdminTranslations.php:966 +#: ../../src/Translations/AdminTranslations.php:967 msgid "Store in sale mode (Production)" msgstr "Tienda en Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:967 +#: ../../src/Translations/AdminTranslations.php:968 msgid "Store under test" msgstr "Tienda en Modo Test" -#: ../../src/Translations/AdminTranslations.php:968 +#: ../../src/Translations/AdminTranslations.php:969 msgid "Save changes" msgstr "Guardar cambios" -#: ../../src/Translations/AdminTranslations.php:980 +#: ../../src/Translations/AdminTranslations.php:981 msgid "Store business fields are valid" msgstr "Los campos comerciales de la tienda son válidos" -#: ../../src/Translations/AdminTranslations.php:981 +#: ../../src/Translations/AdminTranslations.php:982 msgid "Store business fields could not be validated" msgstr "Los campos comerciales de la tienda no se pudieron validar" -#: ../../src/Translations/AdminTranslations.php:982 +#: ../../src/Translations/AdminTranslations.php:983 msgid "At least one payment method is enabled" msgstr "Al menos un método de pago está habilitado" -#: ../../src/Translations/AdminTranslations.php:983 +#: ../../src/Translations/AdminTranslations.php:984 msgid "No payment method enabled" msgstr "Ningún método de pago habilitado" -#: ../../src/Translations/AdminTranslations.php:984 +#: ../../src/Translations/AdminTranslations.php:985 msgid "Credentials fields are valid" msgstr "Los campos de la credencial son válidos" -#: ../../src/Translations/AdminTranslations.php:985 +#: ../../src/Translations/AdminTranslations.php:986 msgid "Credentials fields could not be validated" msgstr "No se pudieron validar los campos de credenciales" -#: ../../src/Translations/AdminTranslations.php:997 +#: ../../src/Translations/AdminTranslations.php:998 msgid "Valid Public Key" msgstr "Public key válida" -#: ../../src/Translations/AdminTranslations.php:998 +#: ../../src/Translations/AdminTranslations.php:999 msgid "Invalid Public Key" msgstr "Public key no válida" -#: ../../src/Translations/AdminTranslations.php:999 +#: ../../src/Translations/AdminTranslations.php:1000 msgid "Valid Access Token" msgstr "Access token válido" -#: ../../src/Translations/AdminTranslations.php:1000 +#: ../../src/Translations/AdminTranslations.php:1001 msgid "Invalid Access Token" msgstr "Access token no válido" -#: ../../src/Translations/AdminTranslations.php:1012 +#: ../../src/Translations/AdminTranslations.php:1013 msgid "Credentials were updated" msgstr "Se actualizaron las credenciales" -#: ../../src/Translations/AdminTranslations.php:1013 +#: ../../src/Translations/AdminTranslations.php:1014 msgid "" "Your store has exited Test Mode and is making real sales in Production Mode." msgstr "" "Ahora su tienda está fuera del modo de prueba y está realizando ventas " "reales en el modo de producción." -#: ../../src/Translations/AdminTranslations.php:1014 +#: ../../src/Translations/AdminTranslations.php:1015 msgid "To test the store, re-enter both test credentials." msgstr "Para probar la tienda, vuelva a ingresar ambas credenciales de prueba." -#: ../../src/Translations/AdminTranslations.php:1015 +#: ../../src/Translations/AdminTranslations.php:1016 msgid "Invalid credentials" msgstr "Credenciales no válidas" -#: ../../src/Translations/AdminTranslations.php:1016 +#: ../../src/Translations/AdminTranslations.php:1017 msgid "See our manual to learn" msgstr "Consulte nuestro manual para saber" -#: ../../src/Translations/AdminTranslations.php:1017 +#: ../../src/Translations/AdminTranslations.php:1018 msgid "how to enter the credentials the right way." msgstr "como ingresar las credenciales de forma correcta." -#: ../../src/Translations/AdminTranslations.php:1018 +#: ../../src/Translations/AdminTranslations.php:1019 msgid " for test mode" msgstr " para el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:1030 +#: ../../src/Translations/AdminTranslations.php:1031 msgid "Store information is valid" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:1043 +#: ../../src/Translations/AdminTranslations.php:1044 msgid "Attention:" msgstr "Atención:" -#: ../../src/Translations/AdminTranslations.php:1044 +#: ../../src/Translations/AdminTranslations.php:1045 msgid "" "The currency settings you have in WooCommerce are not compatible with the " "currency you use in your Mercado Pago account. Please activate the currency " @@ -1630,19 +1640,19 @@ msgstr "" "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." -#: ../../src/Translations/AdminTranslations.php:1047 +#: ../../src/Translations/AdminTranslations.php:1048 msgid "We are converting your currency from: " msgstr "Ahora convertimos tu moneda de: " -#: ../../src/Translations/AdminTranslations.php:1063 +#: ../../src/Translations/AdminTranslations.php:1064 msgid "to " msgstr "a " -#: ../../src/Translations/AdminTranslations.php:1074 +#: ../../src/Translations/AdminTranslations.php:1075 msgid "Payment status on Mercado Pago" msgstr "Estado de pago en el Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1075 +#: ../../src/Translations/AdminTranslations.php:1076 msgid "" "This is the payment status of your Mercado Pago Activities. To check the " "order status, please refer to Order details." @@ -1650,52 +1660,52 @@ msgstr "" "Este es el estado del pago de las Actividades de tu Mercado Pago. Para " "consultar el estado del pedido, consulta en Detalles del Pedido." -#: ../../src/Translations/AdminTranslations.php:1076, -#: ../../src/Translations/AdminTranslations.php:1078 +#: ../../src/Translations/AdminTranslations.php:1077, +#: ../../src/Translations/AdminTranslations.php:1079 msgid "View purchase details at Mercado Pago" msgstr "Ver detalles de compra en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1077, -#: ../../src/Translations/AdminTranslations.php:1079, -#: ../../src/Translations/AdminTranslations.php:1081 +#: ../../src/Translations/AdminTranslations.php:1078, +#: ../../src/Translations/AdminTranslations.php:1080, +#: ../../src/Translations/AdminTranslations.php:1082 msgid "Sync order status" msgstr "Sincronizar el estado del pedido" -#: ../../src/Translations/AdminTranslations.php:1080 +#: ../../src/Translations/AdminTranslations.php:1081 msgid "Consult the reasons for refusal" msgstr "Consultar motivos de rechazo" -#: ../../src/Translations/AdminTranslations.php:1082 +#: ../../src/Translations/AdminTranslations.php:1083 msgid "Order update successfully. This page will be reloaded..." msgstr "Actualización del pedido con éxito. Esta página será recargada…" -#: ../../src/Translations/AdminTranslations.php:1083 +#: ../../src/Translations/AdminTranslations.php:1084 msgid "Unable to update order:" msgstr "No se puede actualizar el pedido:" -#: ../../src/Translations/AdminTranslations.php:1084 +#: ../../src/Translations/AdminTranslations.php:1085 msgid "Payment made" msgstr "Pago realizado" -#: ../../src/Translations/AdminTranslations.php:1085 +#: ../../src/Translations/AdminTranslations.php:1086 msgid "Payment made by the buyer and already credited in the account." msgstr "" "El pago realizado por el comprador y que ya está acreditado en la cuenta." -#: ../../src/Translations/AdminTranslations.php:1086 +#: ../../src/Translations/AdminTranslations.php:1087 msgid "Call resolved" msgstr "Llamado resuelto" -#: ../../src/Translations/AdminTranslations.php:1087, -#: ../../src/Translations/AdminTranslations.php:1137 +#: ../../src/Translations/AdminTranslations.php:1088, +#: ../../src/Translations/AdminTranslations.php:1138 msgid "Please contact Mercado Pago for further details." msgstr "Contacta a Mercado Pago para saber más detalles." -#: ../../src/Translations/AdminTranslations.php:1088 +#: ../../src/Translations/AdminTranslations.php:1089 msgid "Payment refunded" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1089 +#: ../../src/Translations/AdminTranslations.php:1090 msgid "" "Your refund request has been made. Please contact Mercado Pago for further " "details." @@ -1703,59 +1713,59 @@ msgstr "" "Tu pedido de reebolso ya fue realizado. Contacta a Mercado Pago para saber " "más detalles." -#: ../../src/Translations/AdminTranslations.php:1090, -#: ../../src/Translations/AdminTranslations.php:1092 +#: ../../src/Translations/AdminTranslations.php:1091, +#: ../../src/Translations/AdminTranslations.php:1093 msgid "Payment returned" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1091 +#: ../../src/Translations/AdminTranslations.php:1092 msgid "The payment has been returned to the client." msgstr "El pago ya fue devuelto al cliente." -#: ../../src/Translations/AdminTranslations.php:1093 +#: ../../src/Translations/AdminTranslations.php:1094 msgid "The payment has been partially returned to the client." msgstr "El pago ya fue devuelto parcialmente al cliente." -#: ../../src/Translations/AdminTranslations.php:1094 +#: ../../src/Translations/AdminTranslations.php:1095 msgid "Payment canceled" msgstr "Pago cancelado" -#: ../../src/Translations/AdminTranslations.php:1095 +#: ../../src/Translations/AdminTranslations.php:1096 msgid "The payment has been successfully canceled." msgstr "El pago fue cancelado con éxito." -#: ../../src/Translations/AdminTranslations.php:1096 +#: ../../src/Translations/AdminTranslations.php:1097 msgid "Purchase canceled" msgstr "Compra cancelada" -#: ../../src/Translations/AdminTranslations.php:1097 +#: ../../src/Translations/AdminTranslations.php:1098 msgid "The payment has been canceled by the customer." msgstr "El pago fue cancelado por el cliente." -#: ../../src/Translations/AdminTranslations.php:1098, -#: ../../src/Translations/AdminTranslations.php:1100, -#: ../../src/Translations/AdminTranslations.php:1102, -#: ../../src/Translations/AdminTranslations.php:1104, -#: ../../src/Translations/AdminTranslations.php:1106, -#: ../../src/Translations/AdminTranslations.php:1114, -#: ../../src/Translations/AdminTranslations.php:1116, -#: ../../src/Translations/AdminTranslations.php:1118, -#: ../../src/Translations/AdminTranslations.php:1120, -#: ../../src/Translations/AdminTranslations.php:1122, -#: ../../src/Translations/AdminTranslations.php:1124, -#: ../../src/Translations/AdminTranslations.php:1126, -#: ../../src/Translations/AdminTranslations.php:1181 -msgid "Pending payment" -msgstr "Cobro pendiente" - #: ../../src/Translations/AdminTranslations.php:1099, #: ../../src/Translations/AdminTranslations.php:1101, #: ../../src/Translations/AdminTranslations.php:1103, -#: ../../src/Translations/AdminTranslations.php:1105 +#: ../../src/Translations/AdminTranslations.php:1105, +#: ../../src/Translations/AdminTranslations.php:1107, +#: ../../src/Translations/AdminTranslations.php:1115, +#: ../../src/Translations/AdminTranslations.php:1117, +#: ../../src/Translations/AdminTranslations.php:1119, +#: ../../src/Translations/AdminTranslations.php:1121, +#: ../../src/Translations/AdminTranslations.php:1123, +#: ../../src/Translations/AdminTranslations.php:1125, +#: ../../src/Translations/AdminTranslations.php:1127, +#: ../../src/Translations/AdminTranslations.php:1182 +msgid "Pending payment" +msgstr "Cobro pendiente" + +#: ../../src/Translations/AdminTranslations.php:1100, +#: ../../src/Translations/AdminTranslations.php:1102, +#: ../../src/Translations/AdminTranslations.php:1104, +#: ../../src/Translations/AdminTranslations.php:1106 msgid "Awaiting payment from the buyer." msgstr "Esperando el pago del comprador." -#: ../../src/Translations/AdminTranslations.php:1107 +#: ../../src/Translations/AdminTranslations.php:1108 msgid "" "We are veryfing the payment. We will notify you by email in up to 6 hours if " "everything is fine so that you can deliver the product or provide the " @@ -1764,19 +1774,19 @@ msgstr "" "Estamos revisando el pago. En menos de 6 horas te avisaremos por e-mail si " "está todo bien para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1108, -#: ../../src/Translations/AdminTranslations.php:1132, -#: ../../src/Translations/AdminTranslations.php:1148, -#: ../../src/Translations/AdminTranslations.php:1167, -#: ../../src/Translations/AdminTranslations.php:1171, -#: ../../src/Translations/AdminTranslations.php:1173, -#: ../../src/Translations/AdminTranslations.php:1175, -#: ../../src/Translations/AdminTranslations.php:1179 +#: ../../src/Translations/AdminTranslations.php:1109, +#: ../../src/Translations/AdminTranslations.php:1133, +#: ../../src/Translations/AdminTranslations.php:1149, +#: ../../src/Translations/AdminTranslations.php:1168, +#: ../../src/Translations/AdminTranslations.php:1172, +#: ../../src/Translations/AdminTranslations.php:1174, +#: ../../src/Translations/AdminTranslations.php:1176, +#: ../../src/Translations/AdminTranslations.php:1180 msgid "Declined payment" msgstr "Cobro rechazado" -#: ../../src/Translations/AdminTranslations.php:1109, -#: ../../src/Translations/AdminTranslations.php:1133 +#: ../../src/Translations/AdminTranslations.php:1110, +#: ../../src/Translations/AdminTranslations.php:1134 msgid "" "The card-issuing bank declined the payment. Please ask your client to use " "another card or to get in touch with the bank." @@ -1785,27 +1795,27 @@ msgstr "" "“\n" "“otra tarjeta o que se comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1110 +#: ../../src/Translations/AdminTranslations.php:1111 msgid "Payment authorized. Awaiting capture." msgstr "Pago autorizado. Esperando captura." -#: ../../src/Translations/AdminTranslations.php:1111 +#: ../../src/Translations/AdminTranslations.php:1112 msgid "" "The payment has been authorized on the client's card. Please capture the " "payment." msgstr "" "Ya se autorizó el pago en la tarjeta del cliente. Haz la captura del pago." -#: ../../src/Translations/AdminTranslations.php:1112 +#: ../../src/Translations/AdminTranslations.php:1113 msgid "Payment in process" msgstr "Pago en proceso" -#: ../../src/Translations/AdminTranslations.php:1113, -#: ../../src/Translations/AdminTranslations.php:1123 +#: ../../src/Translations/AdminTranslations.php:1114, +#: ../../src/Translations/AdminTranslations.php:1124 msgid "Please wait or contact Mercado Pago for further details" msgstr "Espera o contacta a Mercado Pago para saber más detalles" -#: ../../src/Translations/AdminTranslations.php:1115 +#: ../../src/Translations/AdminTranslations.php:1116 msgid "" "The bank is reviewing the payment. As soon as we have their confirmation, we " "will notify you via email so that you can deliver the product or provide the " @@ -1814,33 +1824,33 @@ msgstr "" "El banco está revisando el pago. Te avisaremos por e-mail cuando esté " "confirmado para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1117, -#: ../../src/Translations/AdminTranslations.php:1119, -#: ../../src/Translations/AdminTranslations.php:1121 +#: ../../src/Translations/AdminTranslations.php:1118, +#: ../../src/Translations/AdminTranslations.php:1120, +#: ../../src/Translations/AdminTranslations.php:1122 msgid "Awaiting payment information validation." msgstr "Esperando validación de los datos de pago." -#: ../../src/Translations/AdminTranslations.php:1125 +#: ../../src/Translations/AdminTranslations.php:1126 msgid "Waiting for the buyer." msgstr "Esperando al comprador." -#: ../../src/Translations/AdminTranslations.php:1127 +#: ../../src/Translations/AdminTranslations.php:1128 msgid "Waiting for the card issuer." msgstr "Espererando al emisor de la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1128, -#: ../../src/Translations/AdminTranslations.php:1130, -#: ../../src/Translations/AdminTranslations.php:1134, -#: ../../src/Translations/AdminTranslations.php:1155, -#: ../../src/Translations/AdminTranslations.php:1177 -msgid "The card issuing bank declined the payment" -msgstr "El banco emisor de la tarjeta rechazó el pago" - #: ../../src/Translations/AdminTranslations.php:1129, #: ../../src/Translations/AdminTranslations.php:1131, #: ../../src/Translations/AdminTranslations.php:1135, #: ../../src/Translations/AdminTranslations.php:1156, #: ../../src/Translations/AdminTranslations.php:1178 +msgid "The card issuing bank declined the payment" +msgstr "El banco emisor de la tarjeta rechazó el pago" + +#: ../../src/Translations/AdminTranslations.php:1130, +#: ../../src/Translations/AdminTranslations.php:1132, +#: ../../src/Translations/AdminTranslations.php:1136, +#: ../../src/Translations/AdminTranslations.php:1157, +#: ../../src/Translations/AdminTranslations.php:1179 msgid "" "Please recommend your customer to pay with another payment method or to " "contact their bank." @@ -1848,32 +1858,32 @@ msgstr "" "Recomiéndale a tu cliente que pague con otro medio de pago o que se " "comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1136 +#: ../../src/Translations/AdminTranslations.php:1137 msgid "Mercado Pago did not process the payment" msgstr "Mercado Pago no procesó el pago" -#: ../../src/Translations/AdminTranslations.php:1138, -#: ../../src/Translations/AdminTranslations.php:1183 -msgid "Expired payment deadline" -msgstr "Venció el plazo para el pago" - #: ../../src/Translations/AdminTranslations.php:1139, #: ../../src/Translations/AdminTranslations.php:1184 -msgid "The client did not pay within the time limit." -msgstr "El cliente no pagó dentro del límite de tiempo." +msgid "Expired payment deadline" +msgstr "Venció el plazo para el pago" #: ../../src/Translations/AdminTranslations.php:1140, -#: ../../src/Translations/AdminTranslations.php:1142, -#: ../../src/Translations/AdminTranslations.php:1144, #: ../../src/Translations/AdminTranslations.php:1185 -msgid "Your customer entered one or more incorrect card details" -msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" +msgid "The client did not pay within the time limit." +msgstr "El cliente no pagó dentro del límite de tiempo." #: ../../src/Translations/AdminTranslations.php:1141, #: ../../src/Translations/AdminTranslations.php:1143, #: ../../src/Translations/AdminTranslations.php:1145, -#: ../../src/Translations/AdminTranslations.php:1186, -#: ../../src/Translations/AdminTranslations.php:1187 +#: ../../src/Translations/AdminTranslations.php:1186 +msgid "Your customer entered one or more incorrect card details" +msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" + +#: ../../src/Translations/AdminTranslations.php:1142, +#: ../../src/Translations/AdminTranslations.php:1144, +#: ../../src/Translations/AdminTranslations.php:1146, +#: ../../src/Translations/AdminTranslations.php:1187, +#: ../../src/Translations/AdminTranslations.php:1188 msgid "" "Please ask them to enter to enter them again exactly as they appear on the " "card or on their bank app to complete the payment." @@ -1881,17 +1891,17 @@ msgstr "" "Pídele que vuelva a ingresarlos tal como figuran en la tarjeta o en la app " "de su banco para finalizar el pago." -#: ../../src/Translations/AdminTranslations.php:1146, -#: ../../src/Translations/AdminTranslations.php:1169 +#: ../../src/Translations/AdminTranslations.php:1147, +#: ../../src/Translations/AdminTranslations.php:1170 msgid "We protected you from a suspicious payment" msgstr "Te protegimos de un pago sospechoso" -#: ../../src/Translations/AdminTranslations.php:1147 +#: ../../src/Translations/AdminTranslations.php:1148 msgid "For safety reasons, this transaction cannot be completed." msgstr "Por motivos de seguridad, esta transacción no podrá ser finalizada." -#: ../../src/Translations/AdminTranslations.php:1149, -#: ../../src/Translations/AdminTranslations.php:1168 +#: ../../src/Translations/AdminTranslations.php:1150, +#: ../../src/Translations/AdminTranslations.php:1169 msgid "" "The buyer is suspended in our platform. Your client must contact us to check " "what happened." @@ -1899,12 +1909,12 @@ msgstr "" "El comprador está suspendido en Mercado Pago. Tu cliente debe comunicarse " "con nosotros para ver qué pasó." -#: ../../src/Translations/AdminTranslations.php:1150 +#: ../../src/Translations/AdminTranslations.php:1151 msgid "For safety reasons, the card issuing bank declined the payment" msgstr "Por seguridad, el banco emisor de la tarjeta rechazó el pago" -#: ../../src/Translations/AdminTranslations.php:1151, -#: ../../src/Translations/AdminTranslations.php:1170 +#: ../../src/Translations/AdminTranslations.php:1152, +#: ../../src/Translations/AdminTranslations.php:1171 msgid "" "Recommend your customer to pay with their usual payment method and device " "for online purchases." @@ -1912,40 +1922,40 @@ msgstr "" "Recomiéndale a tu cliente que pague con el medio de pago y dispositivo que " "suele usar para compras online." -#: ../../src/Translations/AdminTranslations.php:1152 +#: ../../src/Translations/AdminTranslations.php:1153 msgid "Your customer's credit card has no available limit" msgstr "La tarjeta de crédito de tu cliente no tiene límite disponible" -#: ../../src/Translations/AdminTranslations.php:1153, #: ../../src/Translations/AdminTranslations.php:1154, -#: ../../src/Translations/AdminTranslations.php:1158 +#: ../../src/Translations/AdminTranslations.php:1155, +#: ../../src/Translations/AdminTranslations.php:1159 msgid "" "Please ask them to pay with another card or to choose another payment method." msgstr "Pídele que pague con otra tarjeta o que elija otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1157 +#: ../../src/Translations/AdminTranslations.php:1158 msgid "Your customer reached the limit of payment attempts with this card" msgstr "Tu cliente alcanzó el límite de intentos de pago con la tarjeta" -#: ../../src/Translations/AdminTranslations.php:1159 +#: ../../src/Translations/AdminTranslations.php:1160 msgid "" "Your customer's card does not accept the number of installments selected" msgstr "La tarjeta de tu cliente no acepta la cantidad de pagos que seleccionó" -#: ../../src/Translations/AdminTranslations.php:1160 +#: ../../src/Translations/AdminTranslations.php:1161 msgid "" "Please ask them to choose a different number of installments or to pay with " "another method." msgstr "" "Pídele que elija una cantidad de pagos diferente o que use con otro medio." -#: ../../src/Translations/AdminTranslations.php:1161, -#: ../../src/Translations/AdminTranslations.php:1188 +#: ../../src/Translations/AdminTranslations.php:1162, +#: ../../src/Translations/AdminTranslations.php:1189 msgid "Your customer needs to authorize the payment through their bank" msgstr "Tu cliente necesita autorizar el pago con su banco" -#: ../../src/Translations/AdminTranslations.php:1162, -#: ../../src/Translations/AdminTranslations.php:1189 +#: ../../src/Translations/AdminTranslations.php:1163, +#: ../../src/Translations/AdminTranslations.php:1190 msgid "" "Please ask them to call the telephone number on their card or to pay with " "another method." @@ -1953,20 +1963,20 @@ msgstr "" "Pídele que llame al teléfono que está en la tarjeta o que pague con otro " "medio." -#: ../../src/Translations/AdminTranslations.php:1163 +#: ../../src/Translations/AdminTranslations.php:1164 msgid "" "The payment was declined because your customer already paid for this purchase" msgstr "El pago fue rechazado porque tu cliente ya pagó esta compra" -#: ../../src/Translations/AdminTranslations.php:1164 +#: ../../src/Translations/AdminTranslations.php:1165 msgid "Check your approved payments to verify it." msgstr "Revisa tu cobros aprobados para verificarlo." -#: ../../src/Translations/AdminTranslations.php:1165 +#: ../../src/Translations/AdminTranslations.php:1166 msgid "Your customer's card was is not activated yet" msgstr "La tarjeta de tu cliente aún no está habilitada" -#: ../../src/Translations/AdminTranslations.php:1166 +#: ../../src/Translations/AdminTranslations.php:1167 msgid "" "Please ask them to contact their bank by calling the number on the back of " "their card or to pay with another method." @@ -1974,7 +1984,7 @@ msgstr "" "Pídele que se comunique con su banco al número que está en el dorso de la " "tarjeta o que pague con otro medio." -#: ../../src/Translations/AdminTranslations.php:1172 +#: ../../src/Translations/AdminTranslations.php:1173 msgid "" "This payment was declined because it did not pass Mercado Pago security " "controls. Please ask your client to use another card." @@ -1982,7 +1992,7 @@ msgstr "" "Rechazamos este pago porque no pasó los controles de seguridad de Mercado " "Pago. Pedile a tu cliente que use otra tarjeta." -#: ../../src/Translations/AdminTranslations.php:1174 +#: ../../src/Translations/AdminTranslations.php:1175 msgid "" "The amount exceeded the card limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -1990,8 +2000,8 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1176, -#: ../../src/Translations/AdminTranslations.php:1180 +#: ../../src/Translations/AdminTranslations.php:1177, +#: ../../src/Translations/AdminTranslations.php:1181 msgid "" "Please ask your client to use another card or to get in touch with the card " "issuer." @@ -1999,7 +2009,7 @@ msgstr "" "Pídele a tu cliente que use otra tarjeta o que se comunique con el emisor de " "la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1182 +#: ../../src/Translations/AdminTranslations.php:1183 msgid "" "The amount exceeded the card's limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -2007,21 +2017,21 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1190 +#: ../../src/Translations/AdminTranslations.php:1191 msgid "Your customer's debit card has insufficient funds" msgstr "La tarjeta de débito de tu cliente no tiene saldo suficiente" -#: ../../src/Translations/AdminTranslations.php:1191 +#: ../../src/Translations/AdminTranslations.php:1192 msgid "" "Please recommend your customer to pay with another card or to choose another " "payment method." msgstr "Pídele que pague con otra tarjeta o que elige otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1192 +#: ../../src/Translations/AdminTranslations.php:1193 msgid "Something went wrong and the payment was declined" msgstr "El pago fue rechazado porque hubo un error" -#: ../../src/Translations/AdminTranslations.php:1193 +#: ../../src/Translations/AdminTranslations.php:1194 msgid "" "Please recommend you customer to try again or to pay with another payment " "method." diff --git a/i18n/languages/woocommerce-mercadopago-es_MX.mo b/i18n/languages/woocommerce-mercadopago-es_MX.mo index bd1af4ac49f7dfee76b3c4a9adea6e331edd16a2..392533cbdfcbb70849524b76c5c5421daba707ad 100644 GIT binary patch delta 10494 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 delta 10191 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 CD_YP1 diff --git a/i18n/languages/woocommerce-mercadopago-es_MX.po b/i18n/languages/woocommerce-mercadopago-es_MX.po index 56c6233a1..d807f91c5 100644 --- a/i18n/languages/woocommerce-mercadopago-es_MX.po +++ b/i18n/languages/woocommerce-mercadopago-es_MX.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" -"POT-Creation-Date: 2024-02-01 11:32+0000\n" +"POT-Creation-Date: 2024-02-07 19:47+0000\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -15,22 +15,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.2\n" -#: ../../src/WoocommerceMercadoPago.php:426, +#: ../../src/WoocommerceMercadoPago.php:449, #: ../../src/Translations/AdminTranslations.php:166 msgid "Activate WooCommerce" msgstr "Activar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:427, +#: ../../src/WoocommerceMercadoPago.php:450, #: ../../src/Translations/AdminTranslations.php:167 msgid "Install WooCommerce" msgstr "Instalar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:428, +#: ../../src/WoocommerceMercadoPago.php:451, #: ../../src/Translations/AdminTranslations.php:168 msgid "See WooCommerce" msgstr "Ver WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:430, +#: ../../src/WoocommerceMercadoPago.php:453, #: ../../src/Translations/AdminTranslations.php:157 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" @@ -103,50 +103,60 @@ msgstr "" msgid "Activate" msgstr "Activar" -#: ../../src/Translations/AdminTranslations.php:188 +#: ../../src/Translations/AdminTranslations.php:177 +msgid "" +"Unfortunately, the language configured in your WordPress is not compatible " +"with our plugin. For the best experience, please switch to a supported " +"language." +msgstr "" +"Lamentablemente, el idioma configurado en tu WordPress no es compatible con " +"nuestro plugin. Para disfrutar de la mejor experiencia, cambia a un idioma " +"compatible." + +#: ../../src/Translations/AdminTranslations.php:189 msgid "Set plugin" msgstr "Configurar plugin" -#: ../../src/Translations/AdminTranslations.php:189, -#: ../../src/Translations/AdminTranslations.php:743, -#: ../../src/Translations/AdminTranslations.php:802 +#: ../../src/Translations/AdminTranslations.php:190, +#: ../../src/Translations/AdminTranslations.php:744, +#: ../../src/Translations/AdminTranslations.php:803 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../src/Translations/AdminTranslations.php:190, -#: ../../src/Translations/AdminTranslations.php:261 +#: ../../src/Translations/AdminTranslations.php:191, +#: ../../src/Translations/AdminTranslations.php:262 msgid "Plugin manual" msgstr "Manual del plugin" -#: ../../src/Translations/AdminTranslations.php:202 +#: ../../src/Translations/AdminTranslations.php:203 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../src/Translations/AdminTranslations.php:203 +#: ../../src/Translations/AdminTranslations.php:204 msgid "Mercado Pago commission:" msgstr "Comisión de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:204 +#: ../../src/Translations/AdminTranslations.php:205 msgid "Represents the commission configured on plugin settings." msgstr "Representa la comisión configurada en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:205 +#: ../../src/Translations/AdminTranslations.php:206 msgid "Mercado Pago discount:" msgstr "Descuento de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:206 +#: ../../src/Translations/AdminTranslations.php:207 msgid "Represents the discount configured on plugin settings." msgstr "Representa el descuento configurado en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:207 +#: ../../src/Translations/AdminTranslations.php:208 msgid "Represents the installment fee charged by Mercado Pago." msgstr "Representa la comisión a plazos cobrada por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:208 +#: ../../src/Translations/AdminTranslations.php:209 msgid "Mercado Pago Installment Fee:" msgstr "Cuota de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:209 +#: ../../src/Translations/AdminTranslations.php:210 msgid "" "Represents the total purchase plus the installment fee charged by Mercado " "Pago." @@ -154,91 +164,91 @@ msgstr "" "Representa el total de la compra más la comisión de fraccionamiento cobrada " "por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:210 +#: ../../src/Translations/AdminTranslations.php:211 msgid "Mercado Pago Total:" msgstr "Mercado Pago Total:" -#: ../../src/Translations/AdminTranslations.php:223 +#: ../../src/Translations/AdminTranslations.php:224 msgid "Accept" msgstr "Acepta" -#: ../../src/Translations/AdminTranslations.php:224 +#: ../../src/Translations/AdminTranslations.php:225 msgid "payments on the spot" msgstr "pagos al instante" -#: ../../src/Translations/AdminTranslations.php:225 +#: ../../src/Translations/AdminTranslations.php:226 msgid "with" msgstr "con" -#: ../../src/Translations/AdminTranslations.php:226 +#: ../../src/Translations/AdminTranslations.php:227 msgid "the" msgstr "toda la" -#: ../../src/Translations/AdminTranslations.php:227 +#: ../../src/Translations/AdminTranslations.php:228 msgid "security" msgstr "seguridad" -#: ../../src/Translations/AdminTranslations.php:228 +#: ../../src/Translations/AdminTranslations.php:229 msgid "from Mercado Pago" msgstr "de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:233 +#: ../../src/Translations/AdminTranslations.php:234 msgid "Choose" msgstr "Elige" -#: ../../src/Translations/AdminTranslations.php:234 +#: ../../src/Translations/AdminTranslations.php:235 msgid "when you want to receive the money" msgstr "cuándo quieres recibir el dinero" -#: ../../src/Translations/AdminTranslations.php:235 +#: ../../src/Translations/AdminTranslations.php:236 msgid "from your sales and if you want to offer" msgstr "de las ventas y si quieres ofrecer" -#: ../../src/Translations/AdminTranslations.php:236 +#: ../../src/Translations/AdminTranslations.php:237 msgid "interest-free installments" msgstr "cuotas sin interés" -#: ../../src/Translations/AdminTranslations.php:237 +#: ../../src/Translations/AdminTranslations.php:238 msgid "to your clients." msgstr "a los clientes." -#: ../../src/Translations/AdminTranslations.php:242 +#: ../../src/Translations/AdminTranslations.php:243 msgid "Review the step-by-step of" msgstr "Revisa el paso a paso de" -#: ../../src/Translations/AdminTranslations.php:243 +#: ../../src/Translations/AdminTranslations.php:244 msgid "how to integrate the Mercado Pago Plugin" msgstr "cómo integrar el Plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:244 +#: ../../src/Translations/AdminTranslations.php:245 msgid "on our website for developers." msgstr "en nuestro sitio de desarrolladores." -#: ../../src/Translations/AdminTranslations.php:248 +#: ../../src/Translations/AdminTranslations.php:249 msgid "SSL" msgstr "SSL" -#: ../../src/Translations/AdminTranslations.php:249 +#: ../../src/Translations/AdminTranslations.php:250 msgid "Curl" msgstr "Curl" -#: ../../src/Translations/AdminTranslations.php:250 +#: ../../src/Translations/AdminTranslations.php:251 msgid "GD Extensions" msgstr "Extensiones GD" -#: ../../src/Translations/AdminTranslations.php:252 +#: ../../src/Translations/AdminTranslations.php:253 msgid "Technical requirements" msgstr "Requisitos técnicos" -#: ../../src/Translations/AdminTranslations.php:253 +#: ../../src/Translations/AdminTranslations.php:254 msgid "Collections and installments" msgstr "Cobros y cuotas" -#: ../../src/Translations/AdminTranslations.php:254 +#: ../../src/Translations/AdminTranslations.php:255 msgid "Questions?" msgstr "¿Dudas?" -#: ../../src/Translations/AdminTranslations.php:255 +#: ../../src/Translations/AdminTranslations.php:256 msgid "" "Implementation responsible for transmitting data to Mercado Pago in a secure " "and encrypted way." @@ -246,7 +256,7 @@ msgstr "" "Implementación responsable de transmitir los datos a Mercado Pago de forma " "segura y encriptada." -#: ../../src/Translations/AdminTranslations.php:256 +#: ../../src/Translations/AdminTranslations.php:257 msgid "" "It is an extension responsible for making payments via requests from the " "plugin to Mercado Pago." @@ -254,7 +264,7 @@ msgstr "" "Es una extensión encargada de realizar los pagos a través de requests del " "plugin a Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:257 +#: ../../src/Translations/AdminTranslations.php:258 msgid "" "These extensions are responsible for the implementation and operation of Pix " "in your store." @@ -262,11 +272,11 @@ msgstr "" "Extensiones responsables de la aplicación y el funcionamiento de Pix en su " "tienda." -#: ../../src/Translations/AdminTranslations.php:260 +#: ../../src/Translations/AdminTranslations.php:261 msgid "Set deadlines and fees" msgstr "Ajustar plazos y tasas" -#: ../../src/Translations/AdminTranslations.php:274 +#: ../../src/Translations/AdminTranslations.php:275 msgid "" "To enable orders, you must create and activate production credentials in " "your Mercado Pago Account." @@ -274,79 +284,79 @@ msgstr "" "Para habilitar las ventas, debes crear y activar las credenciales de " "producción en tu cuenta de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:275 +#: ../../src/Translations/AdminTranslations.php:276 msgid "Copy and paste the credentials below." msgstr "Copia y pega tus credenciales a continuación." -#: ../../src/Translations/AdminTranslations.php:280 +#: ../../src/Translations/AdminTranslations.php:281 msgid "You must enter" msgstr "Debe introducir" -#: ../../src/Translations/AdminTranslations.php:281 +#: ../../src/Translations/AdminTranslations.php:282 msgid "production credentials" msgstr "las credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:285 +#: ../../src/Translations/AdminTranslations.php:286 msgid "Public Key" msgstr "Public Key" -#: ../../src/Translations/AdminTranslations.php:286 +#: ../../src/Translations/AdminTranslations.php:287 msgid "Access Token" msgstr "Access Token" -#: ../../src/Translations/AdminTranslations.php:287 +#: ../../src/Translations/AdminTranslations.php:288 msgid "1. Integrate your store with Mercado Pago" msgstr "1. Integra la tienda a Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:288 +#: ../../src/Translations/AdminTranslations.php:289 msgid "Production credentials" msgstr "Credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:289 +#: ../../src/Translations/AdminTranslations.php:290 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:291 +#: ../../src/Translations/AdminTranslations.php:292 msgid "Enable Mercado Pago checkouts for test purchases in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para pruebas de compras en la " "tienda." -#: ../../src/Translations/AdminTranslations.php:292 +#: ../../src/Translations/AdminTranslations.php:293 msgid "Enable Mercado Pago checkouts to receive real payments in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para recibir pagos reales en tienda." -#: ../../src/Translations/AdminTranslations.php:293 +#: ../../src/Translations/AdminTranslations.php:294 msgid "Paste your Public Key here" msgstr "Pega aquí tu Public Key" -#: ../../src/Translations/AdminTranslations.php:294 +#: ../../src/Translations/AdminTranslations.php:295 msgid "Paste your Access Token here" msgstr "Pega aquí tu Access Token" -#: ../../src/Translations/AdminTranslations.php:295 +#: ../../src/Translations/AdminTranslations.php:296 msgid "Check credentials" msgstr "Consultar credenciales" -#: ../../src/Translations/AdminTranslations.php:296, -#: ../../src/Translations/AdminTranslations.php:350 +#: ../../src/Translations/AdminTranslations.php:297, +#: ../../src/Translations/AdminTranslations.php:351 msgid "Save and continue" msgstr "Guardar y continuar" -#: ../../src/Translations/AdminTranslations.php:297 +#: ../../src/Translations/AdminTranslations.php:298 msgid "Important! To sell you must enter your credentials." msgstr "¡Importante! Para vender debe introducir sus credenciales." -#: ../../src/Translations/AdminTranslations.php:299 +#: ../../src/Translations/AdminTranslations.php:300 msgid "Enter credentials" msgstr "Introducir credenciales" -#: ../../src/Translations/AdminTranslations.php:300 +#: ../../src/Translations/AdminTranslations.php:301 msgid "Activate your credentials to be able to sell" msgstr "Activa tus credenciales para poder vender" -#: ../../src/Translations/AdminTranslations.php:301 +#: ../../src/Translations/AdminTranslations.php:302 msgid "" "Credentials are codes that you must enter to enable sales. Go below on " "Activate Credentials. On the next screen, use again the Activate Credentials " @@ -357,23 +367,23 @@ msgstr "" "nuevamente el botón Activar Credenciales y complete los campos con la " "información solicitada." -#: ../../src/Translations/AdminTranslations.php:302 +#: ../../src/Translations/AdminTranslations.php:303 msgid "Activate credentials" msgstr "Activar credenciales" -#: ../../src/Translations/AdminTranslations.php:315 +#: ../../src/Translations/AdminTranslations.php:316 msgid "Add the URL to receive payments notifications." msgstr "Ingresa la URL para recibir notificaciones de pago." -#: ../../src/Translations/AdminTranslations.php:316 +#: ../../src/Translations/AdminTranslations.php:317 msgid "Find out more information in the" msgstr "Consulta más información en los" -#: ../../src/Translations/AdminTranslations.php:318 +#: ../../src/Translations/AdminTranslations.php:319 msgid "guides" msgstr "manuales" -#: ../../src/Translations/AdminTranslations.php:323 +#: ../../src/Translations/AdminTranslations.php:324 msgid "" "If you are a Mercado Pago Certified Partner, make sure to add your " "integrator_id." @@ -381,31 +391,31 @@ msgstr "" "Si eres Partner certificado de Mercado Pago, recuerda ingresar tu " "integrator_id." -#: ../../src/Translations/AdminTranslations.php:324 +#: ../../src/Translations/AdminTranslations.php:325 msgid "If you do not have the code, please" msgstr "Si no tienes el código," -#: ../../src/Translations/AdminTranslations.php:326 +#: ../../src/Translations/AdminTranslations.php:327 msgid "request it now" msgstr "solicítalo ahora" -#: ../../src/Translations/AdminTranslations.php:330 +#: ../../src/Translations/AdminTranslations.php:331 msgid "2. Customize your business" msgstr "2. Personaliza tu negocio" -#: ../../src/Translations/AdminTranslations.php:331 +#: ../../src/Translations/AdminTranslations.php:332 msgid "Your store information" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:332 +#: ../../src/Translations/AdminTranslations.php:333 msgid "Advanced integration options (optional)" msgstr "Opciones avanzadas de integración (opcional)" -#: ../../src/Translations/AdminTranslations.php:333 +#: ../../src/Translations/AdminTranslations.php:334 msgid "Debug and Log Mode" msgstr "Modo debug y log" -#: ../../src/Translations/AdminTranslations.php:334 +#: ../../src/Translations/AdminTranslations.php:335 msgid "" "Fill out the following information to have a better experience and offer " "more information to your clients." @@ -413,15 +423,15 @@ msgstr "" "Completa los siguientes datos para tener una mejor experiencia y ofrecer más " "información a los clientes." -#: ../../src/Translations/AdminTranslations.php:335 +#: ../../src/Translations/AdminTranslations.php:336 msgid "Name of your store in your client's invoice" msgstr "Nombre de tu tienda en la factura de los clientes" -#: ../../src/Translations/AdminTranslations.php:336 +#: ../../src/Translations/AdminTranslations.php:337 msgid "Identification in Activities of Mercado Pago" msgstr "Identificación en Actividad de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:337 +#: ../../src/Translations/AdminTranslations.php:338 msgid "" "For further integration of your store with Mercado Pago (IPN, Certified " "Partners, Debug Mode)" @@ -429,202 +439,202 @@ msgstr "" "Para mayor integración de tu tienda con Mercado Pago (IPN, Socios " "Certificados, Modo Debug)" -#: ../../src/Translations/AdminTranslations.php:338 +#: ../../src/Translations/AdminTranslations.php:339 msgid "Store category" msgstr "Categoría de la tienda" -#: ../../src/Translations/AdminTranslations.php:339 +#: ../../src/Translations/AdminTranslations.php:340 msgid "URL for IPN" msgstr "URL para IPN" -#: ../../src/Translations/AdminTranslations.php:340 +#: ../../src/Translations/AdminTranslations.php:341 msgid "Integrator ID" msgstr "Integrator ID" -#: ../../src/Translations/AdminTranslations.php:341 +#: ../../src/Translations/AdminTranslations.php:342 msgid "We record your store's actions in order to provide a better assistance." msgstr "Grabamos las aciones de tu tienda para brindar un mejor soporte." -#: ../../src/Translations/AdminTranslations.php:342 +#: ../../src/Translations/AdminTranslations.php:343 msgid "Ex: Mary's Store" msgstr "Ej.: Tienda de María" -#: ../../src/Translations/AdminTranslations.php:343 +#: ../../src/Translations/AdminTranslations.php:344 msgid "Ex: Mary Store" msgstr "Ej.: TiendaMaría" -#: ../../src/Translations/AdminTranslations.php:344 +#: ../../src/Translations/AdminTranslations.php:345 msgid "Select" msgstr "Seleccionar" -#: ../../src/Translations/AdminTranslations.php:345 +#: ../../src/Translations/AdminTranslations.php:346 msgid "Ex: https://examples.com/my-custom-ipn-url" msgstr "Ej.: https://examples.com/my-custom-ipn-url" -#: ../../src/Translations/AdminTranslations.php:346 +#: ../../src/Translations/AdminTranslations.php:347 msgid "Add plugin default params" msgstr "Agregar parámetros default del plugin" -#: ../../src/Translations/AdminTranslations.php:347 +#: ../../src/Translations/AdminTranslations.php:348 msgid "Ex: 14987126498" msgstr "Ej.: 14987126498" -#: ../../src/Translations/AdminTranslations.php:348 +#: ../../src/Translations/AdminTranslations.php:349 msgid "Show advanced options" msgstr "Ver opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:349 +#: ../../src/Translations/AdminTranslations.php:350 msgid "Hide advanced options" msgstr "Esconder opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:351 +#: ../../src/Translations/AdminTranslations.php:352 msgid "" "If this field is empty, the purchase will be identified as Mercado Pago." msgstr "" "Si el campo queda vacío, la compra del cliente se identificará como Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:352 +#: ../../src/Translations/AdminTranslations.php:353 msgid "In Activities, you will view this term before the order number" msgstr "En Actividad, verás el término ingresado antes del número o del pedido" -#: ../../src/Translations/AdminTranslations.php:353 +#: ../../src/Translations/AdminTranslations.php:354 msgid "" "Select \"Other categories\" if you do not find the appropriate category." msgstr "Seleciona ”Other categories” si no encuentras una categoría adecuada." -#: ../../src/Translations/AdminTranslations.php:354 +#: ../../src/Translations/AdminTranslations.php:355 msgid "request it now." msgstr "solicítalo ahora." -#: ../../src/Translations/AdminTranslations.php:368 +#: ../../src/Translations/AdminTranslations.php:369 msgid "3. Set payment methods" msgstr "3. Configura los medios de pago" -#: ../../src/Translations/AdminTranslations.php:369 +#: ../../src/Translations/AdminTranslations.php:370 msgid "To view more options, please select a payment method below" msgstr "Selecciona uno de los siguientes medios de pago para ver más opciones" -#: ../../src/Translations/AdminTranslations.php:370 +#: ../../src/Translations/AdminTranslations.php:371 msgid "Settings" msgstr "Configurar" -#: ../../src/Translations/AdminTranslations.php:371 +#: ../../src/Translations/AdminTranslations.php:372 msgid "Continue" msgstr "Continuar" -#: ../../src/Translations/AdminTranslations.php:372 +#: ../../src/Translations/AdminTranslations.php:373 msgid "Enabled" msgstr "Activado" -#: ../../src/Translations/AdminTranslations.php:373 +#: ../../src/Translations/AdminTranslations.php:374 msgid "Disabled" msgstr "Inactivo" -#: ../../src/Translations/AdminTranslations.php:374 +#: ../../src/Translations/AdminTranslations.php:375 msgid "Configure your credentials to enable Mercado Pago payment methods." msgstr "" "Completa tus credenciales para habilitar los medios de pago Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:387, -#: ../../src/Translations/AdminTranslations.php:393 +#: ../../src/Translations/AdminTranslations.php:388, +#: ../../src/Translations/AdminTranslations.php:394 msgid "The checkout is" msgstr "El checkout está" -#: ../../src/Translations/AdminTranslations.php:388, -#: ../../src/Translations/AdminTranslations.php:400, -#: ../../src/Translations/AdminTranslations.php:515, -#: ../../src/Translations/AdminTranslations.php:527, -#: ../../src/Translations/AdminTranslations.php:539, -#: ../../src/Translations/AdminTranslations.php:605, -#: ../../src/Translations/AdminTranslations.php:617, -#: ../../src/Translations/AdminTranslations.php:629, -#: ../../src/Translations/AdminTranslations.php:705, -#: ../../src/Translations/AdminTranslations.php:766, -#: ../../src/Translations/AdminTranslations.php:825, -#: ../../src/Translations/AdminTranslations.php:837 +#: ../../src/Translations/AdminTranslations.php:389, +#: ../../src/Translations/AdminTranslations.php:401, +#: ../../src/Translations/AdminTranslations.php:516, +#: ../../src/Translations/AdminTranslations.php:528, +#: ../../src/Translations/AdminTranslations.php:540, +#: ../../src/Translations/AdminTranslations.php:606, +#: ../../src/Translations/AdminTranslations.php:618, +#: ../../src/Translations/AdminTranslations.php:630, +#: ../../src/Translations/AdminTranslations.php:706, +#: ../../src/Translations/AdminTranslations.php:767, +#: ../../src/Translations/AdminTranslations.php:826, +#: ../../src/Translations/AdminTranslations.php:838 msgid "enabled" msgstr "activo" -#: ../../src/Translations/AdminTranslations.php:394, +#: ../../src/Translations/AdminTranslations.php:395, +#: ../../src/Translations/AdminTranslations.php:407, +#: ../../src/Translations/AdminTranslations.php:522, +#: ../../src/Translations/AdminTranslations.php:534, +#: ../../src/Translations/AdminTranslations.php:546, +#: ../../src/Translations/AdminTranslations.php:612, +#: ../../src/Translations/AdminTranslations.php:624, +#: ../../src/Translations/AdminTranslations.php:636, +#: ../../src/Translations/AdminTranslations.php:712, +#: ../../src/Translations/AdminTranslations.php:773, +#: ../../src/Translations/AdminTranslations.php:832, +#: ../../src/Translations/AdminTranslations.php:844 +msgid "disabled" +msgstr "inactivo" + +#: ../../src/Translations/AdminTranslations.php:400, #: ../../src/Translations/AdminTranslations.php:406, -#: ../../src/Translations/AdminTranslations.php:521, +#: ../../src/Translations/AdminTranslations.php:527, #: ../../src/Translations/AdminTranslations.php:533, -#: ../../src/Translations/AdminTranslations.php:545, -#: ../../src/Translations/AdminTranslations.php:611, +#: ../../src/Translations/AdminTranslations.php:617, #: ../../src/Translations/AdminTranslations.php:623, -#: ../../src/Translations/AdminTranslations.php:635, +#: ../../src/Translations/AdminTranslations.php:705, #: ../../src/Translations/AdminTranslations.php:711, +#: ../../src/Translations/AdminTranslations.php:766, #: ../../src/Translations/AdminTranslations.php:772, -#: ../../src/Translations/AdminTranslations.php:831, +#: ../../src/Translations/AdminTranslations.php:837, #: ../../src/Translations/AdminTranslations.php:843 -msgid "disabled" -msgstr "inactivo" - -#: ../../src/Translations/AdminTranslations.php:399, -#: ../../src/Translations/AdminTranslations.php:405, -#: ../../src/Translations/AdminTranslations.php:526, -#: ../../src/Translations/AdminTranslations.php:532, -#: ../../src/Translations/AdminTranslations.php:616, -#: ../../src/Translations/AdminTranslations.php:622, -#: ../../src/Translations/AdminTranslations.php:704, -#: ../../src/Translations/AdminTranslations.php:710, -#: ../../src/Translations/AdminTranslations.php:765, -#: ../../src/Translations/AdminTranslations.php:771, -#: ../../src/Translations/AdminTranslations.php:836, -#: ../../src/Translations/AdminTranslations.php:842 msgid "Currency conversion is" msgstr "Conversión de moneda está" -#: ../../src/Translations/AdminTranslations.php:411, -#: ../../src/Translations/AdminTranslations.php:417 +#: ../../src/Translations/AdminTranslations.php:412, +#: ../../src/Translations/AdminTranslations.php:418 msgid "The buyer" msgstr "El comprador" -#: ../../src/Translations/AdminTranslations.php:412 +#: ../../src/Translations/AdminTranslations.php:413 msgid "will be automatically redirected to the store" msgstr "será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:418 +#: ../../src/Translations/AdminTranslations.php:419 msgid "will not be automatically redirected to the store" msgstr "no será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:424, -#: ../../src/Translations/AdminTranslations.php:430, -#: ../../src/Translations/AdminTranslations.php:640, -#: ../../src/Translations/AdminTranslations.php:646 +#: ../../src/Translations/AdminTranslations.php:425, +#: ../../src/Translations/AdminTranslations.php:431, +#: ../../src/Translations/AdminTranslations.php:641, +#: ../../src/Translations/AdminTranslations.php:647 msgid "Pending payments" msgstr "Los pagos pendientes" -#: ../../src/Translations/AdminTranslations.php:425, -#: ../../src/Translations/AdminTranslations.php:641 +#: ../../src/Translations/AdminTranslations.php:426, +#: ../../src/Translations/AdminTranslations.php:642 msgid "will be automatically declined" msgstr "se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:431, -#: ../../src/Translations/AdminTranslations.php:647 +#: ../../src/Translations/AdminTranslations.php:432, +#: ../../src/Translations/AdminTranslations.php:648 msgid "will not be automatically declined" msgstr "no se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:435, -#: ../../src/Translations/AdminTranslations.php:450 +#: ../../src/Translations/AdminTranslations.php:436, +#: ../../src/Translations/AdminTranslations.php:451 msgid "Your saved cards or money in Mercado Pago" msgstr "Compras con tarjetas guardadas o saldo en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:436, -#: ../../src/Translations/AdminTranslations.php:438 +#: ../../src/Translations/AdminTranslations.php:437, +#: ../../src/Translations/AdminTranslations.php:439 msgid "Debit, Credit and invoice in Mercado Pago environment" msgstr "Débito, crédito y efectivo, en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:437 +#: ../../src/Translations/AdminTranslations.php:438 msgid "Mercado Pago - Checkout Pro" msgstr "Mercado Pago - Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:439 +#: ../../src/Translations/AdminTranslations.php:440 msgid "Checkout Pro" msgstr "Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:440 +#: ../../src/Translations/AdminTranslations.php:441 msgid "" "With Checkout Pro you sell with all the safety inside Mercado Pago " "environment." @@ -632,23 +642,13 @@ msgstr "" "Con el Checkout Pro, podrás vender con toda la seguridad, dentro de Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:441, -#: ../../src/Translations/AdminTranslations.php:555, -#: ../../src/Translations/AdminTranslations.php:720, -#: ../../src/Translations/AdminTranslations.php:781, -#: ../../src/Translations/AdminTranslations.php:861 -msgid "Mercado Pago plugin general settings" -msgstr "Configuraciones generales del plugin de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:442, #: ../../src/Translations/AdminTranslations.php:556, -#: ../../src/Translations/AdminTranslations.php:658, #: ../../src/Translations/AdminTranslations.php:721, #: ../../src/Translations/AdminTranslations.php:782, #: ../../src/Translations/AdminTranslations.php:862 -msgid "" -"Set the deadlines and fees, test your store or access the Plugin manual." -msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." +msgid "Mercado Pago plugin general settings" +msgstr "Configuraciones generales del plugin de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:443, #: ../../src/Translations/AdminTranslations.php:557, @@ -656,16 +656,26 @@ msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:722, #: ../../src/Translations/AdminTranslations.php:783, #: ../../src/Translations/AdminTranslations.php:863 -msgid "Go to Settings" -msgstr "Ir a Configuraciones" +msgid "" +"Set the deadlines and fees, test your store or access the Plugin manual." +msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:444, +#: ../../src/Translations/AdminTranslations.php:558, #: ../../src/Translations/AdminTranslations.php:660, +#: ../../src/Translations/AdminTranslations.php:723, +#: ../../src/Translations/AdminTranslations.php:784, #: ../../src/Translations/AdminTranslations.php:864 +msgid "Go to Settings" +msgstr "Ir a Configuraciones" + +#: ../../src/Translations/AdminTranslations.php:445, +#: ../../src/Translations/AdminTranslations.php:661, +#: ../../src/Translations/AdminTranslations.php:865 msgid "Enable the checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:445 +#: ../../src/Translations/AdminTranslations.php:446 msgid "" "By disabling it, you will disable all payments from Mercado Pago Checkout at " "Mercado Pago website by redirect." @@ -673,40 +683,31 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago del checkout en el " "sitio web de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:448, -#: ../../src/Translations/AdminTranslations.php:566, -#: ../../src/Translations/AdminTranslations.php:664, -#: ../../src/Translations/AdminTranslations.php:727, -#: ../../src/Translations/AdminTranslations.php:788, -#: ../../src/Translations/AdminTranslations.php:868 -msgid "Title in the store Checkout" -msgstr "Título en el checkout de la tienda" - #: ../../src/Translations/AdminTranslations.php:449, +#: ../../src/Translations/AdminTranslations.php:567, #: ../../src/Translations/AdminTranslations.php:665, #: ../../src/Translations/AdminTranslations.php:728, #: ../../src/Translations/AdminTranslations.php:789, #: ../../src/Translations/AdminTranslations.php:869 +msgid "Title in the store Checkout" +msgstr "Título en el checkout de la tienda" + +#: ../../src/Translations/AdminTranslations.php:450, +#: ../../src/Translations/AdminTranslations.php:666, +#: ../../src/Translations/AdminTranslations.php:729, +#: ../../src/Translations/AdminTranslations.php:790, +#: ../../src/Translations/AdminTranslations.php:870 msgid "Change the display text in Checkout, maximum characters: 85" msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85" -#: ../../src/Translations/AdminTranslations.php:451, -#: ../../src/Translations/AdminTranslations.php:569, -#: ../../src/Translations/AdminTranslations.php:667, -#: ../../src/Translations/AdminTranslations.php:730, -#: ../../src/Translations/AdminTranslations.php:791, -#: ../../src/Translations/AdminTranslations.php:871 -msgid "The text inserted here will not be translated to other languages" -msgstr "El texto insertado aquí no se traducirá a otros idiomas" - #: ../../src/Translations/AdminTranslations.php:452, #: ../../src/Translations/AdminTranslations.php:570, -#: ../../src/Translations/AdminTranslations.php:671, +#: ../../src/Translations/AdminTranslations.php:668, #: ../../src/Translations/AdminTranslations.php:731, #: ../../src/Translations/AdminTranslations.php:792, -#: ../../src/Translations/AdminTranslations.php:885 -msgid "Convert Currency" -msgstr "Convertir moneda" +#: ../../src/Translations/AdminTranslations.php:872 +msgid "The text inserted here will not be translated to other languages" +msgstr "El texto insertado aquí no se traducirá a otros idiomas" #: ../../src/Translations/AdminTranslations.php:453, #: ../../src/Translations/AdminTranslations.php:571, @@ -714,6 +715,15 @@ msgstr "Convertir moneda" #: ../../src/Translations/AdminTranslations.php:732, #: ../../src/Translations/AdminTranslations.php:793, #: ../../src/Translations/AdminTranslations.php:886 +msgid "Convert Currency" +msgstr "Convertir moneda" + +#: ../../src/Translations/AdminTranslations.php:454, +#: ../../src/Translations/AdminTranslations.php:572, +#: ../../src/Translations/AdminTranslations.php:673, +#: ../../src/Translations/AdminTranslations.php:733, +#: ../../src/Translations/AdminTranslations.php:794, +#: ../../src/Translations/AdminTranslations.php:887 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." @@ -721,100 +731,100 @@ 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." -#: ../../src/Translations/AdminTranslations.php:456 +#: ../../src/Translations/AdminTranslations.php:457 msgid "Choose the payment methods you accept in your store" msgstr "Elige los medios de pago que se aceptan en la tienda" -#: ../../src/Translations/AdminTranslations.php:457 +#: ../../src/Translations/AdminTranslations.php:458 msgid "Enable the payment methods available to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../src/Translations/AdminTranslations.php:458 +#: ../../src/Translations/AdminTranslations.php:459 msgid "Credit Cards" msgstr "Tarjetas de crédito" -#: ../../src/Translations/AdminTranslations.php:459 +#: ../../src/Translations/AdminTranslations.php:460 msgid "Debit Cards" msgstr "Tarjetas de débito" -#: ../../src/Translations/AdminTranslations.php:460 +#: ../../src/Translations/AdminTranslations.php:461 msgid "Other Payment Methods" msgstr "Otros medios" -#: ../../src/Translations/AdminTranslations.php:461 +#: ../../src/Translations/AdminTranslations.php:462 msgid "Maximum number of installments" msgstr "Máximo de cuotas" -#: ../../src/Translations/AdminTranslations.php:462 +#: ../../src/Translations/AdminTranslations.php:463 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?" -#: ../../src/Translations/AdminTranslations.php:463 +#: ../../src/Translations/AdminTranslations.php:464 msgid "1 installment" msgstr "1 cuota" -#: ../../src/Translations/AdminTranslations.php:464 +#: ../../src/Translations/AdminTranslations.php:465 msgid "2 installments" msgstr "2 cuotas" -#: ../../src/Translations/AdminTranslations.php:465 +#: ../../src/Translations/AdminTranslations.php:466 msgid "3 installments" msgstr "3 cuotas" -#: ../../src/Translations/AdminTranslations.php:466 +#: ../../src/Translations/AdminTranslations.php:467 msgid "4 installments" msgstr "4 cuotas" -#: ../../src/Translations/AdminTranslations.php:467 +#: ../../src/Translations/AdminTranslations.php:468 msgid "5 installments" msgstr "5 cuotas" -#: ../../src/Translations/AdminTranslations.php:468 +#: ../../src/Translations/AdminTranslations.php:469 msgid "6 installments" msgstr "6 cuotas" -#: ../../src/Translations/AdminTranslations.php:469 +#: ../../src/Translations/AdminTranslations.php:470 msgid "10 installments" msgstr "10 cuotas" -#: ../../src/Translations/AdminTranslations.php:470 +#: ../../src/Translations/AdminTranslations.php:471 msgid "12 installments" msgstr "12 cuotas" -#: ../../src/Translations/AdminTranslations.php:471 +#: ../../src/Translations/AdminTranslations.php:472 msgid "15 installments" msgstr "15 cuotas" -#: ../../src/Translations/AdminTranslations.php:472 +#: ../../src/Translations/AdminTranslations.php:473 msgid "18 installments" msgstr "18 cuotas" -#: ../../src/Translations/AdminTranslations.php:473 +#: ../../src/Translations/AdminTranslations.php:474 msgid "24 installments" msgstr "24 cuotas" -#: ../../src/Translations/AdminTranslations.php:474, -#: ../../src/Translations/AdminTranslations.php:584 +#: ../../src/Translations/AdminTranslations.php:475, +#: ../../src/Translations/AdminTranslations.php:585 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:475, -#: ../../src/Translations/AdminTranslations.php:585, -#: ../../src/Translations/AdminTranslations.php:681, -#: ../../src/Translations/AdminTranslations.php:738, -#: ../../src/Translations/AdminTranslations.php:797, -#: ../../src/Translations/AdminTranslations.php:893 +#: ../../src/Translations/AdminTranslations.php:476, +#: ../../src/Translations/AdminTranslations.php:586, +#: ../../src/Translations/AdminTranslations.php:682, +#: ../../src/Translations/AdminTranslations.php:739, +#: ../../src/Translations/AdminTranslations.php:798, +#: ../../src/Translations/AdminTranslations.php:894 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." -#: ../../src/Translations/AdminTranslations.php:476 +#: ../../src/Translations/AdminTranslations.php:477 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../src/Translations/AdminTranslations.php:477 +#: ../../src/Translations/AdminTranslations.php:478 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -822,39 +832,39 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../src/Translations/AdminTranslations.php:478 +#: ../../src/Translations/AdminTranslations.php:479 msgid "Redirect" msgstr "Redirect" -#: ../../src/Translations/AdminTranslations.php:479 +#: ../../src/Translations/AdminTranslations.php:480 msgid "Modal" msgstr "Modal" -#: ../../src/Translations/AdminTranslations.php:480 +#: ../../src/Translations/AdminTranslations.php:481 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../src/Translations/AdminTranslations.php:481 +#: ../../src/Translations/AdminTranslations.php:482 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?" -#: ../../src/Translations/AdminTranslations.php:484 +#: ../../src/Translations/AdminTranslations.php:485 msgid "Success URL" msgstr "URL de éxito" -#: ../../src/Translations/AdminTranslations.php:485 +#: ../../src/Translations/AdminTranslations.php:486 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." -#: ../../src/Translations/AdminTranslations.php:486 +#: ../../src/Translations/AdminTranslations.php:487 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../src/Translations/AdminTranslations.php:487 +#: ../../src/Translations/AdminTranslations.php:488 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 " @@ -864,11 +874,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../src/Translations/AdminTranslations.php:488 +#: ../../src/Translations/AdminTranslations.php:489 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../src/Translations/AdminTranslations.php:489 +#: ../../src/Translations/AdminTranslations.php:490 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -876,13 +886,13 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../src/Translations/AdminTranslations.php:490, -#: ../../src/Translations/AdminTranslations.php:682 +#: ../../src/Translations/AdminTranslations.php:491, +#: ../../src/Translations/AdminTranslations.php:683 msgid "Automatic decline of payments without instant approval" msgstr "Rechazo automático de pagos sin aprobación instantanea" -#: ../../src/Translations/AdminTranslations.php:491, -#: ../../src/Translations/AdminTranslations.php:683 +#: ../../src/Translations/AdminTranslations.php:492, +#: ../../src/Translations/AdminTranslations.php:684 msgid "" "Enable it if you want to automatically decline payments that are not " "instantly approved by banks or other institutions." @@ -890,55 +900,46 @@ msgstr "" "Actívalo si quieres rechazar automáticamente los pagos que no son aprobados " "instantáneamente por bancos u otros compradores." -#: ../../src/Translations/AdminTranslations.php:492 +#: ../../src/Translations/AdminTranslations.php:493 msgid "Debit, Credit and Invoice in Mercado Pago environment." msgstr "Débito, crédito y efectivo, en Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:495, -#: ../../src/Translations/AdminTranslations.php:586, -#: ../../src/Translations/AdminTranslations.php:686, -#: ../../src/Translations/AdminTranslations.php:747, -#: ../../src/Translations/AdminTranslations.php:806, -#: ../../src/Translations/AdminTranslations.php:894 -msgid "Discount in Mercado Pago Checkouts" -msgstr "Descuento en los checkouts de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:496, #: ../../src/Translations/AdminTranslations.php:587, #: ../../src/Translations/AdminTranslations.php:687, #: ../../src/Translations/AdminTranslations.php:748, #: ../../src/Translations/AdminTranslations.php:807, #: ../../src/Translations/AdminTranslations.php:895 -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." +msgid "Discount in Mercado Pago Checkouts" +msgstr "Descuento en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:497, -#: ../../src/Translations/AdminTranslations.php:500, #: ../../src/Translations/AdminTranslations.php:588, -#: ../../src/Translations/AdminTranslations.php:591, #: ../../src/Translations/AdminTranslations.php:688, -#: ../../src/Translations/AdminTranslations.php:691, #: ../../src/Translations/AdminTranslations.php:749, -#: ../../src/Translations/AdminTranslations.php:752, #: ../../src/Translations/AdminTranslations.php:808, -#: ../../src/Translations/AdminTranslations.php:811, -#: ../../src/Translations/AdminTranslations.php:896, -#: ../../src/Translations/AdminTranslations.php:899 -msgid "Activate and show this information on Mercado Pago Checkout" -msgstr "Activar y mostrar esa información en el checkout Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:896 +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." #: ../../src/Translations/AdminTranslations.php:498, +#: ../../src/Translations/AdminTranslations.php:501, #: ../../src/Translations/AdminTranslations.php:589, +#: ../../src/Translations/AdminTranslations.php:592, #: ../../src/Translations/AdminTranslations.php:689, +#: ../../src/Translations/AdminTranslations.php:692, #: ../../src/Translations/AdminTranslations.php:750, +#: ../../src/Translations/AdminTranslations.php:753, #: ../../src/Translations/AdminTranslations.php:809, -#: ../../src/Translations/AdminTranslations.php:897 -msgid "Commission in Mercado Pago Checkouts" -msgstr "Comisiones en los checkouts de Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:812, +#: ../../src/Translations/AdminTranslations.php:897, +#: ../../src/Translations/AdminTranslations.php:900 +msgid "Activate and show this information on Mercado Pago Checkout" +msgstr "Activar y mostrar esa información en el checkout Mercado Pago" #: ../../src/Translations/AdminTranslations.php:499, #: ../../src/Translations/AdminTranslations.php:590, @@ -946,6 +947,15 @@ msgstr "Comisiones en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:751, #: ../../src/Translations/AdminTranslations.php:810, #: ../../src/Translations/AdminTranslations.php:898 +msgid "Commission in Mercado Pago Checkouts" +msgstr "Comisiones en los checkouts de Mercado Pago" + +#: ../../src/Translations/AdminTranslations.php:500, +#: ../../src/Translations/AdminTranslations.php:591, +#: ../../src/Translations/AdminTranslations.php:691, +#: ../../src/Translations/AdminTranslations.php:752, +#: ../../src/Translations/AdminTranslations.php:811, +#: ../../src/Translations/AdminTranslations.php:899 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -953,35 +963,35 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:501 +#: ../../src/Translations/AdminTranslations.php:502 msgid "This seems to be an invalid URL" msgstr "Esto parece ser una URL no válida" -#: ../../src/Translations/AdminTranslations.php:514, -#: ../../src/Translations/AdminTranslations.php:520 +#: ../../src/Translations/AdminTranslations.php:515, +#: ../../src/Translations/AdminTranslations.php:521 msgid "Payment in installments without card in the store checkout is" msgstr "Cuotas sin tarjeta en el checkout de la tienda está" -#: ../../src/Translations/AdminTranslations.php:538, -#: ../../src/Translations/AdminTranslations.php:544 +#: ../../src/Translations/AdminTranslations.php:539, +#: ../../src/Translations/AdminTranslations.php:545 msgid "The installments without card component is" msgstr "El componente de cuotas sin tarjeta está" -#: ../../src/Translations/AdminTranslations.php:549, -#: ../../src/Translations/AdminTranslations.php:553 +#: ../../src/Translations/AdminTranslations.php:550, +#: ../../src/Translations/AdminTranslations.php:554 msgid "Installments without card" msgstr "Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:550, -#: ../../src/Translations/AdminTranslations.php:552 +#: ../../src/Translations/AdminTranslations.php:551, +#: ../../src/Translations/AdminTranslations.php:553 msgid "Customers who buy on spot and pay later in up to 12 installments" msgstr "Tus clientes compran al instante y pagan después en hasta 12 cuotas" -#: ../../src/Translations/AdminTranslations.php:551 +#: ../../src/Translations/AdminTranslations.php:552 msgid "Mercado Pago - Installments without card" msgstr "Mercado Pago - Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:554 +#: ../../src/Translations/AdminTranslations.php:555 msgid "" "Reach millions of buyers by offering Mercado Credito as a payment method. " "Our flexible payment options give your customers the possibility to buy " @@ -995,11 +1005,11 @@ msgstr "" "necesidad de utilizar una tarjeta. Para tu negocio, la aprobación de la " "compra es inmediata y está garantizada." -#: ../../src/Translations/AdminTranslations.php:558 +#: ../../src/Translations/AdminTranslations.php:559 msgid "Activate installments without card in your store checkout" msgstr "Activar cuotas sin tarjeta en el checkout de tu tienda" -#: ../../src/Translations/AdminTranslations.php:559 +#: ../../src/Translations/AdminTranslations.php:560 msgid "" "Offer the option to pay in installments without card directly from your " "store's checkout." @@ -1007,37 +1017,37 @@ msgstr "" "Ofrece la opción de pago en cuotas sin tarjeta directo desde el checkout de " "tu tienda." -#: ../../src/Translations/AdminTranslations.php:562 +#: ../../src/Translations/AdminTranslations.php:563 msgid "Checkout visualization" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:563, -#: ../../src/Translations/AdminTranslations.php:583 +#: ../../src/Translations/AdminTranslations.php:564, +#: ../../src/Translations/AdminTranslations.php:584 msgid "Check below how this feature will be displayed to your customers:" msgstr "A continuación verás cómo este recurso aparecerá para tus clientes:" -#: ../../src/Translations/AdminTranslations.php:564 +#: ../../src/Translations/AdminTranslations.php:565 msgid "Checkout Preview" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:565 +#: ../../src/Translations/AdminTranslations.php:566 msgid "PREVIEW" msgstr "DEMO" -#: ../../src/Translations/AdminTranslations.php:567 +#: ../../src/Translations/AdminTranslations.php:568 msgid "It is possible to edit the title. Maximum of 85 characters." msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85." -#: ../../src/Translations/AdminTranslations.php:568 +#: ../../src/Translations/AdminTranslations.php:569 msgid "Checkout without card" msgstr "Hasta 12 pagos sin tarjeta con Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:574 +#: ../../src/Translations/AdminTranslations.php:575 msgid "" "Inform your customers about the option of paying in installments without card" msgstr "Informa a tus clientes sobre la opción de cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:575 +#: ../../src/Translations/AdminTranslations.php:576 msgid "" "By activating the installments without card component, you increase your " "chances of selling." @@ -1045,62 +1055,62 @@ msgstr "" "Al activar el componente de cuotas sin tarjeta,, aumentarás tus " "posibilidades de venta." -#: ../../src/Translations/AdminTranslations.php:578 +#: ../../src/Translations/AdminTranslations.php:579 msgid "Banner on the product page | Computer version" msgstr "Componente en la página del producto | Versión para computadora" -#: ../../src/Translations/AdminTranslations.php:579 +#: ../../src/Translations/AdminTranslations.php:580 msgid "Banner on the product page | Cellphone version" msgstr "Componente en la página del producto | Versión para celular" -#: ../../src/Translations/AdminTranslations.php:580 +#: ../../src/Translations/AdminTranslations.php:581 msgid "Computer" msgstr "Computadora" -#: ../../src/Translations/AdminTranslations.php:581 +#: ../../src/Translations/AdminTranslations.php:582 msgid "Mobile" msgstr "Celular" -#: ../../src/Translations/AdminTranslations.php:582 +#: ../../src/Translations/AdminTranslations.php:583 msgid "Component visualization" msgstr "Visualización del componente" -#: ../../src/Translations/AdminTranslations.php:604, -#: ../../src/Translations/AdminTranslations.php:610 +#: ../../src/Translations/AdminTranslations.php:605, +#: ../../src/Translations/AdminTranslations.php:611 msgid "Transparent Checkout for credit cards is" msgstr "El Checkout Transparente de las tarjetas de crédito está" -#: ../../src/Translations/AdminTranslations.php:628, -#: ../../src/Translations/AdminTranslations.php:634 +#: ../../src/Translations/AdminTranslations.php:629, +#: ../../src/Translations/AdminTranslations.php:635 msgid "Payments via Mercado Pago accounts are" msgstr "Los pagos a través de la cuenta de Mercado Pago están" -#: ../../src/Translations/AdminTranslations.php:651, -#: ../../src/Translations/AdminTranslations.php:666 +#: ../../src/Translations/AdminTranslations.php:652, +#: ../../src/Translations/AdminTranslations.php:667 msgid "Debit and Credit" msgstr "Débito e crédito" -#: ../../src/Translations/AdminTranslations.php:652, -#: ../../src/Translations/AdminTranslations.php:654, -#: ../../src/Translations/AdminTranslations.php:716, -#: ../../src/Translations/AdminTranslations.php:777, -#: ../../src/Translations/AdminTranslations.php:856, -#: ../../src/Translations/AdminTranslations.php:858 -msgid "Transparent Checkout in your store environment" -msgstr "Checkout Transparente en tu tienda" - #: ../../src/Translations/AdminTranslations.php:653, +#: ../../src/Translations/AdminTranslations.php:655, #: ../../src/Translations/AdminTranslations.php:717, #: ../../src/Translations/AdminTranslations.php:778, -#: ../../src/Translations/AdminTranslations.php:857 +#: ../../src/Translations/AdminTranslations.php:857, +#: ../../src/Translations/AdminTranslations.php:859 +msgid "Transparent Checkout in your store environment" +msgstr "Checkout Transparente en tu tienda" + +#: ../../src/Translations/AdminTranslations.php:654, +#: ../../src/Translations/AdminTranslations.php:718, +#: ../../src/Translations/AdminTranslations.php:779, +#: ../../src/Translations/AdminTranslations.php:858 msgid "Mercado pago - Customized Checkout" msgstr "Mercado Pago - Checkout Personalizado" -#: ../../src/Translations/AdminTranslations.php:655 +#: ../../src/Translations/AdminTranslations.php:656 msgid "Transparent Checkout | Credit card" msgstr "Checkout Transparente | Tarjeta de Crédito" -#: ../../src/Translations/AdminTranslations.php:656 +#: ../../src/Translations/AdminTranslations.php:657 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and with the security from Mercado Pago." @@ -1108,11 +1118,11 @@ msgstr "" "Con el Checkout Transparente, puedes vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:657 +#: ../../src/Translations/AdminTranslations.php:658 msgid "Mercado Pago Plugin general settings" msgstr "Configuraciones generales del plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:661 +#: ../../src/Translations/AdminTranslations.php:662 msgid "" "By disabling it, you will disable all credit cards payments from Mercado " "Pago Transparent Checkout." @@ -1120,11 +1130,11 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:668 +#: ../../src/Translations/AdminTranslations.php:669 msgid "Installments Fees" msgstr "Tasas de pago en cuotas" -#: ../../src/Translations/AdminTranslations.php:669 +#: ../../src/Translations/AdminTranslations.php:670 msgid "" "Set installment fees and whether they will be charged from the store or from " "the buyer." @@ -1132,15 +1142,15 @@ msgstr "" "Configura las tasas de las cuotas y si se las cobrarán a la tienda o al " "comprador." -#: ../../src/Translations/AdminTranslations.php:670 +#: ../../src/Translations/AdminTranslations.php:671 msgid "Set fees" msgstr "Configurar tasas" -#: ../../src/Translations/AdminTranslations.php:675 +#: ../../src/Translations/AdminTranslations.php:676 msgid "Payments via Mercado Pago account" msgstr "Pagos a través de la cuenta de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:676 +#: ../../src/Translations/AdminTranslations.php:677 msgid "" "Your customers pay faster with saved cards, money balance or other available " "methods in their Mercado Pago accounts." @@ -1148,26 +1158,26 @@ msgstr "" "Tus clientes pagan más rápido con tarjetas guardadas, dinero disponible o " "con otros medios disponibles en sus cuentas de MP." -#: ../../src/Translations/AdminTranslations.php:679 +#: ../../src/Translations/AdminTranslations.php:680 msgid "Check an example of how it will appear in your store:" msgstr "Conoce un ejemplo de cómo aparecerá en la tienda:" -#: ../../src/Translations/AdminTranslations.php:680 +#: ../../src/Translations/AdminTranslations.php:681 msgid "Advanced configuration of the personalized payment experience" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:715, -#: ../../src/Translations/AdminTranslations.php:729 +#: ../../src/Translations/AdminTranslations.php:716, +#: ../../src/Translations/AdminTranslations.php:730 msgid "Invoice" msgstr "Efectivo" -#: ../../src/Translations/AdminTranslations.php:718 +#: ../../src/Translations/AdminTranslations.php:719 msgid "Transparent Checkout | Invoice or Loterica" msgstr "Checkout Transparente | Efectivo" -#: ../../src/Translations/AdminTranslations.php:719, -#: ../../src/Translations/AdminTranslations.php:780, -#: ../../src/Translations/AdminTranslations.php:860 +#: ../../src/Translations/AdminTranslations.php:720, +#: ../../src/Translations/AdminTranslations.php:781, +#: ../../src/Translations/AdminTranslations.php:861 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and all the safety from Mercado Pago." @@ -1175,12 +1185,12 @@ msgstr "" "Con el Checkout Transparente, podrás vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:723, -#: ../../src/Translations/AdminTranslations.php:784 +#: ../../src/Translations/AdminTranslations.php:724, +#: ../../src/Translations/AdminTranslations.php:785 msgid "Enable the Checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:724 +#: ../../src/Translations/AdminTranslations.php:725 msgid "" "By disabling it, you will disable all invoice payments from Mercado Pago " "Transparent Checkout." @@ -1188,34 +1198,34 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago en efectivo en el " "Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:725 +#: ../../src/Translations/AdminTranslations.php:726 msgid "The transparent checkout for tickets is enabled." msgstr "El Checkout Transparente está activo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:726 +#: ../../src/Translations/AdminTranslations.php:727 msgid "The transparent checkout for tickets is disabled." msgstr "El Checkout Transparente está inactivo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:735 +#: ../../src/Translations/AdminTranslations.php:736 msgid "Payment Due" msgstr "Fecha de pago" -#: ../../src/Translations/AdminTranslations.php:736 +#: ../../src/Translations/AdminTranslations.php:737 msgid "In how many days will cash payments expire." msgstr "En cuántos días vencerán los pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:737 +#: ../../src/Translations/AdminTranslations.php:738 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../src/Translations/AdminTranslations.php:739, -#: ../../src/Translations/AdminTranslations.php:798 +#: ../../src/Translations/AdminTranslations.php:740, +#: ../../src/Translations/AdminTranslations.php:799 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../src/Translations/AdminTranslations.php:740, -#: ../../src/Translations/AdminTranslations.php:799 +#: ../../src/Translations/AdminTranslations.php:741, +#: ../../src/Translations/AdminTranslations.php:800 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 " @@ -1225,41 +1235,41 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../src/Translations/AdminTranslations.php:741, -#: ../../src/Translations/AdminTranslations.php:800 +#: ../../src/Translations/AdminTranslations.php:742, +#: ../../src/Translations/AdminTranslations.php:801 msgid "Reduce inventory is enabled." msgstr "Reducir inventario está activo." -#: ../../src/Translations/AdminTranslations.php:742, -#: ../../src/Translations/AdminTranslations.php:801 +#: ../../src/Translations/AdminTranslations.php:743, +#: ../../src/Translations/AdminTranslations.php:802 msgid "Reduce inventory is disabled." msgstr "Reducir inventario está inactivo." -#: ../../src/Translations/AdminTranslations.php:744, -#: ../../src/Translations/AdminTranslations.php:803 +#: ../../src/Translations/AdminTranslations.php:745, +#: ../../src/Translations/AdminTranslations.php:804 msgid "Enable the available payment methods" msgstr "Habilita los medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:745, -#: ../../src/Translations/AdminTranslations.php:804 +#: ../../src/Translations/AdminTranslations.php:746, +#: ../../src/Translations/AdminTranslations.php:805 msgid "Choose the available payment methods in your store." msgstr "Elige los medios de pago que se aceptan en la tienda." -#: ../../src/Translations/AdminTranslations.php:746, -#: ../../src/Translations/AdminTranslations.php:805 +#: ../../src/Translations/AdminTranslations.php:747, +#: ../../src/Translations/AdminTranslations.php:806 msgid "All payment methods" msgstr "Medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:776, -#: ../../src/Translations/AdminTranslations.php:790 +#: ../../src/Translations/AdminTranslations.php:777, +#: ../../src/Translations/AdminTranslations.php:791 msgid "PSE" msgstr "PSE" -#: ../../src/Translations/AdminTranslations.php:779 +#: ../../src/Translations/AdminTranslations.php:780 msgid "Transparent Checkout PSE" msgstr "Pago transparente PSE" -#: ../../src/Translations/AdminTranslations.php:785 +#: ../../src/Translations/AdminTranslations.php:786 msgid "" "By deactivating it, you will disable PSE payments from Mercado Pago " "Transparent Checkout." @@ -1267,49 +1277,49 @@ msgstr "" "Al desactivarlo, desactivará los pagos PSE de Mercado Pago Transparente " "Checkout." -#: ../../src/Translations/AdminTranslations.php:786 +#: ../../src/Translations/AdminTranslations.php:787 msgid "The transparent checkout for PSE is enabled." msgstr "El Checkout Transparente está activo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:787 +#: ../../src/Translations/AdminTranslations.php:788 msgid "The transparent checkout for PSE is disabled." msgstr "El Checkout Transparente está inactivo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:796 +#: ../../src/Translations/AdminTranslations.php:797 msgid "Advanced configuration of the PSE payment experience" msgstr "Configuración avanzada de la experiencia de pago PSE" -#: ../../src/Translations/AdminTranslations.php:824, -#: ../../src/Translations/AdminTranslations.php:830 +#: ../../src/Translations/AdminTranslations.php:825, +#: ../../src/Translations/AdminTranslations.php:831 msgid "The transparent checkout for Pix payment is" msgstr "El Checkout Transparente está" -#: ../../src/Translations/AdminTranslations.php:848 +#: ../../src/Translations/AdminTranslations.php:849 msgid "Go to the" msgstr "Ve al área" -#: ../../src/Translations/AdminTranslations.php:849 +#: ../../src/Translations/AdminTranslations.php:850 msgid "Your Profile" msgstr "Tu Perfil" -#: ../../src/Translations/AdminTranslations.php:850 +#: ../../src/Translations/AdminTranslations.php:851 msgid "area and choose the" msgstr "y elige la sección" -#: ../../src/Translations/AdminTranslations.php:851 +#: ../../src/Translations/AdminTranslations.php:852 msgid "Your Pix Keys section" msgstr "Tus claves Pix" -#: ../../src/Translations/AdminTranslations.php:855, -#: ../../src/Translations/AdminTranslations.php:870 +#: ../../src/Translations/AdminTranslations.php:856, +#: ../../src/Translations/AdminTranslations.php:871 msgid "Pix" msgstr "Pix" -#: ../../src/Translations/AdminTranslations.php:859 +#: ../../src/Translations/AdminTranslations.php:860 msgid "Transparent Checkout | Pix" msgstr "Checkout Transparente | Pix" -#: ../../src/Translations/AdminTranslations.php:865 +#: ../../src/Translations/AdminTranslations.php:866 msgid "" "By disabling it, you will disable all Pix payments from Mercado Pago " "Transparent Checkout." @@ -1317,85 +1327,85 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:872 +#: ../../src/Translations/AdminTranslations.php:873 msgid "Expiration for payments via Pix" msgstr "Vencimiento para pagos con Pix" -#: ../../src/Translations/AdminTranslations.php:873 +#: ../../src/Translations/AdminTranslations.php:874 msgid "Set the limit in minutes for your clients to pay via Pix." msgstr "" "Define el límite de minutos para que tus clientes puedan pagar con Pix." -#: ../../src/Translations/AdminTranslations.php:874 +#: ../../src/Translations/AdminTranslations.php:875 msgid "15 minutes" msgstr "15 minutos" -#: ../../src/Translations/AdminTranslations.php:875 +#: ../../src/Translations/AdminTranslations.php:876 msgid "30 minutes (recommended)" msgstr "30 minutos (recomendado)" -#: ../../src/Translations/AdminTranslations.php:876 +#: ../../src/Translations/AdminTranslations.php:877 msgid "60 minutes" msgstr "60 minutos" -#: ../../src/Translations/AdminTranslations.php:877 +#: ../../src/Translations/AdminTranslations.php:878 msgid "12 hours" msgstr "12 horas" -#: ../../src/Translations/AdminTranslations.php:878 +#: ../../src/Translations/AdminTranslations.php:879 msgid "24 hours" msgstr "24 horas" -#: ../../src/Translations/AdminTranslations.php:879 +#: ../../src/Translations/AdminTranslations.php:880 msgid "2 days" msgstr "2 días" -#: ../../src/Translations/AdminTranslations.php:880 +#: ../../src/Translations/AdminTranslations.php:881 msgid "3 days" msgstr "3 días" -#: ../../src/Translations/AdminTranslations.php:881 +#: ../../src/Translations/AdminTranslations.php:882 msgid "4 days" msgstr "4 días" -#: ../../src/Translations/AdminTranslations.php:882 +#: ../../src/Translations/AdminTranslations.php:883 msgid "5 days" msgstr "5 días" -#: ../../src/Translations/AdminTranslations.php:883 +#: ../../src/Translations/AdminTranslations.php:884 msgid "6 days" msgstr "6 días" -#: ../../src/Translations/AdminTranslations.php:884 +#: ../../src/Translations/AdminTranslations.php:885 msgid "7 days" msgstr "7 días" -#: ../../src/Translations/AdminTranslations.php:889 +#: ../../src/Translations/AdminTranslations.php:890 msgid "Would you like to know how Pix works?" msgstr "¿Quieres saber cómo funciona Pix?" -#: ../../src/Translations/AdminTranslations.php:890 +#: ../../src/Translations/AdminTranslations.php:891 msgid "" "We have a dedicated page where we explain how it works and its advantages." msgstr "Creamos una página que explica su funcionamiento y sus vantajas." -#: ../../src/Translations/AdminTranslations.php:891 +#: ../../src/Translations/AdminTranslations.php:892 msgid "Find out more about Pix" msgstr "Saber más sobre Pix" -#: ../../src/Translations/AdminTranslations.php:892 +#: ../../src/Translations/AdminTranslations.php:893 msgid "Advanced configuration of the Pix experience" msgstr "Configuración avanzada de la experiencia Pix" -#: ../../src/Translations/AdminTranslations.php:900 +#: ../../src/Translations/AdminTranslations.php:901 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." -#: ../../src/Translations/AdminTranslations.php:901 +#: ../../src/Translations/AdminTranslations.php:902 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../src/Translations/AdminTranslations.php:903 +#: ../../src/Translations/AdminTranslations.php:904 msgid "" "Choose which data to register as Pix keys. After registering, you can set up " "Pix in your checkout." @@ -1403,7 +1413,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el Pix en tu checkout." -#: ../../src/Translations/AdminTranslations.php:904 +#: ../../src/Translations/AdminTranslations.php:905 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1411,7 +1421,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../src/Translations/AdminTranslations.php:905 +#: ../../src/Translations/AdminTranslations.php:906 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1419,11 +1429,11 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../src/Translations/AdminTranslations.php:906 +#: ../../src/Translations/AdminTranslations.php:907 msgid "Learn more about Pix" msgstr "Más información sobre Pix" -#: ../../src/Translations/AdminTranslations.php:907 +#: ../../src/Translations/AdminTranslations.php:908 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1431,82 +1441,82 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../src/Translations/AdminTranslations.php:908 +#: ../../src/Translations/AdminTranslations.php:909 msgid "click here." msgstr "haz clic aquí." -#: ../../src/Translations/AdminTranslations.php:921 +#: ../../src/Translations/AdminTranslations.php:922 msgid "To enable test mode" msgstr "Para activar el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:923 +#: ../../src/Translations/AdminTranslations.php:924 msgid "copy your test credentials" msgstr "copia tus credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:924 +#: ../../src/Translations/AdminTranslations.php:925 msgid "and paste them above in section 1 of this page" msgstr "y pégalas en la sección 1 de esta página" -#: ../../src/Translations/AdminTranslations.php:929 +#: ../../src/Translations/AdminTranslations.php:930 msgid "Create your" msgstr "Crea tu" -#: ../../src/Translations/AdminTranslations.php:931 +#: ../../src/Translations/AdminTranslations.php:932 msgid "test user" msgstr "usuario de prueba" -#: ../../src/Translations/AdminTranslations.php:932 +#: ../../src/Translations/AdminTranslations.php:933 msgid "" "(Optional. Can be used in Production Mode and Test Mode, to test payments)" msgstr "" "(Opcional. Se puede utilizar en modo de producción y en modo de prueba, para " "probar los pagos)" -#: ../../src/Translations/AdminTranslations.php:938 +#: ../../src/Translations/AdminTranslations.php:939 msgid "Use our test cards" msgstr "Utiliza nuestras tarjetas de prueba" -#: ../../src/Translations/AdminTranslations.php:939 +#: ../../src/Translations/AdminTranslations.php:940 msgid "never use real cards" msgstr "nunca utilices tarjetas reales" -#: ../../src/Translations/AdminTranslations.php:945 +#: ../../src/Translations/AdminTranslations.php:946 msgid "Visit your store" msgstr "Visita tu tienda" -#: ../../src/Translations/AdminTranslations.php:946 +#: ../../src/Translations/AdminTranslations.php:947 msgid "to test purchases" msgstr "para testear compras" -#: ../../src/Translations/AdminTranslations.php:950 +#: ../../src/Translations/AdminTranslations.php:951 msgid "4. Test your store before you sell" msgstr "4. Testea tu tienda antes de vender" -#: ../../src/Translations/AdminTranslations.php:951 +#: ../../src/Translations/AdminTranslations.php:952 msgid "Choose how you want to operate your store:" msgstr "Elige cómo quieres operar tu tienda:" -#: ../../src/Translations/AdminTranslations.php:952 +#: ../../src/Translations/AdminTranslations.php:953 msgid "Test Mode" msgstr "Modo Test" -#: ../../src/Translations/AdminTranslations.php:953 +#: ../../src/Translations/AdminTranslations.php:954 msgid "Sale Mode (Production)" msgstr "Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:954 +#: ../../src/Translations/AdminTranslations.php:955 msgid "Mercado Pago payment methods in Production Mode" msgstr "Medios de pago Mercado Pago en Modo Produción" -#: ../../src/Translations/AdminTranslations.php:955 +#: ../../src/Translations/AdminTranslations.php:956 msgid "Mercado Pago payment methods in Test Mode" msgstr "Medios de pago Mercado Pago en Modo Test" -#: ../../src/Translations/AdminTranslations.php:956 +#: ../../src/Translations/AdminTranslations.php:957 msgid "Enter test credentials" msgstr "Ingresa las credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:957 +#: ../../src/Translations/AdminTranslations.php:958 msgid "" "Test the experience in Test Mode and then enable the Sale Mode (Production) " "to sell." @@ -1514,114 +1524,114 @@ msgstr "" "Testea la experiencia en Modo Test. Luego activa el Modo Ventas (Producción) " "para realizar ventas." -#: ../../src/Translations/AdminTranslations.php:958 +#: ../../src/Translations/AdminTranslations.php:959 msgid "Mercado Pago Checkouts disabled for real collections." msgstr "Checkouts Mercado Pago inactivos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:959 +#: ../../src/Translations/AdminTranslations.php:960 msgid "Test Mode rules." msgstr "Reglas del modo test." -#: ../../src/Translations/AdminTranslations.php:960 +#: ../../src/Translations/AdminTranslations.php:961 msgid "Mercado Pago Checkouts enabled for real collections." msgstr "Checkouts Mercado Pago activos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:961 +#: ../../src/Translations/AdminTranslations.php:962 msgid "The clients can make real purchases in your store." msgstr "Los clientes pueden hacer compras reales en tu tienda." -#: ../../src/Translations/AdminTranslations.php:966 +#: ../../src/Translations/AdminTranslations.php:967 msgid "Store in sale mode (Production)" msgstr "Tienda en Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:967 +#: ../../src/Translations/AdminTranslations.php:968 msgid "Store under test" msgstr "Tienda en Modo Test" -#: ../../src/Translations/AdminTranslations.php:968 +#: ../../src/Translations/AdminTranslations.php:969 msgid "Save changes" msgstr "Guardar cambios" -#: ../../src/Translations/AdminTranslations.php:980 +#: ../../src/Translations/AdminTranslations.php:981 msgid "Store business fields are valid" msgstr "Los campos comerciales de la tienda son válidos" -#: ../../src/Translations/AdminTranslations.php:981 +#: ../../src/Translations/AdminTranslations.php:982 msgid "Store business fields could not be validated" msgstr "Los campos comerciales de la tienda no se pudieron validar" -#: ../../src/Translations/AdminTranslations.php:982 +#: ../../src/Translations/AdminTranslations.php:983 msgid "At least one payment method is enabled" msgstr "Al menos un método de pago está habilitado" -#: ../../src/Translations/AdminTranslations.php:983 +#: ../../src/Translations/AdminTranslations.php:984 msgid "No payment method enabled" msgstr "Ningún método de pago habilitado" -#: ../../src/Translations/AdminTranslations.php:984 +#: ../../src/Translations/AdminTranslations.php:985 msgid "Credentials fields are valid" msgstr "Los campos de la credencial son válidos" -#: ../../src/Translations/AdminTranslations.php:985 +#: ../../src/Translations/AdminTranslations.php:986 msgid "Credentials fields could not be validated" msgstr "No se pudieron validar los campos de credenciales" -#: ../../src/Translations/AdminTranslations.php:997 +#: ../../src/Translations/AdminTranslations.php:998 msgid "Valid Public Key" msgstr "Public key válida" -#: ../../src/Translations/AdminTranslations.php:998 +#: ../../src/Translations/AdminTranslations.php:999 msgid "Invalid Public Key" msgstr "Public key no válida" -#: ../../src/Translations/AdminTranslations.php:999 +#: ../../src/Translations/AdminTranslations.php:1000 msgid "Valid Access Token" msgstr "Access token válido" -#: ../../src/Translations/AdminTranslations.php:1000 +#: ../../src/Translations/AdminTranslations.php:1001 msgid "Invalid Access Token" msgstr "Access token no válido" -#: ../../src/Translations/AdminTranslations.php:1012 +#: ../../src/Translations/AdminTranslations.php:1013 msgid "Credentials were updated" msgstr "Se actualizaron las credenciales" -#: ../../src/Translations/AdminTranslations.php:1013 +#: ../../src/Translations/AdminTranslations.php:1014 msgid "" "Your store has exited Test Mode and is making real sales in Production Mode." msgstr "" "Ahora su tienda está fuera del modo de prueba y está realizando ventas " "reales en el modo de producción." -#: ../../src/Translations/AdminTranslations.php:1014 +#: ../../src/Translations/AdminTranslations.php:1015 msgid "To test the store, re-enter both test credentials." msgstr "Para probar la tienda, vuelva a ingresar ambas credenciales de prueba." -#: ../../src/Translations/AdminTranslations.php:1015 +#: ../../src/Translations/AdminTranslations.php:1016 msgid "Invalid credentials" msgstr "Credenciales no válidas" -#: ../../src/Translations/AdminTranslations.php:1016 +#: ../../src/Translations/AdminTranslations.php:1017 msgid "See our manual to learn" msgstr "Consulte nuestro manual para saber" -#: ../../src/Translations/AdminTranslations.php:1017 +#: ../../src/Translations/AdminTranslations.php:1018 msgid "how to enter the credentials the right way." msgstr "como ingresar las credenciales de forma correcta." -#: ../../src/Translations/AdminTranslations.php:1018 +#: ../../src/Translations/AdminTranslations.php:1019 msgid " for test mode" msgstr " para el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:1030 +#: ../../src/Translations/AdminTranslations.php:1031 msgid "Store information is valid" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:1043 +#: ../../src/Translations/AdminTranslations.php:1044 msgid "Attention:" msgstr "Atención:" -#: ../../src/Translations/AdminTranslations.php:1044 +#: ../../src/Translations/AdminTranslations.php:1045 msgid "" "The currency settings you have in WooCommerce are not compatible with the " "currency you use in your Mercado Pago account. Please activate the currency " @@ -1630,19 +1640,19 @@ msgstr "" "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." -#: ../../src/Translations/AdminTranslations.php:1047 +#: ../../src/Translations/AdminTranslations.php:1048 msgid "We are converting your currency from: " msgstr "Ahora convertimos tu moneda de: " -#: ../../src/Translations/AdminTranslations.php:1063 +#: ../../src/Translations/AdminTranslations.php:1064 msgid "to " msgstr "a " -#: ../../src/Translations/AdminTranslations.php:1074 +#: ../../src/Translations/AdminTranslations.php:1075 msgid "Payment status on Mercado Pago" msgstr "Estado de pago en el Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1075 +#: ../../src/Translations/AdminTranslations.php:1076 msgid "" "This is the payment status of your Mercado Pago Activities. To check the " "order status, please refer to Order details." @@ -1650,52 +1660,52 @@ msgstr "" "Este es el estado del pago de las Actividades de tu Mercado Pago. Para " "consultar el estado del pedido, consulta en Detalles del Pedido." -#: ../../src/Translations/AdminTranslations.php:1076, -#: ../../src/Translations/AdminTranslations.php:1078 +#: ../../src/Translations/AdminTranslations.php:1077, +#: ../../src/Translations/AdminTranslations.php:1079 msgid "View purchase details at Mercado Pago" msgstr "Ver detalles de compra en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1077, -#: ../../src/Translations/AdminTranslations.php:1079, -#: ../../src/Translations/AdminTranslations.php:1081 +#: ../../src/Translations/AdminTranslations.php:1078, +#: ../../src/Translations/AdminTranslations.php:1080, +#: ../../src/Translations/AdminTranslations.php:1082 msgid "Sync order status" msgstr "Sincronizar el estado del pedido" -#: ../../src/Translations/AdminTranslations.php:1080 +#: ../../src/Translations/AdminTranslations.php:1081 msgid "Consult the reasons for refusal" msgstr "Consultar motivos de rechazo" -#: ../../src/Translations/AdminTranslations.php:1082 +#: ../../src/Translations/AdminTranslations.php:1083 msgid "Order update successfully. This page will be reloaded..." msgstr "Actualización del pedido con éxito. Esta página será recargada…" -#: ../../src/Translations/AdminTranslations.php:1083 +#: ../../src/Translations/AdminTranslations.php:1084 msgid "Unable to update order:" msgstr "No se puede actualizar el pedido:" -#: ../../src/Translations/AdminTranslations.php:1084 +#: ../../src/Translations/AdminTranslations.php:1085 msgid "Payment made" msgstr "Pago realizado" -#: ../../src/Translations/AdminTranslations.php:1085 +#: ../../src/Translations/AdminTranslations.php:1086 msgid "Payment made by the buyer and already credited in the account." msgstr "" "El pago realizado por el comprador y que ya está acreditado en la cuenta." -#: ../../src/Translations/AdminTranslations.php:1086 +#: ../../src/Translations/AdminTranslations.php:1087 msgid "Call resolved" msgstr "Llamado resuelto" -#: ../../src/Translations/AdminTranslations.php:1087, -#: ../../src/Translations/AdminTranslations.php:1137 +#: ../../src/Translations/AdminTranslations.php:1088, +#: ../../src/Translations/AdminTranslations.php:1138 msgid "Please contact Mercado Pago for further details." msgstr "Contacta a Mercado Pago para saber más detalles." -#: ../../src/Translations/AdminTranslations.php:1088 +#: ../../src/Translations/AdminTranslations.php:1089 msgid "Payment refunded" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1089 +#: ../../src/Translations/AdminTranslations.php:1090 msgid "" "Your refund request has been made. Please contact Mercado Pago for further " "details." @@ -1703,59 +1713,59 @@ msgstr "" "Tu pedido de reebolso ya fue realizado. Contacta a Mercado Pago para saber " "más detalles." -#: ../../src/Translations/AdminTranslations.php:1090, -#: ../../src/Translations/AdminTranslations.php:1092 +#: ../../src/Translations/AdminTranslations.php:1091, +#: ../../src/Translations/AdminTranslations.php:1093 msgid "Payment returned" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1091 +#: ../../src/Translations/AdminTranslations.php:1092 msgid "The payment has been returned to the client." msgstr "El pago ya fue devuelto al cliente." -#: ../../src/Translations/AdminTranslations.php:1093 +#: ../../src/Translations/AdminTranslations.php:1094 msgid "The payment has been partially returned to the client." msgstr "El pago ya fue devuelto parcialmente al cliente." -#: ../../src/Translations/AdminTranslations.php:1094 +#: ../../src/Translations/AdminTranslations.php:1095 msgid "Payment canceled" msgstr "Pago cancelado" -#: ../../src/Translations/AdminTranslations.php:1095 +#: ../../src/Translations/AdminTranslations.php:1096 msgid "The payment has been successfully canceled." msgstr "El pago fue cancelado con éxito." -#: ../../src/Translations/AdminTranslations.php:1096 +#: ../../src/Translations/AdminTranslations.php:1097 msgid "Purchase canceled" msgstr "Compra cancelada" -#: ../../src/Translations/AdminTranslations.php:1097 +#: ../../src/Translations/AdminTranslations.php:1098 msgid "The payment has been canceled by the customer." msgstr "El pago fue cancelado por el cliente." -#: ../../src/Translations/AdminTranslations.php:1098, -#: ../../src/Translations/AdminTranslations.php:1100, -#: ../../src/Translations/AdminTranslations.php:1102, -#: ../../src/Translations/AdminTranslations.php:1104, -#: ../../src/Translations/AdminTranslations.php:1106, -#: ../../src/Translations/AdminTranslations.php:1114, -#: ../../src/Translations/AdminTranslations.php:1116, -#: ../../src/Translations/AdminTranslations.php:1118, -#: ../../src/Translations/AdminTranslations.php:1120, -#: ../../src/Translations/AdminTranslations.php:1122, -#: ../../src/Translations/AdminTranslations.php:1124, -#: ../../src/Translations/AdminTranslations.php:1126, -#: ../../src/Translations/AdminTranslations.php:1181 -msgid "Pending payment" -msgstr "Cobro pendiente" - #: ../../src/Translations/AdminTranslations.php:1099, #: ../../src/Translations/AdminTranslations.php:1101, #: ../../src/Translations/AdminTranslations.php:1103, -#: ../../src/Translations/AdminTranslations.php:1105 +#: ../../src/Translations/AdminTranslations.php:1105, +#: ../../src/Translations/AdminTranslations.php:1107, +#: ../../src/Translations/AdminTranslations.php:1115, +#: ../../src/Translations/AdminTranslations.php:1117, +#: ../../src/Translations/AdminTranslations.php:1119, +#: ../../src/Translations/AdminTranslations.php:1121, +#: ../../src/Translations/AdminTranslations.php:1123, +#: ../../src/Translations/AdminTranslations.php:1125, +#: ../../src/Translations/AdminTranslations.php:1127, +#: ../../src/Translations/AdminTranslations.php:1182 +msgid "Pending payment" +msgstr "Cobro pendiente" + +#: ../../src/Translations/AdminTranslations.php:1100, +#: ../../src/Translations/AdminTranslations.php:1102, +#: ../../src/Translations/AdminTranslations.php:1104, +#: ../../src/Translations/AdminTranslations.php:1106 msgid "Awaiting payment from the buyer." msgstr "Esperando el pago del comprador." -#: ../../src/Translations/AdminTranslations.php:1107 +#: ../../src/Translations/AdminTranslations.php:1108 msgid "" "We are veryfing the payment. We will notify you by email in up to 6 hours if " "everything is fine so that you can deliver the product or provide the " @@ -1764,19 +1774,19 @@ msgstr "" "Estamos revisando el pago. En menos de 6 horas te avisaremos por e-mail si " "está todo bien para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1108, -#: ../../src/Translations/AdminTranslations.php:1132, -#: ../../src/Translations/AdminTranslations.php:1148, -#: ../../src/Translations/AdminTranslations.php:1167, -#: ../../src/Translations/AdminTranslations.php:1171, -#: ../../src/Translations/AdminTranslations.php:1173, -#: ../../src/Translations/AdminTranslations.php:1175, -#: ../../src/Translations/AdminTranslations.php:1179 +#: ../../src/Translations/AdminTranslations.php:1109, +#: ../../src/Translations/AdminTranslations.php:1133, +#: ../../src/Translations/AdminTranslations.php:1149, +#: ../../src/Translations/AdminTranslations.php:1168, +#: ../../src/Translations/AdminTranslations.php:1172, +#: ../../src/Translations/AdminTranslations.php:1174, +#: ../../src/Translations/AdminTranslations.php:1176, +#: ../../src/Translations/AdminTranslations.php:1180 msgid "Declined payment" msgstr "Cobro rechazado" -#: ../../src/Translations/AdminTranslations.php:1109, -#: ../../src/Translations/AdminTranslations.php:1133 +#: ../../src/Translations/AdminTranslations.php:1110, +#: ../../src/Translations/AdminTranslations.php:1134 msgid "" "The card-issuing bank declined the payment. Please ask your client to use " "another card or to get in touch with the bank." @@ -1785,27 +1795,27 @@ msgstr "" "“\n" "“otra tarjeta o que se comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1110 +#: ../../src/Translations/AdminTranslations.php:1111 msgid "Payment authorized. Awaiting capture." msgstr "Pago autorizado. Esperando captura." -#: ../../src/Translations/AdminTranslations.php:1111 +#: ../../src/Translations/AdminTranslations.php:1112 msgid "" "The payment has been authorized on the client's card. Please capture the " "payment." msgstr "" "Ya se autorizó el pago en la tarjeta del cliente. Haz la captura del pago." -#: ../../src/Translations/AdminTranslations.php:1112 +#: ../../src/Translations/AdminTranslations.php:1113 msgid "Payment in process" msgstr "Pago en proceso" -#: ../../src/Translations/AdminTranslations.php:1113, -#: ../../src/Translations/AdminTranslations.php:1123 +#: ../../src/Translations/AdminTranslations.php:1114, +#: ../../src/Translations/AdminTranslations.php:1124 msgid "Please wait or contact Mercado Pago for further details" msgstr "Espera o contacta a Mercado Pago para saber más detalles" -#: ../../src/Translations/AdminTranslations.php:1115 +#: ../../src/Translations/AdminTranslations.php:1116 msgid "" "The bank is reviewing the payment. As soon as we have their confirmation, we " "will notify you via email so that you can deliver the product or provide the " @@ -1814,33 +1824,33 @@ msgstr "" "El banco está revisando el pago. Te avisaremos por e-mail cuando esté " "confirmado para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1117, -#: ../../src/Translations/AdminTranslations.php:1119, -#: ../../src/Translations/AdminTranslations.php:1121 +#: ../../src/Translations/AdminTranslations.php:1118, +#: ../../src/Translations/AdminTranslations.php:1120, +#: ../../src/Translations/AdminTranslations.php:1122 msgid "Awaiting payment information validation." msgstr "Esperando validación de los datos de pago." -#: ../../src/Translations/AdminTranslations.php:1125 +#: ../../src/Translations/AdminTranslations.php:1126 msgid "Waiting for the buyer." msgstr "Esperando al comprador." -#: ../../src/Translations/AdminTranslations.php:1127 +#: ../../src/Translations/AdminTranslations.php:1128 msgid "Waiting for the card issuer." msgstr "Espererando al emisor de la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1128, -#: ../../src/Translations/AdminTranslations.php:1130, -#: ../../src/Translations/AdminTranslations.php:1134, -#: ../../src/Translations/AdminTranslations.php:1155, -#: ../../src/Translations/AdminTranslations.php:1177 -msgid "The card issuing bank declined the payment" -msgstr "El banco emisor de la tarjeta rechazó el pago" - #: ../../src/Translations/AdminTranslations.php:1129, #: ../../src/Translations/AdminTranslations.php:1131, #: ../../src/Translations/AdminTranslations.php:1135, #: ../../src/Translations/AdminTranslations.php:1156, #: ../../src/Translations/AdminTranslations.php:1178 +msgid "The card issuing bank declined the payment" +msgstr "El banco emisor de la tarjeta rechazó el pago" + +#: ../../src/Translations/AdminTranslations.php:1130, +#: ../../src/Translations/AdminTranslations.php:1132, +#: ../../src/Translations/AdminTranslations.php:1136, +#: ../../src/Translations/AdminTranslations.php:1157, +#: ../../src/Translations/AdminTranslations.php:1179 msgid "" "Please recommend your customer to pay with another payment method or to " "contact their bank." @@ -1848,32 +1858,32 @@ msgstr "" "Recomiéndale a tu cliente que pague con otro medio de pago o que se " "comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1136 +#: ../../src/Translations/AdminTranslations.php:1137 msgid "Mercado Pago did not process the payment" msgstr "Mercado Pago no procesó el pago" -#: ../../src/Translations/AdminTranslations.php:1138, -#: ../../src/Translations/AdminTranslations.php:1183 -msgid "Expired payment deadline" -msgstr "Venció el plazo para el pago" - #: ../../src/Translations/AdminTranslations.php:1139, #: ../../src/Translations/AdminTranslations.php:1184 -msgid "The client did not pay within the time limit." -msgstr "El cliente no pagó dentro del límite de tiempo." +msgid "Expired payment deadline" +msgstr "Venció el plazo para el pago" #: ../../src/Translations/AdminTranslations.php:1140, -#: ../../src/Translations/AdminTranslations.php:1142, -#: ../../src/Translations/AdminTranslations.php:1144, #: ../../src/Translations/AdminTranslations.php:1185 -msgid "Your customer entered one or more incorrect card details" -msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" +msgid "The client did not pay within the time limit." +msgstr "El cliente no pagó dentro del límite de tiempo." #: ../../src/Translations/AdminTranslations.php:1141, #: ../../src/Translations/AdminTranslations.php:1143, #: ../../src/Translations/AdminTranslations.php:1145, -#: ../../src/Translations/AdminTranslations.php:1186, -#: ../../src/Translations/AdminTranslations.php:1187 +#: ../../src/Translations/AdminTranslations.php:1186 +msgid "Your customer entered one or more incorrect card details" +msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" + +#: ../../src/Translations/AdminTranslations.php:1142, +#: ../../src/Translations/AdminTranslations.php:1144, +#: ../../src/Translations/AdminTranslations.php:1146, +#: ../../src/Translations/AdminTranslations.php:1187, +#: ../../src/Translations/AdminTranslations.php:1188 msgid "" "Please ask them to enter to enter them again exactly as they appear on the " "card or on their bank app to complete the payment." @@ -1881,17 +1891,17 @@ msgstr "" "Pídele que vuelva a ingresarlos tal como figuran en la tarjeta o en la app " "de su banco para finalizar el pago." -#: ../../src/Translations/AdminTranslations.php:1146, -#: ../../src/Translations/AdminTranslations.php:1169 +#: ../../src/Translations/AdminTranslations.php:1147, +#: ../../src/Translations/AdminTranslations.php:1170 msgid "We protected you from a suspicious payment" msgstr "Te protegimos de un pago sospechoso" -#: ../../src/Translations/AdminTranslations.php:1147 +#: ../../src/Translations/AdminTranslations.php:1148 msgid "For safety reasons, this transaction cannot be completed." msgstr "Por motivos de seguridad, esta transacción no podrá ser finalizada." -#: ../../src/Translations/AdminTranslations.php:1149, -#: ../../src/Translations/AdminTranslations.php:1168 +#: ../../src/Translations/AdminTranslations.php:1150, +#: ../../src/Translations/AdminTranslations.php:1169 msgid "" "The buyer is suspended in our platform. Your client must contact us to check " "what happened." @@ -1899,12 +1909,12 @@ msgstr "" "El comprador está suspendido en Mercado Pago. Tu cliente debe comunicarse " "con nosotros para ver qué pasó." -#: ../../src/Translations/AdminTranslations.php:1150 +#: ../../src/Translations/AdminTranslations.php:1151 msgid "For safety reasons, the card issuing bank declined the payment" msgstr "Por seguridad, el banco emisor de la tarjeta rechazó el pago" -#: ../../src/Translations/AdminTranslations.php:1151, -#: ../../src/Translations/AdminTranslations.php:1170 +#: ../../src/Translations/AdminTranslations.php:1152, +#: ../../src/Translations/AdminTranslations.php:1171 msgid "" "Recommend your customer to pay with their usual payment method and device " "for online purchases." @@ -1912,40 +1922,40 @@ msgstr "" "Recomiéndale a tu cliente que pague con el medio de pago y dispositivo que " "suele usar para compras online." -#: ../../src/Translations/AdminTranslations.php:1152 +#: ../../src/Translations/AdminTranslations.php:1153 msgid "Your customer's credit card has no available limit" msgstr "La tarjeta de crédito de tu cliente no tiene límite disponible" -#: ../../src/Translations/AdminTranslations.php:1153, #: ../../src/Translations/AdminTranslations.php:1154, -#: ../../src/Translations/AdminTranslations.php:1158 +#: ../../src/Translations/AdminTranslations.php:1155, +#: ../../src/Translations/AdminTranslations.php:1159 msgid "" "Please ask them to pay with another card or to choose another payment method." msgstr "Pídele que pague con otra tarjeta o que elija otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1157 +#: ../../src/Translations/AdminTranslations.php:1158 msgid "Your customer reached the limit of payment attempts with this card" msgstr "Tu cliente alcanzó el límite de intentos de pago con la tarjeta" -#: ../../src/Translations/AdminTranslations.php:1159 +#: ../../src/Translations/AdminTranslations.php:1160 msgid "" "Your customer's card does not accept the number of installments selected" msgstr "La tarjeta de tu cliente no acepta la cantidad de pagos que seleccionó" -#: ../../src/Translations/AdminTranslations.php:1160 +#: ../../src/Translations/AdminTranslations.php:1161 msgid "" "Please ask them to choose a different number of installments or to pay with " "another method." msgstr "" "Pídele que elija una cantidad de pagos diferente o que use con otro medio." -#: ../../src/Translations/AdminTranslations.php:1161, -#: ../../src/Translations/AdminTranslations.php:1188 +#: ../../src/Translations/AdminTranslations.php:1162, +#: ../../src/Translations/AdminTranslations.php:1189 msgid "Your customer needs to authorize the payment through their bank" msgstr "Tu cliente necesita autorizar el pago con su banco" -#: ../../src/Translations/AdminTranslations.php:1162, -#: ../../src/Translations/AdminTranslations.php:1189 +#: ../../src/Translations/AdminTranslations.php:1163, +#: ../../src/Translations/AdminTranslations.php:1190 msgid "" "Please ask them to call the telephone number on their card or to pay with " "another method." @@ -1953,20 +1963,20 @@ msgstr "" "Pídele que llame al teléfono que está en la tarjeta o que pague con otro " "medio." -#: ../../src/Translations/AdminTranslations.php:1163 +#: ../../src/Translations/AdminTranslations.php:1164 msgid "" "The payment was declined because your customer already paid for this purchase" msgstr "El pago fue rechazado porque tu cliente ya pagó esta compra" -#: ../../src/Translations/AdminTranslations.php:1164 +#: ../../src/Translations/AdminTranslations.php:1165 msgid "Check your approved payments to verify it." msgstr "Revisa tu cobros aprobados para verificarlo." -#: ../../src/Translations/AdminTranslations.php:1165 +#: ../../src/Translations/AdminTranslations.php:1166 msgid "Your customer's card was is not activated yet" msgstr "La tarjeta de tu cliente aún no está habilitada" -#: ../../src/Translations/AdminTranslations.php:1166 +#: ../../src/Translations/AdminTranslations.php:1167 msgid "" "Please ask them to contact their bank by calling the number on the back of " "their card or to pay with another method." @@ -1974,7 +1984,7 @@ msgstr "" "Pídele que se comunique con su banco al número que está en el dorso de la " "tarjeta o que pague con otro medio." -#: ../../src/Translations/AdminTranslations.php:1172 +#: ../../src/Translations/AdminTranslations.php:1173 msgid "" "This payment was declined because it did not pass Mercado Pago security " "controls. Please ask your client to use another card." @@ -1982,7 +1992,7 @@ msgstr "" "Rechazamos este pago porque no pasó los controles de seguridad de Mercado " "Pago. Pedile a tu cliente que use otra tarjeta." -#: ../../src/Translations/AdminTranslations.php:1174 +#: ../../src/Translations/AdminTranslations.php:1175 msgid "" "The amount exceeded the card limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -1990,8 +2000,8 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1176, -#: ../../src/Translations/AdminTranslations.php:1180 +#: ../../src/Translations/AdminTranslations.php:1177, +#: ../../src/Translations/AdminTranslations.php:1181 msgid "" "Please ask your client to use another card or to get in touch with the card " "issuer." @@ -1999,7 +2009,7 @@ msgstr "" "Pídele a tu cliente que use otra tarjeta o que se comunique con el emisor de " "la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1182 +#: ../../src/Translations/AdminTranslations.php:1183 msgid "" "The amount exceeded the card's limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -2007,21 +2017,21 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1190 +#: ../../src/Translations/AdminTranslations.php:1191 msgid "Your customer's debit card has insufficient funds" msgstr "La tarjeta de débito de tu cliente no tiene saldo suficiente" -#: ../../src/Translations/AdminTranslations.php:1191 +#: ../../src/Translations/AdminTranslations.php:1192 msgid "" "Please recommend your customer to pay with another card or to choose another " "payment method." msgstr "Pídele que pague con otra tarjeta o que elige otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1192 +#: ../../src/Translations/AdminTranslations.php:1193 msgid "Something went wrong and the payment was declined" msgstr "El pago fue rechazado porque hubo un error" -#: ../../src/Translations/AdminTranslations.php:1193 +#: ../../src/Translations/AdminTranslations.php:1194 msgid "" "Please recommend you customer to try again or to pay with another payment " "method." diff --git a/i18n/languages/woocommerce-mercadopago-es_PE.mo b/i18n/languages/woocommerce-mercadopago-es_PE.mo index bd1af4ac49f7dfee76b3c4a9adea6e331edd16a2..392533cbdfcbb70849524b76c5c5421daba707ad 100644 GIT binary patch delta 10494 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 delta 10191 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 CD_YP1 diff --git a/i18n/languages/woocommerce-mercadopago-es_PE.po b/i18n/languages/woocommerce-mercadopago-es_PE.po index 56c6233a1..d807f91c5 100644 --- a/i18n/languages/woocommerce-mercadopago-es_PE.po +++ b/i18n/languages/woocommerce-mercadopago-es_PE.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" -"POT-Creation-Date: 2024-02-01 11:32+0000\n" +"POT-Creation-Date: 2024-02-07 19:47+0000\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -15,22 +15,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.2\n" -#: ../../src/WoocommerceMercadoPago.php:426, +#: ../../src/WoocommerceMercadoPago.php:449, #: ../../src/Translations/AdminTranslations.php:166 msgid "Activate WooCommerce" msgstr "Activar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:427, +#: ../../src/WoocommerceMercadoPago.php:450, #: ../../src/Translations/AdminTranslations.php:167 msgid "Install WooCommerce" msgstr "Instalar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:428, +#: ../../src/WoocommerceMercadoPago.php:451, #: ../../src/Translations/AdminTranslations.php:168 msgid "See WooCommerce" msgstr "Ver WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:430, +#: ../../src/WoocommerceMercadoPago.php:453, #: ../../src/Translations/AdminTranslations.php:157 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" @@ -103,50 +103,60 @@ msgstr "" msgid "Activate" msgstr "Activar" -#: ../../src/Translations/AdminTranslations.php:188 +#: ../../src/Translations/AdminTranslations.php:177 +msgid "" +"Unfortunately, the language configured in your WordPress is not compatible " +"with our plugin. For the best experience, please switch to a supported " +"language." +msgstr "" +"Lamentablemente, el idioma configurado en tu WordPress no es compatible con " +"nuestro plugin. Para disfrutar de la mejor experiencia, cambia a un idioma " +"compatible." + +#: ../../src/Translations/AdminTranslations.php:189 msgid "Set plugin" msgstr "Configurar plugin" -#: ../../src/Translations/AdminTranslations.php:189, -#: ../../src/Translations/AdminTranslations.php:743, -#: ../../src/Translations/AdminTranslations.php:802 +#: ../../src/Translations/AdminTranslations.php:190, +#: ../../src/Translations/AdminTranslations.php:744, +#: ../../src/Translations/AdminTranslations.php:803 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../src/Translations/AdminTranslations.php:190, -#: ../../src/Translations/AdminTranslations.php:261 +#: ../../src/Translations/AdminTranslations.php:191, +#: ../../src/Translations/AdminTranslations.php:262 msgid "Plugin manual" msgstr "Manual del plugin" -#: ../../src/Translations/AdminTranslations.php:202 +#: ../../src/Translations/AdminTranslations.php:203 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../src/Translations/AdminTranslations.php:203 +#: ../../src/Translations/AdminTranslations.php:204 msgid "Mercado Pago commission:" msgstr "Comisión de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:204 +#: ../../src/Translations/AdminTranslations.php:205 msgid "Represents the commission configured on plugin settings." msgstr "Representa la comisión configurada en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:205 +#: ../../src/Translations/AdminTranslations.php:206 msgid "Mercado Pago discount:" msgstr "Descuento de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:206 +#: ../../src/Translations/AdminTranslations.php:207 msgid "Represents the discount configured on plugin settings." msgstr "Representa el descuento configurado en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:207 +#: ../../src/Translations/AdminTranslations.php:208 msgid "Represents the installment fee charged by Mercado Pago." msgstr "Representa la comisión a plazos cobrada por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:208 +#: ../../src/Translations/AdminTranslations.php:209 msgid "Mercado Pago Installment Fee:" msgstr "Cuota de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:209 +#: ../../src/Translations/AdminTranslations.php:210 msgid "" "Represents the total purchase plus the installment fee charged by Mercado " "Pago." @@ -154,91 +164,91 @@ msgstr "" "Representa el total de la compra más la comisión de fraccionamiento cobrada " "por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:210 +#: ../../src/Translations/AdminTranslations.php:211 msgid "Mercado Pago Total:" msgstr "Mercado Pago Total:" -#: ../../src/Translations/AdminTranslations.php:223 +#: ../../src/Translations/AdminTranslations.php:224 msgid "Accept" msgstr "Acepta" -#: ../../src/Translations/AdminTranslations.php:224 +#: ../../src/Translations/AdminTranslations.php:225 msgid "payments on the spot" msgstr "pagos al instante" -#: ../../src/Translations/AdminTranslations.php:225 +#: ../../src/Translations/AdminTranslations.php:226 msgid "with" msgstr "con" -#: ../../src/Translations/AdminTranslations.php:226 +#: ../../src/Translations/AdminTranslations.php:227 msgid "the" msgstr "toda la" -#: ../../src/Translations/AdminTranslations.php:227 +#: ../../src/Translations/AdminTranslations.php:228 msgid "security" msgstr "seguridad" -#: ../../src/Translations/AdminTranslations.php:228 +#: ../../src/Translations/AdminTranslations.php:229 msgid "from Mercado Pago" msgstr "de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:233 +#: ../../src/Translations/AdminTranslations.php:234 msgid "Choose" msgstr "Elige" -#: ../../src/Translations/AdminTranslations.php:234 +#: ../../src/Translations/AdminTranslations.php:235 msgid "when you want to receive the money" msgstr "cuándo quieres recibir el dinero" -#: ../../src/Translations/AdminTranslations.php:235 +#: ../../src/Translations/AdminTranslations.php:236 msgid "from your sales and if you want to offer" msgstr "de las ventas y si quieres ofrecer" -#: ../../src/Translations/AdminTranslations.php:236 +#: ../../src/Translations/AdminTranslations.php:237 msgid "interest-free installments" msgstr "cuotas sin interés" -#: ../../src/Translations/AdminTranslations.php:237 +#: ../../src/Translations/AdminTranslations.php:238 msgid "to your clients." msgstr "a los clientes." -#: ../../src/Translations/AdminTranslations.php:242 +#: ../../src/Translations/AdminTranslations.php:243 msgid "Review the step-by-step of" msgstr "Revisa el paso a paso de" -#: ../../src/Translations/AdminTranslations.php:243 +#: ../../src/Translations/AdminTranslations.php:244 msgid "how to integrate the Mercado Pago Plugin" msgstr "cómo integrar el Plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:244 +#: ../../src/Translations/AdminTranslations.php:245 msgid "on our website for developers." msgstr "en nuestro sitio de desarrolladores." -#: ../../src/Translations/AdminTranslations.php:248 +#: ../../src/Translations/AdminTranslations.php:249 msgid "SSL" msgstr "SSL" -#: ../../src/Translations/AdminTranslations.php:249 +#: ../../src/Translations/AdminTranslations.php:250 msgid "Curl" msgstr "Curl" -#: ../../src/Translations/AdminTranslations.php:250 +#: ../../src/Translations/AdminTranslations.php:251 msgid "GD Extensions" msgstr "Extensiones GD" -#: ../../src/Translations/AdminTranslations.php:252 +#: ../../src/Translations/AdminTranslations.php:253 msgid "Technical requirements" msgstr "Requisitos técnicos" -#: ../../src/Translations/AdminTranslations.php:253 +#: ../../src/Translations/AdminTranslations.php:254 msgid "Collections and installments" msgstr "Cobros y cuotas" -#: ../../src/Translations/AdminTranslations.php:254 +#: ../../src/Translations/AdminTranslations.php:255 msgid "Questions?" msgstr "¿Dudas?" -#: ../../src/Translations/AdminTranslations.php:255 +#: ../../src/Translations/AdminTranslations.php:256 msgid "" "Implementation responsible for transmitting data to Mercado Pago in a secure " "and encrypted way." @@ -246,7 +256,7 @@ msgstr "" "Implementación responsable de transmitir los datos a Mercado Pago de forma " "segura y encriptada." -#: ../../src/Translations/AdminTranslations.php:256 +#: ../../src/Translations/AdminTranslations.php:257 msgid "" "It is an extension responsible for making payments via requests from the " "plugin to Mercado Pago." @@ -254,7 +264,7 @@ msgstr "" "Es una extensión encargada de realizar los pagos a través de requests del " "plugin a Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:257 +#: ../../src/Translations/AdminTranslations.php:258 msgid "" "These extensions are responsible for the implementation and operation of Pix " "in your store." @@ -262,11 +272,11 @@ msgstr "" "Extensiones responsables de la aplicación y el funcionamiento de Pix en su " "tienda." -#: ../../src/Translations/AdminTranslations.php:260 +#: ../../src/Translations/AdminTranslations.php:261 msgid "Set deadlines and fees" msgstr "Ajustar plazos y tasas" -#: ../../src/Translations/AdminTranslations.php:274 +#: ../../src/Translations/AdminTranslations.php:275 msgid "" "To enable orders, you must create and activate production credentials in " "your Mercado Pago Account." @@ -274,79 +284,79 @@ msgstr "" "Para habilitar las ventas, debes crear y activar las credenciales de " "producción en tu cuenta de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:275 +#: ../../src/Translations/AdminTranslations.php:276 msgid "Copy and paste the credentials below." msgstr "Copia y pega tus credenciales a continuación." -#: ../../src/Translations/AdminTranslations.php:280 +#: ../../src/Translations/AdminTranslations.php:281 msgid "You must enter" msgstr "Debe introducir" -#: ../../src/Translations/AdminTranslations.php:281 +#: ../../src/Translations/AdminTranslations.php:282 msgid "production credentials" msgstr "las credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:285 +#: ../../src/Translations/AdminTranslations.php:286 msgid "Public Key" msgstr "Public Key" -#: ../../src/Translations/AdminTranslations.php:286 +#: ../../src/Translations/AdminTranslations.php:287 msgid "Access Token" msgstr "Access Token" -#: ../../src/Translations/AdminTranslations.php:287 +#: ../../src/Translations/AdminTranslations.php:288 msgid "1. Integrate your store with Mercado Pago" msgstr "1. Integra la tienda a Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:288 +#: ../../src/Translations/AdminTranslations.php:289 msgid "Production credentials" msgstr "Credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:289 +#: ../../src/Translations/AdminTranslations.php:290 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:291 +#: ../../src/Translations/AdminTranslations.php:292 msgid "Enable Mercado Pago checkouts for test purchases in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para pruebas de compras en la " "tienda." -#: ../../src/Translations/AdminTranslations.php:292 +#: ../../src/Translations/AdminTranslations.php:293 msgid "Enable Mercado Pago checkouts to receive real payments in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para recibir pagos reales en tienda." -#: ../../src/Translations/AdminTranslations.php:293 +#: ../../src/Translations/AdminTranslations.php:294 msgid "Paste your Public Key here" msgstr "Pega aquí tu Public Key" -#: ../../src/Translations/AdminTranslations.php:294 +#: ../../src/Translations/AdminTranslations.php:295 msgid "Paste your Access Token here" msgstr "Pega aquí tu Access Token" -#: ../../src/Translations/AdminTranslations.php:295 +#: ../../src/Translations/AdminTranslations.php:296 msgid "Check credentials" msgstr "Consultar credenciales" -#: ../../src/Translations/AdminTranslations.php:296, -#: ../../src/Translations/AdminTranslations.php:350 +#: ../../src/Translations/AdminTranslations.php:297, +#: ../../src/Translations/AdminTranslations.php:351 msgid "Save and continue" msgstr "Guardar y continuar" -#: ../../src/Translations/AdminTranslations.php:297 +#: ../../src/Translations/AdminTranslations.php:298 msgid "Important! To sell you must enter your credentials." msgstr "¡Importante! Para vender debe introducir sus credenciales." -#: ../../src/Translations/AdminTranslations.php:299 +#: ../../src/Translations/AdminTranslations.php:300 msgid "Enter credentials" msgstr "Introducir credenciales" -#: ../../src/Translations/AdminTranslations.php:300 +#: ../../src/Translations/AdminTranslations.php:301 msgid "Activate your credentials to be able to sell" msgstr "Activa tus credenciales para poder vender" -#: ../../src/Translations/AdminTranslations.php:301 +#: ../../src/Translations/AdminTranslations.php:302 msgid "" "Credentials are codes that you must enter to enable sales. Go below on " "Activate Credentials. On the next screen, use again the Activate Credentials " @@ -357,23 +367,23 @@ msgstr "" "nuevamente el botón Activar Credenciales y complete los campos con la " "información solicitada." -#: ../../src/Translations/AdminTranslations.php:302 +#: ../../src/Translations/AdminTranslations.php:303 msgid "Activate credentials" msgstr "Activar credenciales" -#: ../../src/Translations/AdminTranslations.php:315 +#: ../../src/Translations/AdminTranslations.php:316 msgid "Add the URL to receive payments notifications." msgstr "Ingresa la URL para recibir notificaciones de pago." -#: ../../src/Translations/AdminTranslations.php:316 +#: ../../src/Translations/AdminTranslations.php:317 msgid "Find out more information in the" msgstr "Consulta más información en los" -#: ../../src/Translations/AdminTranslations.php:318 +#: ../../src/Translations/AdminTranslations.php:319 msgid "guides" msgstr "manuales" -#: ../../src/Translations/AdminTranslations.php:323 +#: ../../src/Translations/AdminTranslations.php:324 msgid "" "If you are a Mercado Pago Certified Partner, make sure to add your " "integrator_id." @@ -381,31 +391,31 @@ msgstr "" "Si eres Partner certificado de Mercado Pago, recuerda ingresar tu " "integrator_id." -#: ../../src/Translations/AdminTranslations.php:324 +#: ../../src/Translations/AdminTranslations.php:325 msgid "If you do not have the code, please" msgstr "Si no tienes el código," -#: ../../src/Translations/AdminTranslations.php:326 +#: ../../src/Translations/AdminTranslations.php:327 msgid "request it now" msgstr "solicítalo ahora" -#: ../../src/Translations/AdminTranslations.php:330 +#: ../../src/Translations/AdminTranslations.php:331 msgid "2. Customize your business" msgstr "2. Personaliza tu negocio" -#: ../../src/Translations/AdminTranslations.php:331 +#: ../../src/Translations/AdminTranslations.php:332 msgid "Your store information" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:332 +#: ../../src/Translations/AdminTranslations.php:333 msgid "Advanced integration options (optional)" msgstr "Opciones avanzadas de integración (opcional)" -#: ../../src/Translations/AdminTranslations.php:333 +#: ../../src/Translations/AdminTranslations.php:334 msgid "Debug and Log Mode" msgstr "Modo debug y log" -#: ../../src/Translations/AdminTranslations.php:334 +#: ../../src/Translations/AdminTranslations.php:335 msgid "" "Fill out the following information to have a better experience and offer " "more information to your clients." @@ -413,15 +423,15 @@ msgstr "" "Completa los siguientes datos para tener una mejor experiencia y ofrecer más " "información a los clientes." -#: ../../src/Translations/AdminTranslations.php:335 +#: ../../src/Translations/AdminTranslations.php:336 msgid "Name of your store in your client's invoice" msgstr "Nombre de tu tienda en la factura de los clientes" -#: ../../src/Translations/AdminTranslations.php:336 +#: ../../src/Translations/AdminTranslations.php:337 msgid "Identification in Activities of Mercado Pago" msgstr "Identificación en Actividad de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:337 +#: ../../src/Translations/AdminTranslations.php:338 msgid "" "For further integration of your store with Mercado Pago (IPN, Certified " "Partners, Debug Mode)" @@ -429,202 +439,202 @@ msgstr "" "Para mayor integración de tu tienda con Mercado Pago (IPN, Socios " "Certificados, Modo Debug)" -#: ../../src/Translations/AdminTranslations.php:338 +#: ../../src/Translations/AdminTranslations.php:339 msgid "Store category" msgstr "Categoría de la tienda" -#: ../../src/Translations/AdminTranslations.php:339 +#: ../../src/Translations/AdminTranslations.php:340 msgid "URL for IPN" msgstr "URL para IPN" -#: ../../src/Translations/AdminTranslations.php:340 +#: ../../src/Translations/AdminTranslations.php:341 msgid "Integrator ID" msgstr "Integrator ID" -#: ../../src/Translations/AdminTranslations.php:341 +#: ../../src/Translations/AdminTranslations.php:342 msgid "We record your store's actions in order to provide a better assistance." msgstr "Grabamos las aciones de tu tienda para brindar un mejor soporte." -#: ../../src/Translations/AdminTranslations.php:342 +#: ../../src/Translations/AdminTranslations.php:343 msgid "Ex: Mary's Store" msgstr "Ej.: Tienda de María" -#: ../../src/Translations/AdminTranslations.php:343 +#: ../../src/Translations/AdminTranslations.php:344 msgid "Ex: Mary Store" msgstr "Ej.: TiendaMaría" -#: ../../src/Translations/AdminTranslations.php:344 +#: ../../src/Translations/AdminTranslations.php:345 msgid "Select" msgstr "Seleccionar" -#: ../../src/Translations/AdminTranslations.php:345 +#: ../../src/Translations/AdminTranslations.php:346 msgid "Ex: https://examples.com/my-custom-ipn-url" msgstr "Ej.: https://examples.com/my-custom-ipn-url" -#: ../../src/Translations/AdminTranslations.php:346 +#: ../../src/Translations/AdminTranslations.php:347 msgid "Add plugin default params" msgstr "Agregar parámetros default del plugin" -#: ../../src/Translations/AdminTranslations.php:347 +#: ../../src/Translations/AdminTranslations.php:348 msgid "Ex: 14987126498" msgstr "Ej.: 14987126498" -#: ../../src/Translations/AdminTranslations.php:348 +#: ../../src/Translations/AdminTranslations.php:349 msgid "Show advanced options" msgstr "Ver opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:349 +#: ../../src/Translations/AdminTranslations.php:350 msgid "Hide advanced options" msgstr "Esconder opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:351 +#: ../../src/Translations/AdminTranslations.php:352 msgid "" "If this field is empty, the purchase will be identified as Mercado Pago." msgstr "" "Si el campo queda vacío, la compra del cliente se identificará como Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:352 +#: ../../src/Translations/AdminTranslations.php:353 msgid "In Activities, you will view this term before the order number" msgstr "En Actividad, verás el término ingresado antes del número o del pedido" -#: ../../src/Translations/AdminTranslations.php:353 +#: ../../src/Translations/AdminTranslations.php:354 msgid "" "Select \"Other categories\" if you do not find the appropriate category." msgstr "Seleciona ”Other categories” si no encuentras una categoría adecuada." -#: ../../src/Translations/AdminTranslations.php:354 +#: ../../src/Translations/AdminTranslations.php:355 msgid "request it now." msgstr "solicítalo ahora." -#: ../../src/Translations/AdminTranslations.php:368 +#: ../../src/Translations/AdminTranslations.php:369 msgid "3. Set payment methods" msgstr "3. Configura los medios de pago" -#: ../../src/Translations/AdminTranslations.php:369 +#: ../../src/Translations/AdminTranslations.php:370 msgid "To view more options, please select a payment method below" msgstr "Selecciona uno de los siguientes medios de pago para ver más opciones" -#: ../../src/Translations/AdminTranslations.php:370 +#: ../../src/Translations/AdminTranslations.php:371 msgid "Settings" msgstr "Configurar" -#: ../../src/Translations/AdminTranslations.php:371 +#: ../../src/Translations/AdminTranslations.php:372 msgid "Continue" msgstr "Continuar" -#: ../../src/Translations/AdminTranslations.php:372 +#: ../../src/Translations/AdminTranslations.php:373 msgid "Enabled" msgstr "Activado" -#: ../../src/Translations/AdminTranslations.php:373 +#: ../../src/Translations/AdminTranslations.php:374 msgid "Disabled" msgstr "Inactivo" -#: ../../src/Translations/AdminTranslations.php:374 +#: ../../src/Translations/AdminTranslations.php:375 msgid "Configure your credentials to enable Mercado Pago payment methods." msgstr "" "Completa tus credenciales para habilitar los medios de pago Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:387, -#: ../../src/Translations/AdminTranslations.php:393 +#: ../../src/Translations/AdminTranslations.php:388, +#: ../../src/Translations/AdminTranslations.php:394 msgid "The checkout is" msgstr "El checkout está" -#: ../../src/Translations/AdminTranslations.php:388, -#: ../../src/Translations/AdminTranslations.php:400, -#: ../../src/Translations/AdminTranslations.php:515, -#: ../../src/Translations/AdminTranslations.php:527, -#: ../../src/Translations/AdminTranslations.php:539, -#: ../../src/Translations/AdminTranslations.php:605, -#: ../../src/Translations/AdminTranslations.php:617, -#: ../../src/Translations/AdminTranslations.php:629, -#: ../../src/Translations/AdminTranslations.php:705, -#: ../../src/Translations/AdminTranslations.php:766, -#: ../../src/Translations/AdminTranslations.php:825, -#: ../../src/Translations/AdminTranslations.php:837 +#: ../../src/Translations/AdminTranslations.php:389, +#: ../../src/Translations/AdminTranslations.php:401, +#: ../../src/Translations/AdminTranslations.php:516, +#: ../../src/Translations/AdminTranslations.php:528, +#: ../../src/Translations/AdminTranslations.php:540, +#: ../../src/Translations/AdminTranslations.php:606, +#: ../../src/Translations/AdminTranslations.php:618, +#: ../../src/Translations/AdminTranslations.php:630, +#: ../../src/Translations/AdminTranslations.php:706, +#: ../../src/Translations/AdminTranslations.php:767, +#: ../../src/Translations/AdminTranslations.php:826, +#: ../../src/Translations/AdminTranslations.php:838 msgid "enabled" msgstr "activo" -#: ../../src/Translations/AdminTranslations.php:394, +#: ../../src/Translations/AdminTranslations.php:395, +#: ../../src/Translations/AdminTranslations.php:407, +#: ../../src/Translations/AdminTranslations.php:522, +#: ../../src/Translations/AdminTranslations.php:534, +#: ../../src/Translations/AdminTranslations.php:546, +#: ../../src/Translations/AdminTranslations.php:612, +#: ../../src/Translations/AdminTranslations.php:624, +#: ../../src/Translations/AdminTranslations.php:636, +#: ../../src/Translations/AdminTranslations.php:712, +#: ../../src/Translations/AdminTranslations.php:773, +#: ../../src/Translations/AdminTranslations.php:832, +#: ../../src/Translations/AdminTranslations.php:844 +msgid "disabled" +msgstr "inactivo" + +#: ../../src/Translations/AdminTranslations.php:400, #: ../../src/Translations/AdminTranslations.php:406, -#: ../../src/Translations/AdminTranslations.php:521, +#: ../../src/Translations/AdminTranslations.php:527, #: ../../src/Translations/AdminTranslations.php:533, -#: ../../src/Translations/AdminTranslations.php:545, -#: ../../src/Translations/AdminTranslations.php:611, +#: ../../src/Translations/AdminTranslations.php:617, #: ../../src/Translations/AdminTranslations.php:623, -#: ../../src/Translations/AdminTranslations.php:635, +#: ../../src/Translations/AdminTranslations.php:705, #: ../../src/Translations/AdminTranslations.php:711, +#: ../../src/Translations/AdminTranslations.php:766, #: ../../src/Translations/AdminTranslations.php:772, -#: ../../src/Translations/AdminTranslations.php:831, +#: ../../src/Translations/AdminTranslations.php:837, #: ../../src/Translations/AdminTranslations.php:843 -msgid "disabled" -msgstr "inactivo" - -#: ../../src/Translations/AdminTranslations.php:399, -#: ../../src/Translations/AdminTranslations.php:405, -#: ../../src/Translations/AdminTranslations.php:526, -#: ../../src/Translations/AdminTranslations.php:532, -#: ../../src/Translations/AdminTranslations.php:616, -#: ../../src/Translations/AdminTranslations.php:622, -#: ../../src/Translations/AdminTranslations.php:704, -#: ../../src/Translations/AdminTranslations.php:710, -#: ../../src/Translations/AdminTranslations.php:765, -#: ../../src/Translations/AdminTranslations.php:771, -#: ../../src/Translations/AdminTranslations.php:836, -#: ../../src/Translations/AdminTranslations.php:842 msgid "Currency conversion is" msgstr "Conversión de moneda está" -#: ../../src/Translations/AdminTranslations.php:411, -#: ../../src/Translations/AdminTranslations.php:417 +#: ../../src/Translations/AdminTranslations.php:412, +#: ../../src/Translations/AdminTranslations.php:418 msgid "The buyer" msgstr "El comprador" -#: ../../src/Translations/AdminTranslations.php:412 +#: ../../src/Translations/AdminTranslations.php:413 msgid "will be automatically redirected to the store" msgstr "será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:418 +#: ../../src/Translations/AdminTranslations.php:419 msgid "will not be automatically redirected to the store" msgstr "no será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:424, -#: ../../src/Translations/AdminTranslations.php:430, -#: ../../src/Translations/AdminTranslations.php:640, -#: ../../src/Translations/AdminTranslations.php:646 +#: ../../src/Translations/AdminTranslations.php:425, +#: ../../src/Translations/AdminTranslations.php:431, +#: ../../src/Translations/AdminTranslations.php:641, +#: ../../src/Translations/AdminTranslations.php:647 msgid "Pending payments" msgstr "Los pagos pendientes" -#: ../../src/Translations/AdminTranslations.php:425, -#: ../../src/Translations/AdminTranslations.php:641 +#: ../../src/Translations/AdminTranslations.php:426, +#: ../../src/Translations/AdminTranslations.php:642 msgid "will be automatically declined" msgstr "se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:431, -#: ../../src/Translations/AdminTranslations.php:647 +#: ../../src/Translations/AdminTranslations.php:432, +#: ../../src/Translations/AdminTranslations.php:648 msgid "will not be automatically declined" msgstr "no se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:435, -#: ../../src/Translations/AdminTranslations.php:450 +#: ../../src/Translations/AdminTranslations.php:436, +#: ../../src/Translations/AdminTranslations.php:451 msgid "Your saved cards or money in Mercado Pago" msgstr "Compras con tarjetas guardadas o saldo en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:436, -#: ../../src/Translations/AdminTranslations.php:438 +#: ../../src/Translations/AdminTranslations.php:437, +#: ../../src/Translations/AdminTranslations.php:439 msgid "Debit, Credit and invoice in Mercado Pago environment" msgstr "Débito, crédito y efectivo, en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:437 +#: ../../src/Translations/AdminTranslations.php:438 msgid "Mercado Pago - Checkout Pro" msgstr "Mercado Pago - Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:439 +#: ../../src/Translations/AdminTranslations.php:440 msgid "Checkout Pro" msgstr "Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:440 +#: ../../src/Translations/AdminTranslations.php:441 msgid "" "With Checkout Pro you sell with all the safety inside Mercado Pago " "environment." @@ -632,23 +642,13 @@ msgstr "" "Con el Checkout Pro, podrás vender con toda la seguridad, dentro de Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:441, -#: ../../src/Translations/AdminTranslations.php:555, -#: ../../src/Translations/AdminTranslations.php:720, -#: ../../src/Translations/AdminTranslations.php:781, -#: ../../src/Translations/AdminTranslations.php:861 -msgid "Mercado Pago plugin general settings" -msgstr "Configuraciones generales del plugin de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:442, #: ../../src/Translations/AdminTranslations.php:556, -#: ../../src/Translations/AdminTranslations.php:658, #: ../../src/Translations/AdminTranslations.php:721, #: ../../src/Translations/AdminTranslations.php:782, #: ../../src/Translations/AdminTranslations.php:862 -msgid "" -"Set the deadlines and fees, test your store or access the Plugin manual." -msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." +msgid "Mercado Pago plugin general settings" +msgstr "Configuraciones generales del plugin de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:443, #: ../../src/Translations/AdminTranslations.php:557, @@ -656,16 +656,26 @@ msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:722, #: ../../src/Translations/AdminTranslations.php:783, #: ../../src/Translations/AdminTranslations.php:863 -msgid "Go to Settings" -msgstr "Ir a Configuraciones" +msgid "" +"Set the deadlines and fees, test your store or access the Plugin manual." +msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:444, +#: ../../src/Translations/AdminTranslations.php:558, #: ../../src/Translations/AdminTranslations.php:660, +#: ../../src/Translations/AdminTranslations.php:723, +#: ../../src/Translations/AdminTranslations.php:784, #: ../../src/Translations/AdminTranslations.php:864 +msgid "Go to Settings" +msgstr "Ir a Configuraciones" + +#: ../../src/Translations/AdminTranslations.php:445, +#: ../../src/Translations/AdminTranslations.php:661, +#: ../../src/Translations/AdminTranslations.php:865 msgid "Enable the checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:445 +#: ../../src/Translations/AdminTranslations.php:446 msgid "" "By disabling it, you will disable all payments from Mercado Pago Checkout at " "Mercado Pago website by redirect." @@ -673,40 +683,31 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago del checkout en el " "sitio web de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:448, -#: ../../src/Translations/AdminTranslations.php:566, -#: ../../src/Translations/AdminTranslations.php:664, -#: ../../src/Translations/AdminTranslations.php:727, -#: ../../src/Translations/AdminTranslations.php:788, -#: ../../src/Translations/AdminTranslations.php:868 -msgid "Title in the store Checkout" -msgstr "Título en el checkout de la tienda" - #: ../../src/Translations/AdminTranslations.php:449, +#: ../../src/Translations/AdminTranslations.php:567, #: ../../src/Translations/AdminTranslations.php:665, #: ../../src/Translations/AdminTranslations.php:728, #: ../../src/Translations/AdminTranslations.php:789, #: ../../src/Translations/AdminTranslations.php:869 +msgid "Title in the store Checkout" +msgstr "Título en el checkout de la tienda" + +#: ../../src/Translations/AdminTranslations.php:450, +#: ../../src/Translations/AdminTranslations.php:666, +#: ../../src/Translations/AdminTranslations.php:729, +#: ../../src/Translations/AdminTranslations.php:790, +#: ../../src/Translations/AdminTranslations.php:870 msgid "Change the display text in Checkout, maximum characters: 85" msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85" -#: ../../src/Translations/AdminTranslations.php:451, -#: ../../src/Translations/AdminTranslations.php:569, -#: ../../src/Translations/AdminTranslations.php:667, -#: ../../src/Translations/AdminTranslations.php:730, -#: ../../src/Translations/AdminTranslations.php:791, -#: ../../src/Translations/AdminTranslations.php:871 -msgid "The text inserted here will not be translated to other languages" -msgstr "El texto insertado aquí no se traducirá a otros idiomas" - #: ../../src/Translations/AdminTranslations.php:452, #: ../../src/Translations/AdminTranslations.php:570, -#: ../../src/Translations/AdminTranslations.php:671, +#: ../../src/Translations/AdminTranslations.php:668, #: ../../src/Translations/AdminTranslations.php:731, #: ../../src/Translations/AdminTranslations.php:792, -#: ../../src/Translations/AdminTranslations.php:885 -msgid "Convert Currency" -msgstr "Convertir moneda" +#: ../../src/Translations/AdminTranslations.php:872 +msgid "The text inserted here will not be translated to other languages" +msgstr "El texto insertado aquí no se traducirá a otros idiomas" #: ../../src/Translations/AdminTranslations.php:453, #: ../../src/Translations/AdminTranslations.php:571, @@ -714,6 +715,15 @@ msgstr "Convertir moneda" #: ../../src/Translations/AdminTranslations.php:732, #: ../../src/Translations/AdminTranslations.php:793, #: ../../src/Translations/AdminTranslations.php:886 +msgid "Convert Currency" +msgstr "Convertir moneda" + +#: ../../src/Translations/AdminTranslations.php:454, +#: ../../src/Translations/AdminTranslations.php:572, +#: ../../src/Translations/AdminTranslations.php:673, +#: ../../src/Translations/AdminTranslations.php:733, +#: ../../src/Translations/AdminTranslations.php:794, +#: ../../src/Translations/AdminTranslations.php:887 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." @@ -721,100 +731,100 @@ 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." -#: ../../src/Translations/AdminTranslations.php:456 +#: ../../src/Translations/AdminTranslations.php:457 msgid "Choose the payment methods you accept in your store" msgstr "Elige los medios de pago que se aceptan en la tienda" -#: ../../src/Translations/AdminTranslations.php:457 +#: ../../src/Translations/AdminTranslations.php:458 msgid "Enable the payment methods available to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../src/Translations/AdminTranslations.php:458 +#: ../../src/Translations/AdminTranslations.php:459 msgid "Credit Cards" msgstr "Tarjetas de crédito" -#: ../../src/Translations/AdminTranslations.php:459 +#: ../../src/Translations/AdminTranslations.php:460 msgid "Debit Cards" msgstr "Tarjetas de débito" -#: ../../src/Translations/AdminTranslations.php:460 +#: ../../src/Translations/AdminTranslations.php:461 msgid "Other Payment Methods" msgstr "Otros medios" -#: ../../src/Translations/AdminTranslations.php:461 +#: ../../src/Translations/AdminTranslations.php:462 msgid "Maximum number of installments" msgstr "Máximo de cuotas" -#: ../../src/Translations/AdminTranslations.php:462 +#: ../../src/Translations/AdminTranslations.php:463 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?" -#: ../../src/Translations/AdminTranslations.php:463 +#: ../../src/Translations/AdminTranslations.php:464 msgid "1 installment" msgstr "1 cuota" -#: ../../src/Translations/AdminTranslations.php:464 +#: ../../src/Translations/AdminTranslations.php:465 msgid "2 installments" msgstr "2 cuotas" -#: ../../src/Translations/AdminTranslations.php:465 +#: ../../src/Translations/AdminTranslations.php:466 msgid "3 installments" msgstr "3 cuotas" -#: ../../src/Translations/AdminTranslations.php:466 +#: ../../src/Translations/AdminTranslations.php:467 msgid "4 installments" msgstr "4 cuotas" -#: ../../src/Translations/AdminTranslations.php:467 +#: ../../src/Translations/AdminTranslations.php:468 msgid "5 installments" msgstr "5 cuotas" -#: ../../src/Translations/AdminTranslations.php:468 +#: ../../src/Translations/AdminTranslations.php:469 msgid "6 installments" msgstr "6 cuotas" -#: ../../src/Translations/AdminTranslations.php:469 +#: ../../src/Translations/AdminTranslations.php:470 msgid "10 installments" msgstr "10 cuotas" -#: ../../src/Translations/AdminTranslations.php:470 +#: ../../src/Translations/AdminTranslations.php:471 msgid "12 installments" msgstr "12 cuotas" -#: ../../src/Translations/AdminTranslations.php:471 +#: ../../src/Translations/AdminTranslations.php:472 msgid "15 installments" msgstr "15 cuotas" -#: ../../src/Translations/AdminTranslations.php:472 +#: ../../src/Translations/AdminTranslations.php:473 msgid "18 installments" msgstr "18 cuotas" -#: ../../src/Translations/AdminTranslations.php:473 +#: ../../src/Translations/AdminTranslations.php:474 msgid "24 installments" msgstr "24 cuotas" -#: ../../src/Translations/AdminTranslations.php:474, -#: ../../src/Translations/AdminTranslations.php:584 +#: ../../src/Translations/AdminTranslations.php:475, +#: ../../src/Translations/AdminTranslations.php:585 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:475, -#: ../../src/Translations/AdminTranslations.php:585, -#: ../../src/Translations/AdminTranslations.php:681, -#: ../../src/Translations/AdminTranslations.php:738, -#: ../../src/Translations/AdminTranslations.php:797, -#: ../../src/Translations/AdminTranslations.php:893 +#: ../../src/Translations/AdminTranslations.php:476, +#: ../../src/Translations/AdminTranslations.php:586, +#: ../../src/Translations/AdminTranslations.php:682, +#: ../../src/Translations/AdminTranslations.php:739, +#: ../../src/Translations/AdminTranslations.php:798, +#: ../../src/Translations/AdminTranslations.php:894 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." -#: ../../src/Translations/AdminTranslations.php:476 +#: ../../src/Translations/AdminTranslations.php:477 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../src/Translations/AdminTranslations.php:477 +#: ../../src/Translations/AdminTranslations.php:478 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -822,39 +832,39 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../src/Translations/AdminTranslations.php:478 +#: ../../src/Translations/AdminTranslations.php:479 msgid "Redirect" msgstr "Redirect" -#: ../../src/Translations/AdminTranslations.php:479 +#: ../../src/Translations/AdminTranslations.php:480 msgid "Modal" msgstr "Modal" -#: ../../src/Translations/AdminTranslations.php:480 +#: ../../src/Translations/AdminTranslations.php:481 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../src/Translations/AdminTranslations.php:481 +#: ../../src/Translations/AdminTranslations.php:482 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?" -#: ../../src/Translations/AdminTranslations.php:484 +#: ../../src/Translations/AdminTranslations.php:485 msgid "Success URL" msgstr "URL de éxito" -#: ../../src/Translations/AdminTranslations.php:485 +#: ../../src/Translations/AdminTranslations.php:486 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." -#: ../../src/Translations/AdminTranslations.php:486 +#: ../../src/Translations/AdminTranslations.php:487 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../src/Translations/AdminTranslations.php:487 +#: ../../src/Translations/AdminTranslations.php:488 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 " @@ -864,11 +874,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../src/Translations/AdminTranslations.php:488 +#: ../../src/Translations/AdminTranslations.php:489 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../src/Translations/AdminTranslations.php:489 +#: ../../src/Translations/AdminTranslations.php:490 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -876,13 +886,13 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../src/Translations/AdminTranslations.php:490, -#: ../../src/Translations/AdminTranslations.php:682 +#: ../../src/Translations/AdminTranslations.php:491, +#: ../../src/Translations/AdminTranslations.php:683 msgid "Automatic decline of payments without instant approval" msgstr "Rechazo automático de pagos sin aprobación instantanea" -#: ../../src/Translations/AdminTranslations.php:491, -#: ../../src/Translations/AdminTranslations.php:683 +#: ../../src/Translations/AdminTranslations.php:492, +#: ../../src/Translations/AdminTranslations.php:684 msgid "" "Enable it if you want to automatically decline payments that are not " "instantly approved by banks or other institutions." @@ -890,55 +900,46 @@ msgstr "" "Actívalo si quieres rechazar automáticamente los pagos que no son aprobados " "instantáneamente por bancos u otros compradores." -#: ../../src/Translations/AdminTranslations.php:492 +#: ../../src/Translations/AdminTranslations.php:493 msgid "Debit, Credit and Invoice in Mercado Pago environment." msgstr "Débito, crédito y efectivo, en Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:495, -#: ../../src/Translations/AdminTranslations.php:586, -#: ../../src/Translations/AdminTranslations.php:686, -#: ../../src/Translations/AdminTranslations.php:747, -#: ../../src/Translations/AdminTranslations.php:806, -#: ../../src/Translations/AdminTranslations.php:894 -msgid "Discount in Mercado Pago Checkouts" -msgstr "Descuento en los checkouts de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:496, #: ../../src/Translations/AdminTranslations.php:587, #: ../../src/Translations/AdminTranslations.php:687, #: ../../src/Translations/AdminTranslations.php:748, #: ../../src/Translations/AdminTranslations.php:807, #: ../../src/Translations/AdminTranslations.php:895 -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." +msgid "Discount in Mercado Pago Checkouts" +msgstr "Descuento en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:497, -#: ../../src/Translations/AdminTranslations.php:500, #: ../../src/Translations/AdminTranslations.php:588, -#: ../../src/Translations/AdminTranslations.php:591, #: ../../src/Translations/AdminTranslations.php:688, -#: ../../src/Translations/AdminTranslations.php:691, #: ../../src/Translations/AdminTranslations.php:749, -#: ../../src/Translations/AdminTranslations.php:752, #: ../../src/Translations/AdminTranslations.php:808, -#: ../../src/Translations/AdminTranslations.php:811, -#: ../../src/Translations/AdminTranslations.php:896, -#: ../../src/Translations/AdminTranslations.php:899 -msgid "Activate and show this information on Mercado Pago Checkout" -msgstr "Activar y mostrar esa información en el checkout Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:896 +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." #: ../../src/Translations/AdminTranslations.php:498, +#: ../../src/Translations/AdminTranslations.php:501, #: ../../src/Translations/AdminTranslations.php:589, +#: ../../src/Translations/AdminTranslations.php:592, #: ../../src/Translations/AdminTranslations.php:689, +#: ../../src/Translations/AdminTranslations.php:692, #: ../../src/Translations/AdminTranslations.php:750, +#: ../../src/Translations/AdminTranslations.php:753, #: ../../src/Translations/AdminTranslations.php:809, -#: ../../src/Translations/AdminTranslations.php:897 -msgid "Commission in Mercado Pago Checkouts" -msgstr "Comisiones en los checkouts de Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:812, +#: ../../src/Translations/AdminTranslations.php:897, +#: ../../src/Translations/AdminTranslations.php:900 +msgid "Activate and show this information on Mercado Pago Checkout" +msgstr "Activar y mostrar esa información en el checkout Mercado Pago" #: ../../src/Translations/AdminTranslations.php:499, #: ../../src/Translations/AdminTranslations.php:590, @@ -946,6 +947,15 @@ msgstr "Comisiones en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:751, #: ../../src/Translations/AdminTranslations.php:810, #: ../../src/Translations/AdminTranslations.php:898 +msgid "Commission in Mercado Pago Checkouts" +msgstr "Comisiones en los checkouts de Mercado Pago" + +#: ../../src/Translations/AdminTranslations.php:500, +#: ../../src/Translations/AdminTranslations.php:591, +#: ../../src/Translations/AdminTranslations.php:691, +#: ../../src/Translations/AdminTranslations.php:752, +#: ../../src/Translations/AdminTranslations.php:811, +#: ../../src/Translations/AdminTranslations.php:899 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -953,35 +963,35 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:501 +#: ../../src/Translations/AdminTranslations.php:502 msgid "This seems to be an invalid URL" msgstr "Esto parece ser una URL no válida" -#: ../../src/Translations/AdminTranslations.php:514, -#: ../../src/Translations/AdminTranslations.php:520 +#: ../../src/Translations/AdminTranslations.php:515, +#: ../../src/Translations/AdminTranslations.php:521 msgid "Payment in installments without card in the store checkout is" msgstr "Cuotas sin tarjeta en el checkout de la tienda está" -#: ../../src/Translations/AdminTranslations.php:538, -#: ../../src/Translations/AdminTranslations.php:544 +#: ../../src/Translations/AdminTranslations.php:539, +#: ../../src/Translations/AdminTranslations.php:545 msgid "The installments without card component is" msgstr "El componente de cuotas sin tarjeta está" -#: ../../src/Translations/AdminTranslations.php:549, -#: ../../src/Translations/AdminTranslations.php:553 +#: ../../src/Translations/AdminTranslations.php:550, +#: ../../src/Translations/AdminTranslations.php:554 msgid "Installments without card" msgstr "Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:550, -#: ../../src/Translations/AdminTranslations.php:552 +#: ../../src/Translations/AdminTranslations.php:551, +#: ../../src/Translations/AdminTranslations.php:553 msgid "Customers who buy on spot and pay later in up to 12 installments" msgstr "Tus clientes compran al instante y pagan después en hasta 12 cuotas" -#: ../../src/Translations/AdminTranslations.php:551 +#: ../../src/Translations/AdminTranslations.php:552 msgid "Mercado Pago - Installments without card" msgstr "Mercado Pago - Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:554 +#: ../../src/Translations/AdminTranslations.php:555 msgid "" "Reach millions of buyers by offering Mercado Credito as a payment method. " "Our flexible payment options give your customers the possibility to buy " @@ -995,11 +1005,11 @@ msgstr "" "necesidad de utilizar una tarjeta. Para tu negocio, la aprobación de la " "compra es inmediata y está garantizada." -#: ../../src/Translations/AdminTranslations.php:558 +#: ../../src/Translations/AdminTranslations.php:559 msgid "Activate installments without card in your store checkout" msgstr "Activar cuotas sin tarjeta en el checkout de tu tienda" -#: ../../src/Translations/AdminTranslations.php:559 +#: ../../src/Translations/AdminTranslations.php:560 msgid "" "Offer the option to pay in installments without card directly from your " "store's checkout." @@ -1007,37 +1017,37 @@ msgstr "" "Ofrece la opción de pago en cuotas sin tarjeta directo desde el checkout de " "tu tienda." -#: ../../src/Translations/AdminTranslations.php:562 +#: ../../src/Translations/AdminTranslations.php:563 msgid "Checkout visualization" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:563, -#: ../../src/Translations/AdminTranslations.php:583 +#: ../../src/Translations/AdminTranslations.php:564, +#: ../../src/Translations/AdminTranslations.php:584 msgid "Check below how this feature will be displayed to your customers:" msgstr "A continuación verás cómo este recurso aparecerá para tus clientes:" -#: ../../src/Translations/AdminTranslations.php:564 +#: ../../src/Translations/AdminTranslations.php:565 msgid "Checkout Preview" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:565 +#: ../../src/Translations/AdminTranslations.php:566 msgid "PREVIEW" msgstr "DEMO" -#: ../../src/Translations/AdminTranslations.php:567 +#: ../../src/Translations/AdminTranslations.php:568 msgid "It is possible to edit the title. Maximum of 85 characters." msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85." -#: ../../src/Translations/AdminTranslations.php:568 +#: ../../src/Translations/AdminTranslations.php:569 msgid "Checkout without card" msgstr "Hasta 12 pagos sin tarjeta con Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:574 +#: ../../src/Translations/AdminTranslations.php:575 msgid "" "Inform your customers about the option of paying in installments without card" msgstr "Informa a tus clientes sobre la opción de cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:575 +#: ../../src/Translations/AdminTranslations.php:576 msgid "" "By activating the installments without card component, you increase your " "chances of selling." @@ -1045,62 +1055,62 @@ msgstr "" "Al activar el componente de cuotas sin tarjeta,, aumentarás tus " "posibilidades de venta." -#: ../../src/Translations/AdminTranslations.php:578 +#: ../../src/Translations/AdminTranslations.php:579 msgid "Banner on the product page | Computer version" msgstr "Componente en la página del producto | Versión para computadora" -#: ../../src/Translations/AdminTranslations.php:579 +#: ../../src/Translations/AdminTranslations.php:580 msgid "Banner on the product page | Cellphone version" msgstr "Componente en la página del producto | Versión para celular" -#: ../../src/Translations/AdminTranslations.php:580 +#: ../../src/Translations/AdminTranslations.php:581 msgid "Computer" msgstr "Computadora" -#: ../../src/Translations/AdminTranslations.php:581 +#: ../../src/Translations/AdminTranslations.php:582 msgid "Mobile" msgstr "Celular" -#: ../../src/Translations/AdminTranslations.php:582 +#: ../../src/Translations/AdminTranslations.php:583 msgid "Component visualization" msgstr "Visualización del componente" -#: ../../src/Translations/AdminTranslations.php:604, -#: ../../src/Translations/AdminTranslations.php:610 +#: ../../src/Translations/AdminTranslations.php:605, +#: ../../src/Translations/AdminTranslations.php:611 msgid "Transparent Checkout for credit cards is" msgstr "El Checkout Transparente de las tarjetas de crédito está" -#: ../../src/Translations/AdminTranslations.php:628, -#: ../../src/Translations/AdminTranslations.php:634 +#: ../../src/Translations/AdminTranslations.php:629, +#: ../../src/Translations/AdminTranslations.php:635 msgid "Payments via Mercado Pago accounts are" msgstr "Los pagos a través de la cuenta de Mercado Pago están" -#: ../../src/Translations/AdminTranslations.php:651, -#: ../../src/Translations/AdminTranslations.php:666 +#: ../../src/Translations/AdminTranslations.php:652, +#: ../../src/Translations/AdminTranslations.php:667 msgid "Debit and Credit" msgstr "Débito e crédito" -#: ../../src/Translations/AdminTranslations.php:652, -#: ../../src/Translations/AdminTranslations.php:654, -#: ../../src/Translations/AdminTranslations.php:716, -#: ../../src/Translations/AdminTranslations.php:777, -#: ../../src/Translations/AdminTranslations.php:856, -#: ../../src/Translations/AdminTranslations.php:858 -msgid "Transparent Checkout in your store environment" -msgstr "Checkout Transparente en tu tienda" - #: ../../src/Translations/AdminTranslations.php:653, +#: ../../src/Translations/AdminTranslations.php:655, #: ../../src/Translations/AdminTranslations.php:717, #: ../../src/Translations/AdminTranslations.php:778, -#: ../../src/Translations/AdminTranslations.php:857 +#: ../../src/Translations/AdminTranslations.php:857, +#: ../../src/Translations/AdminTranslations.php:859 +msgid "Transparent Checkout in your store environment" +msgstr "Checkout Transparente en tu tienda" + +#: ../../src/Translations/AdminTranslations.php:654, +#: ../../src/Translations/AdminTranslations.php:718, +#: ../../src/Translations/AdminTranslations.php:779, +#: ../../src/Translations/AdminTranslations.php:858 msgid "Mercado pago - Customized Checkout" msgstr "Mercado Pago - Checkout Personalizado" -#: ../../src/Translations/AdminTranslations.php:655 +#: ../../src/Translations/AdminTranslations.php:656 msgid "Transparent Checkout | Credit card" msgstr "Checkout Transparente | Tarjeta de Crédito" -#: ../../src/Translations/AdminTranslations.php:656 +#: ../../src/Translations/AdminTranslations.php:657 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and with the security from Mercado Pago." @@ -1108,11 +1118,11 @@ msgstr "" "Con el Checkout Transparente, puedes vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:657 +#: ../../src/Translations/AdminTranslations.php:658 msgid "Mercado Pago Plugin general settings" msgstr "Configuraciones generales del plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:661 +#: ../../src/Translations/AdminTranslations.php:662 msgid "" "By disabling it, you will disable all credit cards payments from Mercado " "Pago Transparent Checkout." @@ -1120,11 +1130,11 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:668 +#: ../../src/Translations/AdminTranslations.php:669 msgid "Installments Fees" msgstr "Tasas de pago en cuotas" -#: ../../src/Translations/AdminTranslations.php:669 +#: ../../src/Translations/AdminTranslations.php:670 msgid "" "Set installment fees and whether they will be charged from the store or from " "the buyer." @@ -1132,15 +1142,15 @@ msgstr "" "Configura las tasas de las cuotas y si se las cobrarán a la tienda o al " "comprador." -#: ../../src/Translations/AdminTranslations.php:670 +#: ../../src/Translations/AdminTranslations.php:671 msgid "Set fees" msgstr "Configurar tasas" -#: ../../src/Translations/AdminTranslations.php:675 +#: ../../src/Translations/AdminTranslations.php:676 msgid "Payments via Mercado Pago account" msgstr "Pagos a través de la cuenta de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:676 +#: ../../src/Translations/AdminTranslations.php:677 msgid "" "Your customers pay faster with saved cards, money balance or other available " "methods in their Mercado Pago accounts." @@ -1148,26 +1158,26 @@ msgstr "" "Tus clientes pagan más rápido con tarjetas guardadas, dinero disponible o " "con otros medios disponibles en sus cuentas de MP." -#: ../../src/Translations/AdminTranslations.php:679 +#: ../../src/Translations/AdminTranslations.php:680 msgid "Check an example of how it will appear in your store:" msgstr "Conoce un ejemplo de cómo aparecerá en la tienda:" -#: ../../src/Translations/AdminTranslations.php:680 +#: ../../src/Translations/AdminTranslations.php:681 msgid "Advanced configuration of the personalized payment experience" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:715, -#: ../../src/Translations/AdminTranslations.php:729 +#: ../../src/Translations/AdminTranslations.php:716, +#: ../../src/Translations/AdminTranslations.php:730 msgid "Invoice" msgstr "Efectivo" -#: ../../src/Translations/AdminTranslations.php:718 +#: ../../src/Translations/AdminTranslations.php:719 msgid "Transparent Checkout | Invoice or Loterica" msgstr "Checkout Transparente | Efectivo" -#: ../../src/Translations/AdminTranslations.php:719, -#: ../../src/Translations/AdminTranslations.php:780, -#: ../../src/Translations/AdminTranslations.php:860 +#: ../../src/Translations/AdminTranslations.php:720, +#: ../../src/Translations/AdminTranslations.php:781, +#: ../../src/Translations/AdminTranslations.php:861 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and all the safety from Mercado Pago." @@ -1175,12 +1185,12 @@ msgstr "" "Con el Checkout Transparente, podrás vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:723, -#: ../../src/Translations/AdminTranslations.php:784 +#: ../../src/Translations/AdminTranslations.php:724, +#: ../../src/Translations/AdminTranslations.php:785 msgid "Enable the Checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:724 +#: ../../src/Translations/AdminTranslations.php:725 msgid "" "By disabling it, you will disable all invoice payments from Mercado Pago " "Transparent Checkout." @@ -1188,34 +1198,34 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago en efectivo en el " "Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:725 +#: ../../src/Translations/AdminTranslations.php:726 msgid "The transparent checkout for tickets is enabled." msgstr "El Checkout Transparente está activo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:726 +#: ../../src/Translations/AdminTranslations.php:727 msgid "The transparent checkout for tickets is disabled." msgstr "El Checkout Transparente está inactivo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:735 +#: ../../src/Translations/AdminTranslations.php:736 msgid "Payment Due" msgstr "Fecha de pago" -#: ../../src/Translations/AdminTranslations.php:736 +#: ../../src/Translations/AdminTranslations.php:737 msgid "In how many days will cash payments expire." msgstr "En cuántos días vencerán los pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:737 +#: ../../src/Translations/AdminTranslations.php:738 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../src/Translations/AdminTranslations.php:739, -#: ../../src/Translations/AdminTranslations.php:798 +#: ../../src/Translations/AdminTranslations.php:740, +#: ../../src/Translations/AdminTranslations.php:799 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../src/Translations/AdminTranslations.php:740, -#: ../../src/Translations/AdminTranslations.php:799 +#: ../../src/Translations/AdminTranslations.php:741, +#: ../../src/Translations/AdminTranslations.php:800 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 " @@ -1225,41 +1235,41 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../src/Translations/AdminTranslations.php:741, -#: ../../src/Translations/AdminTranslations.php:800 +#: ../../src/Translations/AdminTranslations.php:742, +#: ../../src/Translations/AdminTranslations.php:801 msgid "Reduce inventory is enabled." msgstr "Reducir inventario está activo." -#: ../../src/Translations/AdminTranslations.php:742, -#: ../../src/Translations/AdminTranslations.php:801 +#: ../../src/Translations/AdminTranslations.php:743, +#: ../../src/Translations/AdminTranslations.php:802 msgid "Reduce inventory is disabled." msgstr "Reducir inventario está inactivo." -#: ../../src/Translations/AdminTranslations.php:744, -#: ../../src/Translations/AdminTranslations.php:803 +#: ../../src/Translations/AdminTranslations.php:745, +#: ../../src/Translations/AdminTranslations.php:804 msgid "Enable the available payment methods" msgstr "Habilita los medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:745, -#: ../../src/Translations/AdminTranslations.php:804 +#: ../../src/Translations/AdminTranslations.php:746, +#: ../../src/Translations/AdminTranslations.php:805 msgid "Choose the available payment methods in your store." msgstr "Elige los medios de pago que se aceptan en la tienda." -#: ../../src/Translations/AdminTranslations.php:746, -#: ../../src/Translations/AdminTranslations.php:805 +#: ../../src/Translations/AdminTranslations.php:747, +#: ../../src/Translations/AdminTranslations.php:806 msgid "All payment methods" msgstr "Medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:776, -#: ../../src/Translations/AdminTranslations.php:790 +#: ../../src/Translations/AdminTranslations.php:777, +#: ../../src/Translations/AdminTranslations.php:791 msgid "PSE" msgstr "PSE" -#: ../../src/Translations/AdminTranslations.php:779 +#: ../../src/Translations/AdminTranslations.php:780 msgid "Transparent Checkout PSE" msgstr "Pago transparente PSE" -#: ../../src/Translations/AdminTranslations.php:785 +#: ../../src/Translations/AdminTranslations.php:786 msgid "" "By deactivating it, you will disable PSE payments from Mercado Pago " "Transparent Checkout." @@ -1267,49 +1277,49 @@ msgstr "" "Al desactivarlo, desactivará los pagos PSE de Mercado Pago Transparente " "Checkout." -#: ../../src/Translations/AdminTranslations.php:786 +#: ../../src/Translations/AdminTranslations.php:787 msgid "The transparent checkout for PSE is enabled." msgstr "El Checkout Transparente está activo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:787 +#: ../../src/Translations/AdminTranslations.php:788 msgid "The transparent checkout for PSE is disabled." msgstr "El Checkout Transparente está inactivo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:796 +#: ../../src/Translations/AdminTranslations.php:797 msgid "Advanced configuration of the PSE payment experience" msgstr "Configuración avanzada de la experiencia de pago PSE" -#: ../../src/Translations/AdminTranslations.php:824, -#: ../../src/Translations/AdminTranslations.php:830 +#: ../../src/Translations/AdminTranslations.php:825, +#: ../../src/Translations/AdminTranslations.php:831 msgid "The transparent checkout for Pix payment is" msgstr "El Checkout Transparente está" -#: ../../src/Translations/AdminTranslations.php:848 +#: ../../src/Translations/AdminTranslations.php:849 msgid "Go to the" msgstr "Ve al área" -#: ../../src/Translations/AdminTranslations.php:849 +#: ../../src/Translations/AdminTranslations.php:850 msgid "Your Profile" msgstr "Tu Perfil" -#: ../../src/Translations/AdminTranslations.php:850 +#: ../../src/Translations/AdminTranslations.php:851 msgid "area and choose the" msgstr "y elige la sección" -#: ../../src/Translations/AdminTranslations.php:851 +#: ../../src/Translations/AdminTranslations.php:852 msgid "Your Pix Keys section" msgstr "Tus claves Pix" -#: ../../src/Translations/AdminTranslations.php:855, -#: ../../src/Translations/AdminTranslations.php:870 +#: ../../src/Translations/AdminTranslations.php:856, +#: ../../src/Translations/AdminTranslations.php:871 msgid "Pix" msgstr "Pix" -#: ../../src/Translations/AdminTranslations.php:859 +#: ../../src/Translations/AdminTranslations.php:860 msgid "Transparent Checkout | Pix" msgstr "Checkout Transparente | Pix" -#: ../../src/Translations/AdminTranslations.php:865 +#: ../../src/Translations/AdminTranslations.php:866 msgid "" "By disabling it, you will disable all Pix payments from Mercado Pago " "Transparent Checkout." @@ -1317,85 +1327,85 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:872 +#: ../../src/Translations/AdminTranslations.php:873 msgid "Expiration for payments via Pix" msgstr "Vencimiento para pagos con Pix" -#: ../../src/Translations/AdminTranslations.php:873 +#: ../../src/Translations/AdminTranslations.php:874 msgid "Set the limit in minutes for your clients to pay via Pix." msgstr "" "Define el límite de minutos para que tus clientes puedan pagar con Pix." -#: ../../src/Translations/AdminTranslations.php:874 +#: ../../src/Translations/AdminTranslations.php:875 msgid "15 minutes" msgstr "15 minutos" -#: ../../src/Translations/AdminTranslations.php:875 +#: ../../src/Translations/AdminTranslations.php:876 msgid "30 minutes (recommended)" msgstr "30 minutos (recomendado)" -#: ../../src/Translations/AdminTranslations.php:876 +#: ../../src/Translations/AdminTranslations.php:877 msgid "60 minutes" msgstr "60 minutos" -#: ../../src/Translations/AdminTranslations.php:877 +#: ../../src/Translations/AdminTranslations.php:878 msgid "12 hours" msgstr "12 horas" -#: ../../src/Translations/AdminTranslations.php:878 +#: ../../src/Translations/AdminTranslations.php:879 msgid "24 hours" msgstr "24 horas" -#: ../../src/Translations/AdminTranslations.php:879 +#: ../../src/Translations/AdminTranslations.php:880 msgid "2 days" msgstr "2 días" -#: ../../src/Translations/AdminTranslations.php:880 +#: ../../src/Translations/AdminTranslations.php:881 msgid "3 days" msgstr "3 días" -#: ../../src/Translations/AdminTranslations.php:881 +#: ../../src/Translations/AdminTranslations.php:882 msgid "4 days" msgstr "4 días" -#: ../../src/Translations/AdminTranslations.php:882 +#: ../../src/Translations/AdminTranslations.php:883 msgid "5 days" msgstr "5 días" -#: ../../src/Translations/AdminTranslations.php:883 +#: ../../src/Translations/AdminTranslations.php:884 msgid "6 days" msgstr "6 días" -#: ../../src/Translations/AdminTranslations.php:884 +#: ../../src/Translations/AdminTranslations.php:885 msgid "7 days" msgstr "7 días" -#: ../../src/Translations/AdminTranslations.php:889 +#: ../../src/Translations/AdminTranslations.php:890 msgid "Would you like to know how Pix works?" msgstr "¿Quieres saber cómo funciona Pix?" -#: ../../src/Translations/AdminTranslations.php:890 +#: ../../src/Translations/AdminTranslations.php:891 msgid "" "We have a dedicated page where we explain how it works and its advantages." msgstr "Creamos una página que explica su funcionamiento y sus vantajas." -#: ../../src/Translations/AdminTranslations.php:891 +#: ../../src/Translations/AdminTranslations.php:892 msgid "Find out more about Pix" msgstr "Saber más sobre Pix" -#: ../../src/Translations/AdminTranslations.php:892 +#: ../../src/Translations/AdminTranslations.php:893 msgid "Advanced configuration of the Pix experience" msgstr "Configuración avanzada de la experiencia Pix" -#: ../../src/Translations/AdminTranslations.php:900 +#: ../../src/Translations/AdminTranslations.php:901 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." -#: ../../src/Translations/AdminTranslations.php:901 +#: ../../src/Translations/AdminTranslations.php:902 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../src/Translations/AdminTranslations.php:903 +#: ../../src/Translations/AdminTranslations.php:904 msgid "" "Choose which data to register as Pix keys. After registering, you can set up " "Pix in your checkout." @@ -1403,7 +1413,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el Pix en tu checkout." -#: ../../src/Translations/AdminTranslations.php:904 +#: ../../src/Translations/AdminTranslations.php:905 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1411,7 +1421,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../src/Translations/AdminTranslations.php:905 +#: ../../src/Translations/AdminTranslations.php:906 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1419,11 +1429,11 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../src/Translations/AdminTranslations.php:906 +#: ../../src/Translations/AdminTranslations.php:907 msgid "Learn more about Pix" msgstr "Más información sobre Pix" -#: ../../src/Translations/AdminTranslations.php:907 +#: ../../src/Translations/AdminTranslations.php:908 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1431,82 +1441,82 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../src/Translations/AdminTranslations.php:908 +#: ../../src/Translations/AdminTranslations.php:909 msgid "click here." msgstr "haz clic aquí." -#: ../../src/Translations/AdminTranslations.php:921 +#: ../../src/Translations/AdminTranslations.php:922 msgid "To enable test mode" msgstr "Para activar el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:923 +#: ../../src/Translations/AdminTranslations.php:924 msgid "copy your test credentials" msgstr "copia tus credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:924 +#: ../../src/Translations/AdminTranslations.php:925 msgid "and paste them above in section 1 of this page" msgstr "y pégalas en la sección 1 de esta página" -#: ../../src/Translations/AdminTranslations.php:929 +#: ../../src/Translations/AdminTranslations.php:930 msgid "Create your" msgstr "Crea tu" -#: ../../src/Translations/AdminTranslations.php:931 +#: ../../src/Translations/AdminTranslations.php:932 msgid "test user" msgstr "usuario de prueba" -#: ../../src/Translations/AdminTranslations.php:932 +#: ../../src/Translations/AdminTranslations.php:933 msgid "" "(Optional. Can be used in Production Mode and Test Mode, to test payments)" msgstr "" "(Opcional. Se puede utilizar en modo de producción y en modo de prueba, para " "probar los pagos)" -#: ../../src/Translations/AdminTranslations.php:938 +#: ../../src/Translations/AdminTranslations.php:939 msgid "Use our test cards" msgstr "Utiliza nuestras tarjetas de prueba" -#: ../../src/Translations/AdminTranslations.php:939 +#: ../../src/Translations/AdminTranslations.php:940 msgid "never use real cards" msgstr "nunca utilices tarjetas reales" -#: ../../src/Translations/AdminTranslations.php:945 +#: ../../src/Translations/AdminTranslations.php:946 msgid "Visit your store" msgstr "Visita tu tienda" -#: ../../src/Translations/AdminTranslations.php:946 +#: ../../src/Translations/AdminTranslations.php:947 msgid "to test purchases" msgstr "para testear compras" -#: ../../src/Translations/AdminTranslations.php:950 +#: ../../src/Translations/AdminTranslations.php:951 msgid "4. Test your store before you sell" msgstr "4. Testea tu tienda antes de vender" -#: ../../src/Translations/AdminTranslations.php:951 +#: ../../src/Translations/AdminTranslations.php:952 msgid "Choose how you want to operate your store:" msgstr "Elige cómo quieres operar tu tienda:" -#: ../../src/Translations/AdminTranslations.php:952 +#: ../../src/Translations/AdminTranslations.php:953 msgid "Test Mode" msgstr "Modo Test" -#: ../../src/Translations/AdminTranslations.php:953 +#: ../../src/Translations/AdminTranslations.php:954 msgid "Sale Mode (Production)" msgstr "Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:954 +#: ../../src/Translations/AdminTranslations.php:955 msgid "Mercado Pago payment methods in Production Mode" msgstr "Medios de pago Mercado Pago en Modo Produción" -#: ../../src/Translations/AdminTranslations.php:955 +#: ../../src/Translations/AdminTranslations.php:956 msgid "Mercado Pago payment methods in Test Mode" msgstr "Medios de pago Mercado Pago en Modo Test" -#: ../../src/Translations/AdminTranslations.php:956 +#: ../../src/Translations/AdminTranslations.php:957 msgid "Enter test credentials" msgstr "Ingresa las credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:957 +#: ../../src/Translations/AdminTranslations.php:958 msgid "" "Test the experience in Test Mode and then enable the Sale Mode (Production) " "to sell." @@ -1514,114 +1524,114 @@ msgstr "" "Testea la experiencia en Modo Test. Luego activa el Modo Ventas (Producción) " "para realizar ventas." -#: ../../src/Translations/AdminTranslations.php:958 +#: ../../src/Translations/AdminTranslations.php:959 msgid "Mercado Pago Checkouts disabled for real collections." msgstr "Checkouts Mercado Pago inactivos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:959 +#: ../../src/Translations/AdminTranslations.php:960 msgid "Test Mode rules." msgstr "Reglas del modo test." -#: ../../src/Translations/AdminTranslations.php:960 +#: ../../src/Translations/AdminTranslations.php:961 msgid "Mercado Pago Checkouts enabled for real collections." msgstr "Checkouts Mercado Pago activos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:961 +#: ../../src/Translations/AdminTranslations.php:962 msgid "The clients can make real purchases in your store." msgstr "Los clientes pueden hacer compras reales en tu tienda." -#: ../../src/Translations/AdminTranslations.php:966 +#: ../../src/Translations/AdminTranslations.php:967 msgid "Store in sale mode (Production)" msgstr "Tienda en Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:967 +#: ../../src/Translations/AdminTranslations.php:968 msgid "Store under test" msgstr "Tienda en Modo Test" -#: ../../src/Translations/AdminTranslations.php:968 +#: ../../src/Translations/AdminTranslations.php:969 msgid "Save changes" msgstr "Guardar cambios" -#: ../../src/Translations/AdminTranslations.php:980 +#: ../../src/Translations/AdminTranslations.php:981 msgid "Store business fields are valid" msgstr "Los campos comerciales de la tienda son válidos" -#: ../../src/Translations/AdminTranslations.php:981 +#: ../../src/Translations/AdminTranslations.php:982 msgid "Store business fields could not be validated" msgstr "Los campos comerciales de la tienda no se pudieron validar" -#: ../../src/Translations/AdminTranslations.php:982 +#: ../../src/Translations/AdminTranslations.php:983 msgid "At least one payment method is enabled" msgstr "Al menos un método de pago está habilitado" -#: ../../src/Translations/AdminTranslations.php:983 +#: ../../src/Translations/AdminTranslations.php:984 msgid "No payment method enabled" msgstr "Ningún método de pago habilitado" -#: ../../src/Translations/AdminTranslations.php:984 +#: ../../src/Translations/AdminTranslations.php:985 msgid "Credentials fields are valid" msgstr "Los campos de la credencial son válidos" -#: ../../src/Translations/AdminTranslations.php:985 +#: ../../src/Translations/AdminTranslations.php:986 msgid "Credentials fields could not be validated" msgstr "No se pudieron validar los campos de credenciales" -#: ../../src/Translations/AdminTranslations.php:997 +#: ../../src/Translations/AdminTranslations.php:998 msgid "Valid Public Key" msgstr "Public key válida" -#: ../../src/Translations/AdminTranslations.php:998 +#: ../../src/Translations/AdminTranslations.php:999 msgid "Invalid Public Key" msgstr "Public key no válida" -#: ../../src/Translations/AdminTranslations.php:999 +#: ../../src/Translations/AdminTranslations.php:1000 msgid "Valid Access Token" msgstr "Access token válido" -#: ../../src/Translations/AdminTranslations.php:1000 +#: ../../src/Translations/AdminTranslations.php:1001 msgid "Invalid Access Token" msgstr "Access token no válido" -#: ../../src/Translations/AdminTranslations.php:1012 +#: ../../src/Translations/AdminTranslations.php:1013 msgid "Credentials were updated" msgstr "Se actualizaron las credenciales" -#: ../../src/Translations/AdminTranslations.php:1013 +#: ../../src/Translations/AdminTranslations.php:1014 msgid "" "Your store has exited Test Mode and is making real sales in Production Mode." msgstr "" "Ahora su tienda está fuera del modo de prueba y está realizando ventas " "reales en el modo de producción." -#: ../../src/Translations/AdminTranslations.php:1014 +#: ../../src/Translations/AdminTranslations.php:1015 msgid "To test the store, re-enter both test credentials." msgstr "Para probar la tienda, vuelva a ingresar ambas credenciales de prueba." -#: ../../src/Translations/AdminTranslations.php:1015 +#: ../../src/Translations/AdminTranslations.php:1016 msgid "Invalid credentials" msgstr "Credenciales no válidas" -#: ../../src/Translations/AdminTranslations.php:1016 +#: ../../src/Translations/AdminTranslations.php:1017 msgid "See our manual to learn" msgstr "Consulte nuestro manual para saber" -#: ../../src/Translations/AdminTranslations.php:1017 +#: ../../src/Translations/AdminTranslations.php:1018 msgid "how to enter the credentials the right way." msgstr "como ingresar las credenciales de forma correcta." -#: ../../src/Translations/AdminTranslations.php:1018 +#: ../../src/Translations/AdminTranslations.php:1019 msgid " for test mode" msgstr " para el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:1030 +#: ../../src/Translations/AdminTranslations.php:1031 msgid "Store information is valid" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:1043 +#: ../../src/Translations/AdminTranslations.php:1044 msgid "Attention:" msgstr "Atención:" -#: ../../src/Translations/AdminTranslations.php:1044 +#: ../../src/Translations/AdminTranslations.php:1045 msgid "" "The currency settings you have in WooCommerce are not compatible with the " "currency you use in your Mercado Pago account. Please activate the currency " @@ -1630,19 +1640,19 @@ msgstr "" "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." -#: ../../src/Translations/AdminTranslations.php:1047 +#: ../../src/Translations/AdminTranslations.php:1048 msgid "We are converting your currency from: " msgstr "Ahora convertimos tu moneda de: " -#: ../../src/Translations/AdminTranslations.php:1063 +#: ../../src/Translations/AdminTranslations.php:1064 msgid "to " msgstr "a " -#: ../../src/Translations/AdminTranslations.php:1074 +#: ../../src/Translations/AdminTranslations.php:1075 msgid "Payment status on Mercado Pago" msgstr "Estado de pago en el Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1075 +#: ../../src/Translations/AdminTranslations.php:1076 msgid "" "This is the payment status of your Mercado Pago Activities. To check the " "order status, please refer to Order details." @@ -1650,52 +1660,52 @@ msgstr "" "Este es el estado del pago de las Actividades de tu Mercado Pago. Para " "consultar el estado del pedido, consulta en Detalles del Pedido." -#: ../../src/Translations/AdminTranslations.php:1076, -#: ../../src/Translations/AdminTranslations.php:1078 +#: ../../src/Translations/AdminTranslations.php:1077, +#: ../../src/Translations/AdminTranslations.php:1079 msgid "View purchase details at Mercado Pago" msgstr "Ver detalles de compra en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1077, -#: ../../src/Translations/AdminTranslations.php:1079, -#: ../../src/Translations/AdminTranslations.php:1081 +#: ../../src/Translations/AdminTranslations.php:1078, +#: ../../src/Translations/AdminTranslations.php:1080, +#: ../../src/Translations/AdminTranslations.php:1082 msgid "Sync order status" msgstr "Sincronizar el estado del pedido" -#: ../../src/Translations/AdminTranslations.php:1080 +#: ../../src/Translations/AdminTranslations.php:1081 msgid "Consult the reasons for refusal" msgstr "Consultar motivos de rechazo" -#: ../../src/Translations/AdminTranslations.php:1082 +#: ../../src/Translations/AdminTranslations.php:1083 msgid "Order update successfully. This page will be reloaded..." msgstr "Actualización del pedido con éxito. Esta página será recargada…" -#: ../../src/Translations/AdminTranslations.php:1083 +#: ../../src/Translations/AdminTranslations.php:1084 msgid "Unable to update order:" msgstr "No se puede actualizar el pedido:" -#: ../../src/Translations/AdminTranslations.php:1084 +#: ../../src/Translations/AdminTranslations.php:1085 msgid "Payment made" msgstr "Pago realizado" -#: ../../src/Translations/AdminTranslations.php:1085 +#: ../../src/Translations/AdminTranslations.php:1086 msgid "Payment made by the buyer and already credited in the account." msgstr "" "El pago realizado por el comprador y que ya está acreditado en la cuenta." -#: ../../src/Translations/AdminTranslations.php:1086 +#: ../../src/Translations/AdminTranslations.php:1087 msgid "Call resolved" msgstr "Llamado resuelto" -#: ../../src/Translations/AdminTranslations.php:1087, -#: ../../src/Translations/AdminTranslations.php:1137 +#: ../../src/Translations/AdminTranslations.php:1088, +#: ../../src/Translations/AdminTranslations.php:1138 msgid "Please contact Mercado Pago for further details." msgstr "Contacta a Mercado Pago para saber más detalles." -#: ../../src/Translations/AdminTranslations.php:1088 +#: ../../src/Translations/AdminTranslations.php:1089 msgid "Payment refunded" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1089 +#: ../../src/Translations/AdminTranslations.php:1090 msgid "" "Your refund request has been made. Please contact Mercado Pago for further " "details." @@ -1703,59 +1713,59 @@ msgstr "" "Tu pedido de reebolso ya fue realizado. Contacta a Mercado Pago para saber " "más detalles." -#: ../../src/Translations/AdminTranslations.php:1090, -#: ../../src/Translations/AdminTranslations.php:1092 +#: ../../src/Translations/AdminTranslations.php:1091, +#: ../../src/Translations/AdminTranslations.php:1093 msgid "Payment returned" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1091 +#: ../../src/Translations/AdminTranslations.php:1092 msgid "The payment has been returned to the client." msgstr "El pago ya fue devuelto al cliente." -#: ../../src/Translations/AdminTranslations.php:1093 +#: ../../src/Translations/AdminTranslations.php:1094 msgid "The payment has been partially returned to the client." msgstr "El pago ya fue devuelto parcialmente al cliente." -#: ../../src/Translations/AdminTranslations.php:1094 +#: ../../src/Translations/AdminTranslations.php:1095 msgid "Payment canceled" msgstr "Pago cancelado" -#: ../../src/Translations/AdminTranslations.php:1095 +#: ../../src/Translations/AdminTranslations.php:1096 msgid "The payment has been successfully canceled." msgstr "El pago fue cancelado con éxito." -#: ../../src/Translations/AdminTranslations.php:1096 +#: ../../src/Translations/AdminTranslations.php:1097 msgid "Purchase canceled" msgstr "Compra cancelada" -#: ../../src/Translations/AdminTranslations.php:1097 +#: ../../src/Translations/AdminTranslations.php:1098 msgid "The payment has been canceled by the customer." msgstr "El pago fue cancelado por el cliente." -#: ../../src/Translations/AdminTranslations.php:1098, -#: ../../src/Translations/AdminTranslations.php:1100, -#: ../../src/Translations/AdminTranslations.php:1102, -#: ../../src/Translations/AdminTranslations.php:1104, -#: ../../src/Translations/AdminTranslations.php:1106, -#: ../../src/Translations/AdminTranslations.php:1114, -#: ../../src/Translations/AdminTranslations.php:1116, -#: ../../src/Translations/AdminTranslations.php:1118, -#: ../../src/Translations/AdminTranslations.php:1120, -#: ../../src/Translations/AdminTranslations.php:1122, -#: ../../src/Translations/AdminTranslations.php:1124, -#: ../../src/Translations/AdminTranslations.php:1126, -#: ../../src/Translations/AdminTranslations.php:1181 -msgid "Pending payment" -msgstr "Cobro pendiente" - #: ../../src/Translations/AdminTranslations.php:1099, #: ../../src/Translations/AdminTranslations.php:1101, #: ../../src/Translations/AdminTranslations.php:1103, -#: ../../src/Translations/AdminTranslations.php:1105 +#: ../../src/Translations/AdminTranslations.php:1105, +#: ../../src/Translations/AdminTranslations.php:1107, +#: ../../src/Translations/AdminTranslations.php:1115, +#: ../../src/Translations/AdminTranslations.php:1117, +#: ../../src/Translations/AdminTranslations.php:1119, +#: ../../src/Translations/AdminTranslations.php:1121, +#: ../../src/Translations/AdminTranslations.php:1123, +#: ../../src/Translations/AdminTranslations.php:1125, +#: ../../src/Translations/AdminTranslations.php:1127, +#: ../../src/Translations/AdminTranslations.php:1182 +msgid "Pending payment" +msgstr "Cobro pendiente" + +#: ../../src/Translations/AdminTranslations.php:1100, +#: ../../src/Translations/AdminTranslations.php:1102, +#: ../../src/Translations/AdminTranslations.php:1104, +#: ../../src/Translations/AdminTranslations.php:1106 msgid "Awaiting payment from the buyer." msgstr "Esperando el pago del comprador." -#: ../../src/Translations/AdminTranslations.php:1107 +#: ../../src/Translations/AdminTranslations.php:1108 msgid "" "We are veryfing the payment. We will notify you by email in up to 6 hours if " "everything is fine so that you can deliver the product or provide the " @@ -1764,19 +1774,19 @@ msgstr "" "Estamos revisando el pago. En menos de 6 horas te avisaremos por e-mail si " "está todo bien para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1108, -#: ../../src/Translations/AdminTranslations.php:1132, -#: ../../src/Translations/AdminTranslations.php:1148, -#: ../../src/Translations/AdminTranslations.php:1167, -#: ../../src/Translations/AdminTranslations.php:1171, -#: ../../src/Translations/AdminTranslations.php:1173, -#: ../../src/Translations/AdminTranslations.php:1175, -#: ../../src/Translations/AdminTranslations.php:1179 +#: ../../src/Translations/AdminTranslations.php:1109, +#: ../../src/Translations/AdminTranslations.php:1133, +#: ../../src/Translations/AdminTranslations.php:1149, +#: ../../src/Translations/AdminTranslations.php:1168, +#: ../../src/Translations/AdminTranslations.php:1172, +#: ../../src/Translations/AdminTranslations.php:1174, +#: ../../src/Translations/AdminTranslations.php:1176, +#: ../../src/Translations/AdminTranslations.php:1180 msgid "Declined payment" msgstr "Cobro rechazado" -#: ../../src/Translations/AdminTranslations.php:1109, -#: ../../src/Translations/AdminTranslations.php:1133 +#: ../../src/Translations/AdminTranslations.php:1110, +#: ../../src/Translations/AdminTranslations.php:1134 msgid "" "The card-issuing bank declined the payment. Please ask your client to use " "another card or to get in touch with the bank." @@ -1785,27 +1795,27 @@ msgstr "" "“\n" "“otra tarjeta o que se comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1110 +#: ../../src/Translations/AdminTranslations.php:1111 msgid "Payment authorized. Awaiting capture." msgstr "Pago autorizado. Esperando captura." -#: ../../src/Translations/AdminTranslations.php:1111 +#: ../../src/Translations/AdminTranslations.php:1112 msgid "" "The payment has been authorized on the client's card. Please capture the " "payment." msgstr "" "Ya se autorizó el pago en la tarjeta del cliente. Haz la captura del pago." -#: ../../src/Translations/AdminTranslations.php:1112 +#: ../../src/Translations/AdminTranslations.php:1113 msgid "Payment in process" msgstr "Pago en proceso" -#: ../../src/Translations/AdminTranslations.php:1113, -#: ../../src/Translations/AdminTranslations.php:1123 +#: ../../src/Translations/AdminTranslations.php:1114, +#: ../../src/Translations/AdminTranslations.php:1124 msgid "Please wait or contact Mercado Pago for further details" msgstr "Espera o contacta a Mercado Pago para saber más detalles" -#: ../../src/Translations/AdminTranslations.php:1115 +#: ../../src/Translations/AdminTranslations.php:1116 msgid "" "The bank is reviewing the payment. As soon as we have their confirmation, we " "will notify you via email so that you can deliver the product or provide the " @@ -1814,33 +1824,33 @@ msgstr "" "El banco está revisando el pago. Te avisaremos por e-mail cuando esté " "confirmado para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1117, -#: ../../src/Translations/AdminTranslations.php:1119, -#: ../../src/Translations/AdminTranslations.php:1121 +#: ../../src/Translations/AdminTranslations.php:1118, +#: ../../src/Translations/AdminTranslations.php:1120, +#: ../../src/Translations/AdminTranslations.php:1122 msgid "Awaiting payment information validation." msgstr "Esperando validación de los datos de pago." -#: ../../src/Translations/AdminTranslations.php:1125 +#: ../../src/Translations/AdminTranslations.php:1126 msgid "Waiting for the buyer." msgstr "Esperando al comprador." -#: ../../src/Translations/AdminTranslations.php:1127 +#: ../../src/Translations/AdminTranslations.php:1128 msgid "Waiting for the card issuer." msgstr "Espererando al emisor de la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1128, -#: ../../src/Translations/AdminTranslations.php:1130, -#: ../../src/Translations/AdminTranslations.php:1134, -#: ../../src/Translations/AdminTranslations.php:1155, -#: ../../src/Translations/AdminTranslations.php:1177 -msgid "The card issuing bank declined the payment" -msgstr "El banco emisor de la tarjeta rechazó el pago" - #: ../../src/Translations/AdminTranslations.php:1129, #: ../../src/Translations/AdminTranslations.php:1131, #: ../../src/Translations/AdminTranslations.php:1135, #: ../../src/Translations/AdminTranslations.php:1156, #: ../../src/Translations/AdminTranslations.php:1178 +msgid "The card issuing bank declined the payment" +msgstr "El banco emisor de la tarjeta rechazó el pago" + +#: ../../src/Translations/AdminTranslations.php:1130, +#: ../../src/Translations/AdminTranslations.php:1132, +#: ../../src/Translations/AdminTranslations.php:1136, +#: ../../src/Translations/AdminTranslations.php:1157, +#: ../../src/Translations/AdminTranslations.php:1179 msgid "" "Please recommend your customer to pay with another payment method or to " "contact their bank." @@ -1848,32 +1858,32 @@ msgstr "" "Recomiéndale a tu cliente que pague con otro medio de pago o que se " "comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1136 +#: ../../src/Translations/AdminTranslations.php:1137 msgid "Mercado Pago did not process the payment" msgstr "Mercado Pago no procesó el pago" -#: ../../src/Translations/AdminTranslations.php:1138, -#: ../../src/Translations/AdminTranslations.php:1183 -msgid "Expired payment deadline" -msgstr "Venció el plazo para el pago" - #: ../../src/Translations/AdminTranslations.php:1139, #: ../../src/Translations/AdminTranslations.php:1184 -msgid "The client did not pay within the time limit." -msgstr "El cliente no pagó dentro del límite de tiempo." +msgid "Expired payment deadline" +msgstr "Venció el plazo para el pago" #: ../../src/Translations/AdminTranslations.php:1140, -#: ../../src/Translations/AdminTranslations.php:1142, -#: ../../src/Translations/AdminTranslations.php:1144, #: ../../src/Translations/AdminTranslations.php:1185 -msgid "Your customer entered one or more incorrect card details" -msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" +msgid "The client did not pay within the time limit." +msgstr "El cliente no pagó dentro del límite de tiempo." #: ../../src/Translations/AdminTranslations.php:1141, #: ../../src/Translations/AdminTranslations.php:1143, #: ../../src/Translations/AdminTranslations.php:1145, -#: ../../src/Translations/AdminTranslations.php:1186, -#: ../../src/Translations/AdminTranslations.php:1187 +#: ../../src/Translations/AdminTranslations.php:1186 +msgid "Your customer entered one or more incorrect card details" +msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" + +#: ../../src/Translations/AdminTranslations.php:1142, +#: ../../src/Translations/AdminTranslations.php:1144, +#: ../../src/Translations/AdminTranslations.php:1146, +#: ../../src/Translations/AdminTranslations.php:1187, +#: ../../src/Translations/AdminTranslations.php:1188 msgid "" "Please ask them to enter to enter them again exactly as they appear on the " "card or on their bank app to complete the payment." @@ -1881,17 +1891,17 @@ msgstr "" "Pídele que vuelva a ingresarlos tal como figuran en la tarjeta o en la app " "de su banco para finalizar el pago." -#: ../../src/Translations/AdminTranslations.php:1146, -#: ../../src/Translations/AdminTranslations.php:1169 +#: ../../src/Translations/AdminTranslations.php:1147, +#: ../../src/Translations/AdminTranslations.php:1170 msgid "We protected you from a suspicious payment" msgstr "Te protegimos de un pago sospechoso" -#: ../../src/Translations/AdminTranslations.php:1147 +#: ../../src/Translations/AdminTranslations.php:1148 msgid "For safety reasons, this transaction cannot be completed." msgstr "Por motivos de seguridad, esta transacción no podrá ser finalizada." -#: ../../src/Translations/AdminTranslations.php:1149, -#: ../../src/Translations/AdminTranslations.php:1168 +#: ../../src/Translations/AdminTranslations.php:1150, +#: ../../src/Translations/AdminTranslations.php:1169 msgid "" "The buyer is suspended in our platform. Your client must contact us to check " "what happened." @@ -1899,12 +1909,12 @@ msgstr "" "El comprador está suspendido en Mercado Pago. Tu cliente debe comunicarse " "con nosotros para ver qué pasó." -#: ../../src/Translations/AdminTranslations.php:1150 +#: ../../src/Translations/AdminTranslations.php:1151 msgid "For safety reasons, the card issuing bank declined the payment" msgstr "Por seguridad, el banco emisor de la tarjeta rechazó el pago" -#: ../../src/Translations/AdminTranslations.php:1151, -#: ../../src/Translations/AdminTranslations.php:1170 +#: ../../src/Translations/AdminTranslations.php:1152, +#: ../../src/Translations/AdminTranslations.php:1171 msgid "" "Recommend your customer to pay with their usual payment method and device " "for online purchases." @@ -1912,40 +1922,40 @@ msgstr "" "Recomiéndale a tu cliente que pague con el medio de pago y dispositivo que " "suele usar para compras online." -#: ../../src/Translations/AdminTranslations.php:1152 +#: ../../src/Translations/AdminTranslations.php:1153 msgid "Your customer's credit card has no available limit" msgstr "La tarjeta de crédito de tu cliente no tiene límite disponible" -#: ../../src/Translations/AdminTranslations.php:1153, #: ../../src/Translations/AdminTranslations.php:1154, -#: ../../src/Translations/AdminTranslations.php:1158 +#: ../../src/Translations/AdminTranslations.php:1155, +#: ../../src/Translations/AdminTranslations.php:1159 msgid "" "Please ask them to pay with another card or to choose another payment method." msgstr "Pídele que pague con otra tarjeta o que elija otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1157 +#: ../../src/Translations/AdminTranslations.php:1158 msgid "Your customer reached the limit of payment attempts with this card" msgstr "Tu cliente alcanzó el límite de intentos de pago con la tarjeta" -#: ../../src/Translations/AdminTranslations.php:1159 +#: ../../src/Translations/AdminTranslations.php:1160 msgid "" "Your customer's card does not accept the number of installments selected" msgstr "La tarjeta de tu cliente no acepta la cantidad de pagos que seleccionó" -#: ../../src/Translations/AdminTranslations.php:1160 +#: ../../src/Translations/AdminTranslations.php:1161 msgid "" "Please ask them to choose a different number of installments or to pay with " "another method." msgstr "" "Pídele que elija una cantidad de pagos diferente o que use con otro medio." -#: ../../src/Translations/AdminTranslations.php:1161, -#: ../../src/Translations/AdminTranslations.php:1188 +#: ../../src/Translations/AdminTranslations.php:1162, +#: ../../src/Translations/AdminTranslations.php:1189 msgid "Your customer needs to authorize the payment through their bank" msgstr "Tu cliente necesita autorizar el pago con su banco" -#: ../../src/Translations/AdminTranslations.php:1162, -#: ../../src/Translations/AdminTranslations.php:1189 +#: ../../src/Translations/AdminTranslations.php:1163, +#: ../../src/Translations/AdminTranslations.php:1190 msgid "" "Please ask them to call the telephone number on their card or to pay with " "another method." @@ -1953,20 +1963,20 @@ msgstr "" "Pídele que llame al teléfono que está en la tarjeta o que pague con otro " "medio." -#: ../../src/Translations/AdminTranslations.php:1163 +#: ../../src/Translations/AdminTranslations.php:1164 msgid "" "The payment was declined because your customer already paid for this purchase" msgstr "El pago fue rechazado porque tu cliente ya pagó esta compra" -#: ../../src/Translations/AdminTranslations.php:1164 +#: ../../src/Translations/AdminTranslations.php:1165 msgid "Check your approved payments to verify it." msgstr "Revisa tu cobros aprobados para verificarlo." -#: ../../src/Translations/AdminTranslations.php:1165 +#: ../../src/Translations/AdminTranslations.php:1166 msgid "Your customer's card was is not activated yet" msgstr "La tarjeta de tu cliente aún no está habilitada" -#: ../../src/Translations/AdminTranslations.php:1166 +#: ../../src/Translations/AdminTranslations.php:1167 msgid "" "Please ask them to contact their bank by calling the number on the back of " "their card or to pay with another method." @@ -1974,7 +1984,7 @@ msgstr "" "Pídele que se comunique con su banco al número que está en el dorso de la " "tarjeta o que pague con otro medio." -#: ../../src/Translations/AdminTranslations.php:1172 +#: ../../src/Translations/AdminTranslations.php:1173 msgid "" "This payment was declined because it did not pass Mercado Pago security " "controls. Please ask your client to use another card." @@ -1982,7 +1992,7 @@ msgstr "" "Rechazamos este pago porque no pasó los controles de seguridad de Mercado " "Pago. Pedile a tu cliente que use otra tarjeta." -#: ../../src/Translations/AdminTranslations.php:1174 +#: ../../src/Translations/AdminTranslations.php:1175 msgid "" "The amount exceeded the card limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -1990,8 +2000,8 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1176, -#: ../../src/Translations/AdminTranslations.php:1180 +#: ../../src/Translations/AdminTranslations.php:1177, +#: ../../src/Translations/AdminTranslations.php:1181 msgid "" "Please ask your client to use another card or to get in touch with the card " "issuer." @@ -1999,7 +2009,7 @@ msgstr "" "Pídele a tu cliente que use otra tarjeta o que se comunique con el emisor de " "la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1182 +#: ../../src/Translations/AdminTranslations.php:1183 msgid "" "The amount exceeded the card's limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -2007,21 +2017,21 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1190 +#: ../../src/Translations/AdminTranslations.php:1191 msgid "Your customer's debit card has insufficient funds" msgstr "La tarjeta de débito de tu cliente no tiene saldo suficiente" -#: ../../src/Translations/AdminTranslations.php:1191 +#: ../../src/Translations/AdminTranslations.php:1192 msgid "" "Please recommend your customer to pay with another card or to choose another " "payment method." msgstr "Pídele que pague con otra tarjeta o que elige otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1192 +#: ../../src/Translations/AdminTranslations.php:1193 msgid "Something went wrong and the payment was declined" msgstr "El pago fue rechazado porque hubo un error" -#: ../../src/Translations/AdminTranslations.php:1193 +#: ../../src/Translations/AdminTranslations.php:1194 msgid "" "Please recommend you customer to try again or to pay with another payment " "method." diff --git a/i18n/languages/woocommerce-mercadopago-es_UY.mo b/i18n/languages/woocommerce-mercadopago-es_UY.mo index bd1af4ac49f7dfee76b3c4a9adea6e331edd16a2..392533cbdfcbb70849524b76c5c5421daba707ad 100644 GIT binary patch delta 10494 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 delta 10191 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 CD_YP1 diff --git a/i18n/languages/woocommerce-mercadopago-es_UY.po b/i18n/languages/woocommerce-mercadopago-es_UY.po index 56c6233a1..d807f91c5 100644 --- a/i18n/languages/woocommerce-mercadopago-es_UY.po +++ b/i18n/languages/woocommerce-mercadopago-es_UY.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" -"POT-Creation-Date: 2024-02-01 11:32+0000\n" +"POT-Creation-Date: 2024-02-07 19:47+0000\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -15,22 +15,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.2\n" -#: ../../src/WoocommerceMercadoPago.php:426, +#: ../../src/WoocommerceMercadoPago.php:449, #: ../../src/Translations/AdminTranslations.php:166 msgid "Activate WooCommerce" msgstr "Activar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:427, +#: ../../src/WoocommerceMercadoPago.php:450, #: ../../src/Translations/AdminTranslations.php:167 msgid "Install WooCommerce" msgstr "Instalar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:428, +#: ../../src/WoocommerceMercadoPago.php:451, #: ../../src/Translations/AdminTranslations.php:168 msgid "See WooCommerce" msgstr "Ver WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:430, +#: ../../src/WoocommerceMercadoPago.php:453, #: ../../src/Translations/AdminTranslations.php:157 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" @@ -103,50 +103,60 @@ msgstr "" msgid "Activate" msgstr "Activar" -#: ../../src/Translations/AdminTranslations.php:188 +#: ../../src/Translations/AdminTranslations.php:177 +msgid "" +"Unfortunately, the language configured in your WordPress is not compatible " +"with our plugin. For the best experience, please switch to a supported " +"language." +msgstr "" +"Lamentablemente, el idioma configurado en tu WordPress no es compatible con " +"nuestro plugin. Para disfrutar de la mejor experiencia, cambia a un idioma " +"compatible." + +#: ../../src/Translations/AdminTranslations.php:189 msgid "Set plugin" msgstr "Configurar plugin" -#: ../../src/Translations/AdminTranslations.php:189, -#: ../../src/Translations/AdminTranslations.php:743, -#: ../../src/Translations/AdminTranslations.php:802 +#: ../../src/Translations/AdminTranslations.php:190, +#: ../../src/Translations/AdminTranslations.php:744, +#: ../../src/Translations/AdminTranslations.php:803 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../src/Translations/AdminTranslations.php:190, -#: ../../src/Translations/AdminTranslations.php:261 +#: ../../src/Translations/AdminTranslations.php:191, +#: ../../src/Translations/AdminTranslations.php:262 msgid "Plugin manual" msgstr "Manual del plugin" -#: ../../src/Translations/AdminTranslations.php:202 +#: ../../src/Translations/AdminTranslations.php:203 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../src/Translations/AdminTranslations.php:203 +#: ../../src/Translations/AdminTranslations.php:204 msgid "Mercado Pago commission:" msgstr "Comisión de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:204 +#: ../../src/Translations/AdminTranslations.php:205 msgid "Represents the commission configured on plugin settings." msgstr "Representa la comisión configurada en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:205 +#: ../../src/Translations/AdminTranslations.php:206 msgid "Mercado Pago discount:" msgstr "Descuento de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:206 +#: ../../src/Translations/AdminTranslations.php:207 msgid "Represents the discount configured on plugin settings." msgstr "Representa el descuento configurado en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:207 +#: ../../src/Translations/AdminTranslations.php:208 msgid "Represents the installment fee charged by Mercado Pago." msgstr "Representa la comisión a plazos cobrada por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:208 +#: ../../src/Translations/AdminTranslations.php:209 msgid "Mercado Pago Installment Fee:" msgstr "Cuota de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:209 +#: ../../src/Translations/AdminTranslations.php:210 msgid "" "Represents the total purchase plus the installment fee charged by Mercado " "Pago." @@ -154,91 +164,91 @@ msgstr "" "Representa el total de la compra más la comisión de fraccionamiento cobrada " "por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:210 +#: ../../src/Translations/AdminTranslations.php:211 msgid "Mercado Pago Total:" msgstr "Mercado Pago Total:" -#: ../../src/Translations/AdminTranslations.php:223 +#: ../../src/Translations/AdminTranslations.php:224 msgid "Accept" msgstr "Acepta" -#: ../../src/Translations/AdminTranslations.php:224 +#: ../../src/Translations/AdminTranslations.php:225 msgid "payments on the spot" msgstr "pagos al instante" -#: ../../src/Translations/AdminTranslations.php:225 +#: ../../src/Translations/AdminTranslations.php:226 msgid "with" msgstr "con" -#: ../../src/Translations/AdminTranslations.php:226 +#: ../../src/Translations/AdminTranslations.php:227 msgid "the" msgstr "toda la" -#: ../../src/Translations/AdminTranslations.php:227 +#: ../../src/Translations/AdminTranslations.php:228 msgid "security" msgstr "seguridad" -#: ../../src/Translations/AdminTranslations.php:228 +#: ../../src/Translations/AdminTranslations.php:229 msgid "from Mercado Pago" msgstr "de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:233 +#: ../../src/Translations/AdminTranslations.php:234 msgid "Choose" msgstr "Elige" -#: ../../src/Translations/AdminTranslations.php:234 +#: ../../src/Translations/AdminTranslations.php:235 msgid "when you want to receive the money" msgstr "cuándo quieres recibir el dinero" -#: ../../src/Translations/AdminTranslations.php:235 +#: ../../src/Translations/AdminTranslations.php:236 msgid "from your sales and if you want to offer" msgstr "de las ventas y si quieres ofrecer" -#: ../../src/Translations/AdminTranslations.php:236 +#: ../../src/Translations/AdminTranslations.php:237 msgid "interest-free installments" msgstr "cuotas sin interés" -#: ../../src/Translations/AdminTranslations.php:237 +#: ../../src/Translations/AdminTranslations.php:238 msgid "to your clients." msgstr "a los clientes." -#: ../../src/Translations/AdminTranslations.php:242 +#: ../../src/Translations/AdminTranslations.php:243 msgid "Review the step-by-step of" msgstr "Revisa el paso a paso de" -#: ../../src/Translations/AdminTranslations.php:243 +#: ../../src/Translations/AdminTranslations.php:244 msgid "how to integrate the Mercado Pago Plugin" msgstr "cómo integrar el Plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:244 +#: ../../src/Translations/AdminTranslations.php:245 msgid "on our website for developers." msgstr "en nuestro sitio de desarrolladores." -#: ../../src/Translations/AdminTranslations.php:248 +#: ../../src/Translations/AdminTranslations.php:249 msgid "SSL" msgstr "SSL" -#: ../../src/Translations/AdminTranslations.php:249 +#: ../../src/Translations/AdminTranslations.php:250 msgid "Curl" msgstr "Curl" -#: ../../src/Translations/AdminTranslations.php:250 +#: ../../src/Translations/AdminTranslations.php:251 msgid "GD Extensions" msgstr "Extensiones GD" -#: ../../src/Translations/AdminTranslations.php:252 +#: ../../src/Translations/AdminTranslations.php:253 msgid "Technical requirements" msgstr "Requisitos técnicos" -#: ../../src/Translations/AdminTranslations.php:253 +#: ../../src/Translations/AdminTranslations.php:254 msgid "Collections and installments" msgstr "Cobros y cuotas" -#: ../../src/Translations/AdminTranslations.php:254 +#: ../../src/Translations/AdminTranslations.php:255 msgid "Questions?" msgstr "¿Dudas?" -#: ../../src/Translations/AdminTranslations.php:255 +#: ../../src/Translations/AdminTranslations.php:256 msgid "" "Implementation responsible for transmitting data to Mercado Pago in a secure " "and encrypted way." @@ -246,7 +256,7 @@ msgstr "" "Implementación responsable de transmitir los datos a Mercado Pago de forma " "segura y encriptada." -#: ../../src/Translations/AdminTranslations.php:256 +#: ../../src/Translations/AdminTranslations.php:257 msgid "" "It is an extension responsible for making payments via requests from the " "plugin to Mercado Pago." @@ -254,7 +264,7 @@ msgstr "" "Es una extensión encargada de realizar los pagos a través de requests del " "plugin a Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:257 +#: ../../src/Translations/AdminTranslations.php:258 msgid "" "These extensions are responsible for the implementation and operation of Pix " "in your store." @@ -262,11 +272,11 @@ msgstr "" "Extensiones responsables de la aplicación y el funcionamiento de Pix en su " "tienda." -#: ../../src/Translations/AdminTranslations.php:260 +#: ../../src/Translations/AdminTranslations.php:261 msgid "Set deadlines and fees" msgstr "Ajustar plazos y tasas" -#: ../../src/Translations/AdminTranslations.php:274 +#: ../../src/Translations/AdminTranslations.php:275 msgid "" "To enable orders, you must create and activate production credentials in " "your Mercado Pago Account." @@ -274,79 +284,79 @@ msgstr "" "Para habilitar las ventas, debes crear y activar las credenciales de " "producción en tu cuenta de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:275 +#: ../../src/Translations/AdminTranslations.php:276 msgid "Copy and paste the credentials below." msgstr "Copia y pega tus credenciales a continuación." -#: ../../src/Translations/AdminTranslations.php:280 +#: ../../src/Translations/AdminTranslations.php:281 msgid "You must enter" msgstr "Debe introducir" -#: ../../src/Translations/AdminTranslations.php:281 +#: ../../src/Translations/AdminTranslations.php:282 msgid "production credentials" msgstr "las credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:285 +#: ../../src/Translations/AdminTranslations.php:286 msgid "Public Key" msgstr "Public Key" -#: ../../src/Translations/AdminTranslations.php:286 +#: ../../src/Translations/AdminTranslations.php:287 msgid "Access Token" msgstr "Access Token" -#: ../../src/Translations/AdminTranslations.php:287 +#: ../../src/Translations/AdminTranslations.php:288 msgid "1. Integrate your store with Mercado Pago" msgstr "1. Integra la tienda a Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:288 +#: ../../src/Translations/AdminTranslations.php:289 msgid "Production credentials" msgstr "Credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:289 +#: ../../src/Translations/AdminTranslations.php:290 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:291 +#: ../../src/Translations/AdminTranslations.php:292 msgid "Enable Mercado Pago checkouts for test purchases in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para pruebas de compras en la " "tienda." -#: ../../src/Translations/AdminTranslations.php:292 +#: ../../src/Translations/AdminTranslations.php:293 msgid "Enable Mercado Pago checkouts to receive real payments in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para recibir pagos reales en tienda." -#: ../../src/Translations/AdminTranslations.php:293 +#: ../../src/Translations/AdminTranslations.php:294 msgid "Paste your Public Key here" msgstr "Pega aquí tu Public Key" -#: ../../src/Translations/AdminTranslations.php:294 +#: ../../src/Translations/AdminTranslations.php:295 msgid "Paste your Access Token here" msgstr "Pega aquí tu Access Token" -#: ../../src/Translations/AdminTranslations.php:295 +#: ../../src/Translations/AdminTranslations.php:296 msgid "Check credentials" msgstr "Consultar credenciales" -#: ../../src/Translations/AdminTranslations.php:296, -#: ../../src/Translations/AdminTranslations.php:350 +#: ../../src/Translations/AdminTranslations.php:297, +#: ../../src/Translations/AdminTranslations.php:351 msgid "Save and continue" msgstr "Guardar y continuar" -#: ../../src/Translations/AdminTranslations.php:297 +#: ../../src/Translations/AdminTranslations.php:298 msgid "Important! To sell you must enter your credentials." msgstr "¡Importante! Para vender debe introducir sus credenciales." -#: ../../src/Translations/AdminTranslations.php:299 +#: ../../src/Translations/AdminTranslations.php:300 msgid "Enter credentials" msgstr "Introducir credenciales" -#: ../../src/Translations/AdminTranslations.php:300 +#: ../../src/Translations/AdminTranslations.php:301 msgid "Activate your credentials to be able to sell" msgstr "Activa tus credenciales para poder vender" -#: ../../src/Translations/AdminTranslations.php:301 +#: ../../src/Translations/AdminTranslations.php:302 msgid "" "Credentials are codes that you must enter to enable sales. Go below on " "Activate Credentials. On the next screen, use again the Activate Credentials " @@ -357,23 +367,23 @@ msgstr "" "nuevamente el botón Activar Credenciales y complete los campos con la " "información solicitada." -#: ../../src/Translations/AdminTranslations.php:302 +#: ../../src/Translations/AdminTranslations.php:303 msgid "Activate credentials" msgstr "Activar credenciales" -#: ../../src/Translations/AdminTranslations.php:315 +#: ../../src/Translations/AdminTranslations.php:316 msgid "Add the URL to receive payments notifications." msgstr "Ingresa la URL para recibir notificaciones de pago." -#: ../../src/Translations/AdminTranslations.php:316 +#: ../../src/Translations/AdminTranslations.php:317 msgid "Find out more information in the" msgstr "Consulta más información en los" -#: ../../src/Translations/AdminTranslations.php:318 +#: ../../src/Translations/AdminTranslations.php:319 msgid "guides" msgstr "manuales" -#: ../../src/Translations/AdminTranslations.php:323 +#: ../../src/Translations/AdminTranslations.php:324 msgid "" "If you are a Mercado Pago Certified Partner, make sure to add your " "integrator_id." @@ -381,31 +391,31 @@ msgstr "" "Si eres Partner certificado de Mercado Pago, recuerda ingresar tu " "integrator_id." -#: ../../src/Translations/AdminTranslations.php:324 +#: ../../src/Translations/AdminTranslations.php:325 msgid "If you do not have the code, please" msgstr "Si no tienes el código," -#: ../../src/Translations/AdminTranslations.php:326 +#: ../../src/Translations/AdminTranslations.php:327 msgid "request it now" msgstr "solicítalo ahora" -#: ../../src/Translations/AdminTranslations.php:330 +#: ../../src/Translations/AdminTranslations.php:331 msgid "2. Customize your business" msgstr "2. Personaliza tu negocio" -#: ../../src/Translations/AdminTranslations.php:331 +#: ../../src/Translations/AdminTranslations.php:332 msgid "Your store information" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:332 +#: ../../src/Translations/AdminTranslations.php:333 msgid "Advanced integration options (optional)" msgstr "Opciones avanzadas de integración (opcional)" -#: ../../src/Translations/AdminTranslations.php:333 +#: ../../src/Translations/AdminTranslations.php:334 msgid "Debug and Log Mode" msgstr "Modo debug y log" -#: ../../src/Translations/AdminTranslations.php:334 +#: ../../src/Translations/AdminTranslations.php:335 msgid "" "Fill out the following information to have a better experience and offer " "more information to your clients." @@ -413,15 +423,15 @@ msgstr "" "Completa los siguientes datos para tener una mejor experiencia y ofrecer más " "información a los clientes." -#: ../../src/Translations/AdminTranslations.php:335 +#: ../../src/Translations/AdminTranslations.php:336 msgid "Name of your store in your client's invoice" msgstr "Nombre de tu tienda en la factura de los clientes" -#: ../../src/Translations/AdminTranslations.php:336 +#: ../../src/Translations/AdminTranslations.php:337 msgid "Identification in Activities of Mercado Pago" msgstr "Identificación en Actividad de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:337 +#: ../../src/Translations/AdminTranslations.php:338 msgid "" "For further integration of your store with Mercado Pago (IPN, Certified " "Partners, Debug Mode)" @@ -429,202 +439,202 @@ msgstr "" "Para mayor integración de tu tienda con Mercado Pago (IPN, Socios " "Certificados, Modo Debug)" -#: ../../src/Translations/AdminTranslations.php:338 +#: ../../src/Translations/AdminTranslations.php:339 msgid "Store category" msgstr "Categoría de la tienda" -#: ../../src/Translations/AdminTranslations.php:339 +#: ../../src/Translations/AdminTranslations.php:340 msgid "URL for IPN" msgstr "URL para IPN" -#: ../../src/Translations/AdminTranslations.php:340 +#: ../../src/Translations/AdminTranslations.php:341 msgid "Integrator ID" msgstr "Integrator ID" -#: ../../src/Translations/AdminTranslations.php:341 +#: ../../src/Translations/AdminTranslations.php:342 msgid "We record your store's actions in order to provide a better assistance." msgstr "Grabamos las aciones de tu tienda para brindar un mejor soporte." -#: ../../src/Translations/AdminTranslations.php:342 +#: ../../src/Translations/AdminTranslations.php:343 msgid "Ex: Mary's Store" msgstr "Ej.: Tienda de María" -#: ../../src/Translations/AdminTranslations.php:343 +#: ../../src/Translations/AdminTranslations.php:344 msgid "Ex: Mary Store" msgstr "Ej.: TiendaMaría" -#: ../../src/Translations/AdminTranslations.php:344 +#: ../../src/Translations/AdminTranslations.php:345 msgid "Select" msgstr "Seleccionar" -#: ../../src/Translations/AdminTranslations.php:345 +#: ../../src/Translations/AdminTranslations.php:346 msgid "Ex: https://examples.com/my-custom-ipn-url" msgstr "Ej.: https://examples.com/my-custom-ipn-url" -#: ../../src/Translations/AdminTranslations.php:346 +#: ../../src/Translations/AdminTranslations.php:347 msgid "Add plugin default params" msgstr "Agregar parámetros default del plugin" -#: ../../src/Translations/AdminTranslations.php:347 +#: ../../src/Translations/AdminTranslations.php:348 msgid "Ex: 14987126498" msgstr "Ej.: 14987126498" -#: ../../src/Translations/AdminTranslations.php:348 +#: ../../src/Translations/AdminTranslations.php:349 msgid "Show advanced options" msgstr "Ver opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:349 +#: ../../src/Translations/AdminTranslations.php:350 msgid "Hide advanced options" msgstr "Esconder opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:351 +#: ../../src/Translations/AdminTranslations.php:352 msgid "" "If this field is empty, the purchase will be identified as Mercado Pago." msgstr "" "Si el campo queda vacío, la compra del cliente se identificará como Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:352 +#: ../../src/Translations/AdminTranslations.php:353 msgid "In Activities, you will view this term before the order number" msgstr "En Actividad, verás el término ingresado antes del número o del pedido" -#: ../../src/Translations/AdminTranslations.php:353 +#: ../../src/Translations/AdminTranslations.php:354 msgid "" "Select \"Other categories\" if you do not find the appropriate category." msgstr "Seleciona ”Other categories” si no encuentras una categoría adecuada." -#: ../../src/Translations/AdminTranslations.php:354 +#: ../../src/Translations/AdminTranslations.php:355 msgid "request it now." msgstr "solicítalo ahora." -#: ../../src/Translations/AdminTranslations.php:368 +#: ../../src/Translations/AdminTranslations.php:369 msgid "3. Set payment methods" msgstr "3. Configura los medios de pago" -#: ../../src/Translations/AdminTranslations.php:369 +#: ../../src/Translations/AdminTranslations.php:370 msgid "To view more options, please select a payment method below" msgstr "Selecciona uno de los siguientes medios de pago para ver más opciones" -#: ../../src/Translations/AdminTranslations.php:370 +#: ../../src/Translations/AdminTranslations.php:371 msgid "Settings" msgstr "Configurar" -#: ../../src/Translations/AdminTranslations.php:371 +#: ../../src/Translations/AdminTranslations.php:372 msgid "Continue" msgstr "Continuar" -#: ../../src/Translations/AdminTranslations.php:372 +#: ../../src/Translations/AdminTranslations.php:373 msgid "Enabled" msgstr "Activado" -#: ../../src/Translations/AdminTranslations.php:373 +#: ../../src/Translations/AdminTranslations.php:374 msgid "Disabled" msgstr "Inactivo" -#: ../../src/Translations/AdminTranslations.php:374 +#: ../../src/Translations/AdminTranslations.php:375 msgid "Configure your credentials to enable Mercado Pago payment methods." msgstr "" "Completa tus credenciales para habilitar los medios de pago Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:387, -#: ../../src/Translations/AdminTranslations.php:393 +#: ../../src/Translations/AdminTranslations.php:388, +#: ../../src/Translations/AdminTranslations.php:394 msgid "The checkout is" msgstr "El checkout está" -#: ../../src/Translations/AdminTranslations.php:388, -#: ../../src/Translations/AdminTranslations.php:400, -#: ../../src/Translations/AdminTranslations.php:515, -#: ../../src/Translations/AdminTranslations.php:527, -#: ../../src/Translations/AdminTranslations.php:539, -#: ../../src/Translations/AdminTranslations.php:605, -#: ../../src/Translations/AdminTranslations.php:617, -#: ../../src/Translations/AdminTranslations.php:629, -#: ../../src/Translations/AdminTranslations.php:705, -#: ../../src/Translations/AdminTranslations.php:766, -#: ../../src/Translations/AdminTranslations.php:825, -#: ../../src/Translations/AdminTranslations.php:837 +#: ../../src/Translations/AdminTranslations.php:389, +#: ../../src/Translations/AdminTranslations.php:401, +#: ../../src/Translations/AdminTranslations.php:516, +#: ../../src/Translations/AdminTranslations.php:528, +#: ../../src/Translations/AdminTranslations.php:540, +#: ../../src/Translations/AdminTranslations.php:606, +#: ../../src/Translations/AdminTranslations.php:618, +#: ../../src/Translations/AdminTranslations.php:630, +#: ../../src/Translations/AdminTranslations.php:706, +#: ../../src/Translations/AdminTranslations.php:767, +#: ../../src/Translations/AdminTranslations.php:826, +#: ../../src/Translations/AdminTranslations.php:838 msgid "enabled" msgstr "activo" -#: ../../src/Translations/AdminTranslations.php:394, +#: ../../src/Translations/AdminTranslations.php:395, +#: ../../src/Translations/AdminTranslations.php:407, +#: ../../src/Translations/AdminTranslations.php:522, +#: ../../src/Translations/AdminTranslations.php:534, +#: ../../src/Translations/AdminTranslations.php:546, +#: ../../src/Translations/AdminTranslations.php:612, +#: ../../src/Translations/AdminTranslations.php:624, +#: ../../src/Translations/AdminTranslations.php:636, +#: ../../src/Translations/AdminTranslations.php:712, +#: ../../src/Translations/AdminTranslations.php:773, +#: ../../src/Translations/AdminTranslations.php:832, +#: ../../src/Translations/AdminTranslations.php:844 +msgid "disabled" +msgstr "inactivo" + +#: ../../src/Translations/AdminTranslations.php:400, #: ../../src/Translations/AdminTranslations.php:406, -#: ../../src/Translations/AdminTranslations.php:521, +#: ../../src/Translations/AdminTranslations.php:527, #: ../../src/Translations/AdminTranslations.php:533, -#: ../../src/Translations/AdminTranslations.php:545, -#: ../../src/Translations/AdminTranslations.php:611, +#: ../../src/Translations/AdminTranslations.php:617, #: ../../src/Translations/AdminTranslations.php:623, -#: ../../src/Translations/AdminTranslations.php:635, +#: ../../src/Translations/AdminTranslations.php:705, #: ../../src/Translations/AdminTranslations.php:711, +#: ../../src/Translations/AdminTranslations.php:766, #: ../../src/Translations/AdminTranslations.php:772, -#: ../../src/Translations/AdminTranslations.php:831, +#: ../../src/Translations/AdminTranslations.php:837, #: ../../src/Translations/AdminTranslations.php:843 -msgid "disabled" -msgstr "inactivo" - -#: ../../src/Translations/AdminTranslations.php:399, -#: ../../src/Translations/AdminTranslations.php:405, -#: ../../src/Translations/AdminTranslations.php:526, -#: ../../src/Translations/AdminTranslations.php:532, -#: ../../src/Translations/AdminTranslations.php:616, -#: ../../src/Translations/AdminTranslations.php:622, -#: ../../src/Translations/AdminTranslations.php:704, -#: ../../src/Translations/AdminTranslations.php:710, -#: ../../src/Translations/AdminTranslations.php:765, -#: ../../src/Translations/AdminTranslations.php:771, -#: ../../src/Translations/AdminTranslations.php:836, -#: ../../src/Translations/AdminTranslations.php:842 msgid "Currency conversion is" msgstr "Conversión de moneda está" -#: ../../src/Translations/AdminTranslations.php:411, -#: ../../src/Translations/AdminTranslations.php:417 +#: ../../src/Translations/AdminTranslations.php:412, +#: ../../src/Translations/AdminTranslations.php:418 msgid "The buyer" msgstr "El comprador" -#: ../../src/Translations/AdminTranslations.php:412 +#: ../../src/Translations/AdminTranslations.php:413 msgid "will be automatically redirected to the store" msgstr "será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:418 +#: ../../src/Translations/AdminTranslations.php:419 msgid "will not be automatically redirected to the store" msgstr "no será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:424, -#: ../../src/Translations/AdminTranslations.php:430, -#: ../../src/Translations/AdminTranslations.php:640, -#: ../../src/Translations/AdminTranslations.php:646 +#: ../../src/Translations/AdminTranslations.php:425, +#: ../../src/Translations/AdminTranslations.php:431, +#: ../../src/Translations/AdminTranslations.php:641, +#: ../../src/Translations/AdminTranslations.php:647 msgid "Pending payments" msgstr "Los pagos pendientes" -#: ../../src/Translations/AdminTranslations.php:425, -#: ../../src/Translations/AdminTranslations.php:641 +#: ../../src/Translations/AdminTranslations.php:426, +#: ../../src/Translations/AdminTranslations.php:642 msgid "will be automatically declined" msgstr "se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:431, -#: ../../src/Translations/AdminTranslations.php:647 +#: ../../src/Translations/AdminTranslations.php:432, +#: ../../src/Translations/AdminTranslations.php:648 msgid "will not be automatically declined" msgstr "no se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:435, -#: ../../src/Translations/AdminTranslations.php:450 +#: ../../src/Translations/AdminTranslations.php:436, +#: ../../src/Translations/AdminTranslations.php:451 msgid "Your saved cards or money in Mercado Pago" msgstr "Compras con tarjetas guardadas o saldo en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:436, -#: ../../src/Translations/AdminTranslations.php:438 +#: ../../src/Translations/AdminTranslations.php:437, +#: ../../src/Translations/AdminTranslations.php:439 msgid "Debit, Credit and invoice in Mercado Pago environment" msgstr "Débito, crédito y efectivo, en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:437 +#: ../../src/Translations/AdminTranslations.php:438 msgid "Mercado Pago - Checkout Pro" msgstr "Mercado Pago - Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:439 +#: ../../src/Translations/AdminTranslations.php:440 msgid "Checkout Pro" msgstr "Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:440 +#: ../../src/Translations/AdminTranslations.php:441 msgid "" "With Checkout Pro you sell with all the safety inside Mercado Pago " "environment." @@ -632,23 +642,13 @@ msgstr "" "Con el Checkout Pro, podrás vender con toda la seguridad, dentro de Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:441, -#: ../../src/Translations/AdminTranslations.php:555, -#: ../../src/Translations/AdminTranslations.php:720, -#: ../../src/Translations/AdminTranslations.php:781, -#: ../../src/Translations/AdminTranslations.php:861 -msgid "Mercado Pago plugin general settings" -msgstr "Configuraciones generales del plugin de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:442, #: ../../src/Translations/AdminTranslations.php:556, -#: ../../src/Translations/AdminTranslations.php:658, #: ../../src/Translations/AdminTranslations.php:721, #: ../../src/Translations/AdminTranslations.php:782, #: ../../src/Translations/AdminTranslations.php:862 -msgid "" -"Set the deadlines and fees, test your store or access the Plugin manual." -msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." +msgid "Mercado Pago plugin general settings" +msgstr "Configuraciones generales del plugin de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:443, #: ../../src/Translations/AdminTranslations.php:557, @@ -656,16 +656,26 @@ msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:722, #: ../../src/Translations/AdminTranslations.php:783, #: ../../src/Translations/AdminTranslations.php:863 -msgid "Go to Settings" -msgstr "Ir a Configuraciones" +msgid "" +"Set the deadlines and fees, test your store or access the Plugin manual." +msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:444, +#: ../../src/Translations/AdminTranslations.php:558, #: ../../src/Translations/AdminTranslations.php:660, +#: ../../src/Translations/AdminTranslations.php:723, +#: ../../src/Translations/AdminTranslations.php:784, #: ../../src/Translations/AdminTranslations.php:864 +msgid "Go to Settings" +msgstr "Ir a Configuraciones" + +#: ../../src/Translations/AdminTranslations.php:445, +#: ../../src/Translations/AdminTranslations.php:661, +#: ../../src/Translations/AdminTranslations.php:865 msgid "Enable the checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:445 +#: ../../src/Translations/AdminTranslations.php:446 msgid "" "By disabling it, you will disable all payments from Mercado Pago Checkout at " "Mercado Pago website by redirect." @@ -673,40 +683,31 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago del checkout en el " "sitio web de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:448, -#: ../../src/Translations/AdminTranslations.php:566, -#: ../../src/Translations/AdminTranslations.php:664, -#: ../../src/Translations/AdminTranslations.php:727, -#: ../../src/Translations/AdminTranslations.php:788, -#: ../../src/Translations/AdminTranslations.php:868 -msgid "Title in the store Checkout" -msgstr "Título en el checkout de la tienda" - #: ../../src/Translations/AdminTranslations.php:449, +#: ../../src/Translations/AdminTranslations.php:567, #: ../../src/Translations/AdminTranslations.php:665, #: ../../src/Translations/AdminTranslations.php:728, #: ../../src/Translations/AdminTranslations.php:789, #: ../../src/Translations/AdminTranslations.php:869 +msgid "Title in the store Checkout" +msgstr "Título en el checkout de la tienda" + +#: ../../src/Translations/AdminTranslations.php:450, +#: ../../src/Translations/AdminTranslations.php:666, +#: ../../src/Translations/AdminTranslations.php:729, +#: ../../src/Translations/AdminTranslations.php:790, +#: ../../src/Translations/AdminTranslations.php:870 msgid "Change the display text in Checkout, maximum characters: 85" msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85" -#: ../../src/Translations/AdminTranslations.php:451, -#: ../../src/Translations/AdminTranslations.php:569, -#: ../../src/Translations/AdminTranslations.php:667, -#: ../../src/Translations/AdminTranslations.php:730, -#: ../../src/Translations/AdminTranslations.php:791, -#: ../../src/Translations/AdminTranslations.php:871 -msgid "The text inserted here will not be translated to other languages" -msgstr "El texto insertado aquí no se traducirá a otros idiomas" - #: ../../src/Translations/AdminTranslations.php:452, #: ../../src/Translations/AdminTranslations.php:570, -#: ../../src/Translations/AdminTranslations.php:671, +#: ../../src/Translations/AdminTranslations.php:668, #: ../../src/Translations/AdminTranslations.php:731, #: ../../src/Translations/AdminTranslations.php:792, -#: ../../src/Translations/AdminTranslations.php:885 -msgid "Convert Currency" -msgstr "Convertir moneda" +#: ../../src/Translations/AdminTranslations.php:872 +msgid "The text inserted here will not be translated to other languages" +msgstr "El texto insertado aquí no se traducirá a otros idiomas" #: ../../src/Translations/AdminTranslations.php:453, #: ../../src/Translations/AdminTranslations.php:571, @@ -714,6 +715,15 @@ msgstr "Convertir moneda" #: ../../src/Translations/AdminTranslations.php:732, #: ../../src/Translations/AdminTranslations.php:793, #: ../../src/Translations/AdminTranslations.php:886 +msgid "Convert Currency" +msgstr "Convertir moneda" + +#: ../../src/Translations/AdminTranslations.php:454, +#: ../../src/Translations/AdminTranslations.php:572, +#: ../../src/Translations/AdminTranslations.php:673, +#: ../../src/Translations/AdminTranslations.php:733, +#: ../../src/Translations/AdminTranslations.php:794, +#: ../../src/Translations/AdminTranslations.php:887 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." @@ -721,100 +731,100 @@ 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." -#: ../../src/Translations/AdminTranslations.php:456 +#: ../../src/Translations/AdminTranslations.php:457 msgid "Choose the payment methods you accept in your store" msgstr "Elige los medios de pago que se aceptan en la tienda" -#: ../../src/Translations/AdminTranslations.php:457 +#: ../../src/Translations/AdminTranslations.php:458 msgid "Enable the payment methods available to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../src/Translations/AdminTranslations.php:458 +#: ../../src/Translations/AdminTranslations.php:459 msgid "Credit Cards" msgstr "Tarjetas de crédito" -#: ../../src/Translations/AdminTranslations.php:459 +#: ../../src/Translations/AdminTranslations.php:460 msgid "Debit Cards" msgstr "Tarjetas de débito" -#: ../../src/Translations/AdminTranslations.php:460 +#: ../../src/Translations/AdminTranslations.php:461 msgid "Other Payment Methods" msgstr "Otros medios" -#: ../../src/Translations/AdminTranslations.php:461 +#: ../../src/Translations/AdminTranslations.php:462 msgid "Maximum number of installments" msgstr "Máximo de cuotas" -#: ../../src/Translations/AdminTranslations.php:462 +#: ../../src/Translations/AdminTranslations.php:463 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?" -#: ../../src/Translations/AdminTranslations.php:463 +#: ../../src/Translations/AdminTranslations.php:464 msgid "1 installment" msgstr "1 cuota" -#: ../../src/Translations/AdminTranslations.php:464 +#: ../../src/Translations/AdminTranslations.php:465 msgid "2 installments" msgstr "2 cuotas" -#: ../../src/Translations/AdminTranslations.php:465 +#: ../../src/Translations/AdminTranslations.php:466 msgid "3 installments" msgstr "3 cuotas" -#: ../../src/Translations/AdminTranslations.php:466 +#: ../../src/Translations/AdminTranslations.php:467 msgid "4 installments" msgstr "4 cuotas" -#: ../../src/Translations/AdminTranslations.php:467 +#: ../../src/Translations/AdminTranslations.php:468 msgid "5 installments" msgstr "5 cuotas" -#: ../../src/Translations/AdminTranslations.php:468 +#: ../../src/Translations/AdminTranslations.php:469 msgid "6 installments" msgstr "6 cuotas" -#: ../../src/Translations/AdminTranslations.php:469 +#: ../../src/Translations/AdminTranslations.php:470 msgid "10 installments" msgstr "10 cuotas" -#: ../../src/Translations/AdminTranslations.php:470 +#: ../../src/Translations/AdminTranslations.php:471 msgid "12 installments" msgstr "12 cuotas" -#: ../../src/Translations/AdminTranslations.php:471 +#: ../../src/Translations/AdminTranslations.php:472 msgid "15 installments" msgstr "15 cuotas" -#: ../../src/Translations/AdminTranslations.php:472 +#: ../../src/Translations/AdminTranslations.php:473 msgid "18 installments" msgstr "18 cuotas" -#: ../../src/Translations/AdminTranslations.php:473 +#: ../../src/Translations/AdminTranslations.php:474 msgid "24 installments" msgstr "24 cuotas" -#: ../../src/Translations/AdminTranslations.php:474, -#: ../../src/Translations/AdminTranslations.php:584 +#: ../../src/Translations/AdminTranslations.php:475, +#: ../../src/Translations/AdminTranslations.php:585 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:475, -#: ../../src/Translations/AdminTranslations.php:585, -#: ../../src/Translations/AdminTranslations.php:681, -#: ../../src/Translations/AdminTranslations.php:738, -#: ../../src/Translations/AdminTranslations.php:797, -#: ../../src/Translations/AdminTranslations.php:893 +#: ../../src/Translations/AdminTranslations.php:476, +#: ../../src/Translations/AdminTranslations.php:586, +#: ../../src/Translations/AdminTranslations.php:682, +#: ../../src/Translations/AdminTranslations.php:739, +#: ../../src/Translations/AdminTranslations.php:798, +#: ../../src/Translations/AdminTranslations.php:894 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." -#: ../../src/Translations/AdminTranslations.php:476 +#: ../../src/Translations/AdminTranslations.php:477 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../src/Translations/AdminTranslations.php:477 +#: ../../src/Translations/AdminTranslations.php:478 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -822,39 +832,39 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../src/Translations/AdminTranslations.php:478 +#: ../../src/Translations/AdminTranslations.php:479 msgid "Redirect" msgstr "Redirect" -#: ../../src/Translations/AdminTranslations.php:479 +#: ../../src/Translations/AdminTranslations.php:480 msgid "Modal" msgstr "Modal" -#: ../../src/Translations/AdminTranslations.php:480 +#: ../../src/Translations/AdminTranslations.php:481 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../src/Translations/AdminTranslations.php:481 +#: ../../src/Translations/AdminTranslations.php:482 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?" -#: ../../src/Translations/AdminTranslations.php:484 +#: ../../src/Translations/AdminTranslations.php:485 msgid "Success URL" msgstr "URL de éxito" -#: ../../src/Translations/AdminTranslations.php:485 +#: ../../src/Translations/AdminTranslations.php:486 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." -#: ../../src/Translations/AdminTranslations.php:486 +#: ../../src/Translations/AdminTranslations.php:487 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../src/Translations/AdminTranslations.php:487 +#: ../../src/Translations/AdminTranslations.php:488 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 " @@ -864,11 +874,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../src/Translations/AdminTranslations.php:488 +#: ../../src/Translations/AdminTranslations.php:489 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../src/Translations/AdminTranslations.php:489 +#: ../../src/Translations/AdminTranslations.php:490 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -876,13 +886,13 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../src/Translations/AdminTranslations.php:490, -#: ../../src/Translations/AdminTranslations.php:682 +#: ../../src/Translations/AdminTranslations.php:491, +#: ../../src/Translations/AdminTranslations.php:683 msgid "Automatic decline of payments without instant approval" msgstr "Rechazo automático de pagos sin aprobación instantanea" -#: ../../src/Translations/AdminTranslations.php:491, -#: ../../src/Translations/AdminTranslations.php:683 +#: ../../src/Translations/AdminTranslations.php:492, +#: ../../src/Translations/AdminTranslations.php:684 msgid "" "Enable it if you want to automatically decline payments that are not " "instantly approved by banks or other institutions." @@ -890,55 +900,46 @@ msgstr "" "Actívalo si quieres rechazar automáticamente los pagos que no son aprobados " "instantáneamente por bancos u otros compradores." -#: ../../src/Translations/AdminTranslations.php:492 +#: ../../src/Translations/AdminTranslations.php:493 msgid "Debit, Credit and Invoice in Mercado Pago environment." msgstr "Débito, crédito y efectivo, en Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:495, -#: ../../src/Translations/AdminTranslations.php:586, -#: ../../src/Translations/AdminTranslations.php:686, -#: ../../src/Translations/AdminTranslations.php:747, -#: ../../src/Translations/AdminTranslations.php:806, -#: ../../src/Translations/AdminTranslations.php:894 -msgid "Discount in Mercado Pago Checkouts" -msgstr "Descuento en los checkouts de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:496, #: ../../src/Translations/AdminTranslations.php:587, #: ../../src/Translations/AdminTranslations.php:687, #: ../../src/Translations/AdminTranslations.php:748, #: ../../src/Translations/AdminTranslations.php:807, #: ../../src/Translations/AdminTranslations.php:895 -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." +msgid "Discount in Mercado Pago Checkouts" +msgstr "Descuento en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:497, -#: ../../src/Translations/AdminTranslations.php:500, #: ../../src/Translations/AdminTranslations.php:588, -#: ../../src/Translations/AdminTranslations.php:591, #: ../../src/Translations/AdminTranslations.php:688, -#: ../../src/Translations/AdminTranslations.php:691, #: ../../src/Translations/AdminTranslations.php:749, -#: ../../src/Translations/AdminTranslations.php:752, #: ../../src/Translations/AdminTranslations.php:808, -#: ../../src/Translations/AdminTranslations.php:811, -#: ../../src/Translations/AdminTranslations.php:896, -#: ../../src/Translations/AdminTranslations.php:899 -msgid "Activate and show this information on Mercado Pago Checkout" -msgstr "Activar y mostrar esa información en el checkout Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:896 +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." #: ../../src/Translations/AdminTranslations.php:498, +#: ../../src/Translations/AdminTranslations.php:501, #: ../../src/Translations/AdminTranslations.php:589, +#: ../../src/Translations/AdminTranslations.php:592, #: ../../src/Translations/AdminTranslations.php:689, +#: ../../src/Translations/AdminTranslations.php:692, #: ../../src/Translations/AdminTranslations.php:750, +#: ../../src/Translations/AdminTranslations.php:753, #: ../../src/Translations/AdminTranslations.php:809, -#: ../../src/Translations/AdminTranslations.php:897 -msgid "Commission in Mercado Pago Checkouts" -msgstr "Comisiones en los checkouts de Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:812, +#: ../../src/Translations/AdminTranslations.php:897, +#: ../../src/Translations/AdminTranslations.php:900 +msgid "Activate and show this information on Mercado Pago Checkout" +msgstr "Activar y mostrar esa información en el checkout Mercado Pago" #: ../../src/Translations/AdminTranslations.php:499, #: ../../src/Translations/AdminTranslations.php:590, @@ -946,6 +947,15 @@ msgstr "Comisiones en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:751, #: ../../src/Translations/AdminTranslations.php:810, #: ../../src/Translations/AdminTranslations.php:898 +msgid "Commission in Mercado Pago Checkouts" +msgstr "Comisiones en los checkouts de Mercado Pago" + +#: ../../src/Translations/AdminTranslations.php:500, +#: ../../src/Translations/AdminTranslations.php:591, +#: ../../src/Translations/AdminTranslations.php:691, +#: ../../src/Translations/AdminTranslations.php:752, +#: ../../src/Translations/AdminTranslations.php:811, +#: ../../src/Translations/AdminTranslations.php:899 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -953,35 +963,35 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:501 +#: ../../src/Translations/AdminTranslations.php:502 msgid "This seems to be an invalid URL" msgstr "Esto parece ser una URL no válida" -#: ../../src/Translations/AdminTranslations.php:514, -#: ../../src/Translations/AdminTranslations.php:520 +#: ../../src/Translations/AdminTranslations.php:515, +#: ../../src/Translations/AdminTranslations.php:521 msgid "Payment in installments without card in the store checkout is" msgstr "Cuotas sin tarjeta en el checkout de la tienda está" -#: ../../src/Translations/AdminTranslations.php:538, -#: ../../src/Translations/AdminTranslations.php:544 +#: ../../src/Translations/AdminTranslations.php:539, +#: ../../src/Translations/AdminTranslations.php:545 msgid "The installments without card component is" msgstr "El componente de cuotas sin tarjeta está" -#: ../../src/Translations/AdminTranslations.php:549, -#: ../../src/Translations/AdminTranslations.php:553 +#: ../../src/Translations/AdminTranslations.php:550, +#: ../../src/Translations/AdminTranslations.php:554 msgid "Installments without card" msgstr "Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:550, -#: ../../src/Translations/AdminTranslations.php:552 +#: ../../src/Translations/AdminTranslations.php:551, +#: ../../src/Translations/AdminTranslations.php:553 msgid "Customers who buy on spot and pay later in up to 12 installments" msgstr "Tus clientes compran al instante y pagan después en hasta 12 cuotas" -#: ../../src/Translations/AdminTranslations.php:551 +#: ../../src/Translations/AdminTranslations.php:552 msgid "Mercado Pago - Installments without card" msgstr "Mercado Pago - Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:554 +#: ../../src/Translations/AdminTranslations.php:555 msgid "" "Reach millions of buyers by offering Mercado Credito as a payment method. " "Our flexible payment options give your customers the possibility to buy " @@ -995,11 +1005,11 @@ msgstr "" "necesidad de utilizar una tarjeta. Para tu negocio, la aprobación de la " "compra es inmediata y está garantizada." -#: ../../src/Translations/AdminTranslations.php:558 +#: ../../src/Translations/AdminTranslations.php:559 msgid "Activate installments without card in your store checkout" msgstr "Activar cuotas sin tarjeta en el checkout de tu tienda" -#: ../../src/Translations/AdminTranslations.php:559 +#: ../../src/Translations/AdminTranslations.php:560 msgid "" "Offer the option to pay in installments without card directly from your " "store's checkout." @@ -1007,37 +1017,37 @@ msgstr "" "Ofrece la opción de pago en cuotas sin tarjeta directo desde el checkout de " "tu tienda." -#: ../../src/Translations/AdminTranslations.php:562 +#: ../../src/Translations/AdminTranslations.php:563 msgid "Checkout visualization" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:563, -#: ../../src/Translations/AdminTranslations.php:583 +#: ../../src/Translations/AdminTranslations.php:564, +#: ../../src/Translations/AdminTranslations.php:584 msgid "Check below how this feature will be displayed to your customers:" msgstr "A continuación verás cómo este recurso aparecerá para tus clientes:" -#: ../../src/Translations/AdminTranslations.php:564 +#: ../../src/Translations/AdminTranslations.php:565 msgid "Checkout Preview" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:565 +#: ../../src/Translations/AdminTranslations.php:566 msgid "PREVIEW" msgstr "DEMO" -#: ../../src/Translations/AdminTranslations.php:567 +#: ../../src/Translations/AdminTranslations.php:568 msgid "It is possible to edit the title. Maximum of 85 characters." msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85." -#: ../../src/Translations/AdminTranslations.php:568 +#: ../../src/Translations/AdminTranslations.php:569 msgid "Checkout without card" msgstr "Hasta 12 pagos sin tarjeta con Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:574 +#: ../../src/Translations/AdminTranslations.php:575 msgid "" "Inform your customers about the option of paying in installments without card" msgstr "Informa a tus clientes sobre la opción de cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:575 +#: ../../src/Translations/AdminTranslations.php:576 msgid "" "By activating the installments without card component, you increase your " "chances of selling." @@ -1045,62 +1055,62 @@ msgstr "" "Al activar el componente de cuotas sin tarjeta,, aumentarás tus " "posibilidades de venta." -#: ../../src/Translations/AdminTranslations.php:578 +#: ../../src/Translations/AdminTranslations.php:579 msgid "Banner on the product page | Computer version" msgstr "Componente en la página del producto | Versión para computadora" -#: ../../src/Translations/AdminTranslations.php:579 +#: ../../src/Translations/AdminTranslations.php:580 msgid "Banner on the product page | Cellphone version" msgstr "Componente en la página del producto | Versión para celular" -#: ../../src/Translations/AdminTranslations.php:580 +#: ../../src/Translations/AdminTranslations.php:581 msgid "Computer" msgstr "Computadora" -#: ../../src/Translations/AdminTranslations.php:581 +#: ../../src/Translations/AdminTranslations.php:582 msgid "Mobile" msgstr "Celular" -#: ../../src/Translations/AdminTranslations.php:582 +#: ../../src/Translations/AdminTranslations.php:583 msgid "Component visualization" msgstr "Visualización del componente" -#: ../../src/Translations/AdminTranslations.php:604, -#: ../../src/Translations/AdminTranslations.php:610 +#: ../../src/Translations/AdminTranslations.php:605, +#: ../../src/Translations/AdminTranslations.php:611 msgid "Transparent Checkout for credit cards is" msgstr "El Checkout Transparente de las tarjetas de crédito está" -#: ../../src/Translations/AdminTranslations.php:628, -#: ../../src/Translations/AdminTranslations.php:634 +#: ../../src/Translations/AdminTranslations.php:629, +#: ../../src/Translations/AdminTranslations.php:635 msgid "Payments via Mercado Pago accounts are" msgstr "Los pagos a través de la cuenta de Mercado Pago están" -#: ../../src/Translations/AdminTranslations.php:651, -#: ../../src/Translations/AdminTranslations.php:666 +#: ../../src/Translations/AdminTranslations.php:652, +#: ../../src/Translations/AdminTranslations.php:667 msgid "Debit and Credit" msgstr "Débito e crédito" -#: ../../src/Translations/AdminTranslations.php:652, -#: ../../src/Translations/AdminTranslations.php:654, -#: ../../src/Translations/AdminTranslations.php:716, -#: ../../src/Translations/AdminTranslations.php:777, -#: ../../src/Translations/AdminTranslations.php:856, -#: ../../src/Translations/AdminTranslations.php:858 -msgid "Transparent Checkout in your store environment" -msgstr "Checkout Transparente en tu tienda" - #: ../../src/Translations/AdminTranslations.php:653, +#: ../../src/Translations/AdminTranslations.php:655, #: ../../src/Translations/AdminTranslations.php:717, #: ../../src/Translations/AdminTranslations.php:778, -#: ../../src/Translations/AdminTranslations.php:857 +#: ../../src/Translations/AdminTranslations.php:857, +#: ../../src/Translations/AdminTranslations.php:859 +msgid "Transparent Checkout in your store environment" +msgstr "Checkout Transparente en tu tienda" + +#: ../../src/Translations/AdminTranslations.php:654, +#: ../../src/Translations/AdminTranslations.php:718, +#: ../../src/Translations/AdminTranslations.php:779, +#: ../../src/Translations/AdminTranslations.php:858 msgid "Mercado pago - Customized Checkout" msgstr "Mercado Pago - Checkout Personalizado" -#: ../../src/Translations/AdminTranslations.php:655 +#: ../../src/Translations/AdminTranslations.php:656 msgid "Transparent Checkout | Credit card" msgstr "Checkout Transparente | Tarjeta de Crédito" -#: ../../src/Translations/AdminTranslations.php:656 +#: ../../src/Translations/AdminTranslations.php:657 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and with the security from Mercado Pago." @@ -1108,11 +1118,11 @@ msgstr "" "Con el Checkout Transparente, puedes vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:657 +#: ../../src/Translations/AdminTranslations.php:658 msgid "Mercado Pago Plugin general settings" msgstr "Configuraciones generales del plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:661 +#: ../../src/Translations/AdminTranslations.php:662 msgid "" "By disabling it, you will disable all credit cards payments from Mercado " "Pago Transparent Checkout." @@ -1120,11 +1130,11 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:668 +#: ../../src/Translations/AdminTranslations.php:669 msgid "Installments Fees" msgstr "Tasas de pago en cuotas" -#: ../../src/Translations/AdminTranslations.php:669 +#: ../../src/Translations/AdminTranslations.php:670 msgid "" "Set installment fees and whether they will be charged from the store or from " "the buyer." @@ -1132,15 +1142,15 @@ msgstr "" "Configura las tasas de las cuotas y si se las cobrarán a la tienda o al " "comprador." -#: ../../src/Translations/AdminTranslations.php:670 +#: ../../src/Translations/AdminTranslations.php:671 msgid "Set fees" msgstr "Configurar tasas" -#: ../../src/Translations/AdminTranslations.php:675 +#: ../../src/Translations/AdminTranslations.php:676 msgid "Payments via Mercado Pago account" msgstr "Pagos a través de la cuenta de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:676 +#: ../../src/Translations/AdminTranslations.php:677 msgid "" "Your customers pay faster with saved cards, money balance or other available " "methods in their Mercado Pago accounts." @@ -1148,26 +1158,26 @@ msgstr "" "Tus clientes pagan más rápido con tarjetas guardadas, dinero disponible o " "con otros medios disponibles en sus cuentas de MP." -#: ../../src/Translations/AdminTranslations.php:679 +#: ../../src/Translations/AdminTranslations.php:680 msgid "Check an example of how it will appear in your store:" msgstr "Conoce un ejemplo de cómo aparecerá en la tienda:" -#: ../../src/Translations/AdminTranslations.php:680 +#: ../../src/Translations/AdminTranslations.php:681 msgid "Advanced configuration of the personalized payment experience" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:715, -#: ../../src/Translations/AdminTranslations.php:729 +#: ../../src/Translations/AdminTranslations.php:716, +#: ../../src/Translations/AdminTranslations.php:730 msgid "Invoice" msgstr "Efectivo" -#: ../../src/Translations/AdminTranslations.php:718 +#: ../../src/Translations/AdminTranslations.php:719 msgid "Transparent Checkout | Invoice or Loterica" msgstr "Checkout Transparente | Efectivo" -#: ../../src/Translations/AdminTranslations.php:719, -#: ../../src/Translations/AdminTranslations.php:780, -#: ../../src/Translations/AdminTranslations.php:860 +#: ../../src/Translations/AdminTranslations.php:720, +#: ../../src/Translations/AdminTranslations.php:781, +#: ../../src/Translations/AdminTranslations.php:861 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and all the safety from Mercado Pago." @@ -1175,12 +1185,12 @@ msgstr "" "Con el Checkout Transparente, podrás vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:723, -#: ../../src/Translations/AdminTranslations.php:784 +#: ../../src/Translations/AdminTranslations.php:724, +#: ../../src/Translations/AdminTranslations.php:785 msgid "Enable the Checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:724 +#: ../../src/Translations/AdminTranslations.php:725 msgid "" "By disabling it, you will disable all invoice payments from Mercado Pago " "Transparent Checkout." @@ -1188,34 +1198,34 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago en efectivo en el " "Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:725 +#: ../../src/Translations/AdminTranslations.php:726 msgid "The transparent checkout for tickets is enabled." msgstr "El Checkout Transparente está activo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:726 +#: ../../src/Translations/AdminTranslations.php:727 msgid "The transparent checkout for tickets is disabled." msgstr "El Checkout Transparente está inactivo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:735 +#: ../../src/Translations/AdminTranslations.php:736 msgid "Payment Due" msgstr "Fecha de pago" -#: ../../src/Translations/AdminTranslations.php:736 +#: ../../src/Translations/AdminTranslations.php:737 msgid "In how many days will cash payments expire." msgstr "En cuántos días vencerán los pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:737 +#: ../../src/Translations/AdminTranslations.php:738 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../src/Translations/AdminTranslations.php:739, -#: ../../src/Translations/AdminTranslations.php:798 +#: ../../src/Translations/AdminTranslations.php:740, +#: ../../src/Translations/AdminTranslations.php:799 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../src/Translations/AdminTranslations.php:740, -#: ../../src/Translations/AdminTranslations.php:799 +#: ../../src/Translations/AdminTranslations.php:741, +#: ../../src/Translations/AdminTranslations.php:800 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 " @@ -1225,41 +1235,41 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../src/Translations/AdminTranslations.php:741, -#: ../../src/Translations/AdminTranslations.php:800 +#: ../../src/Translations/AdminTranslations.php:742, +#: ../../src/Translations/AdminTranslations.php:801 msgid "Reduce inventory is enabled." msgstr "Reducir inventario está activo." -#: ../../src/Translations/AdminTranslations.php:742, -#: ../../src/Translations/AdminTranslations.php:801 +#: ../../src/Translations/AdminTranslations.php:743, +#: ../../src/Translations/AdminTranslations.php:802 msgid "Reduce inventory is disabled." msgstr "Reducir inventario está inactivo." -#: ../../src/Translations/AdminTranslations.php:744, -#: ../../src/Translations/AdminTranslations.php:803 +#: ../../src/Translations/AdminTranslations.php:745, +#: ../../src/Translations/AdminTranslations.php:804 msgid "Enable the available payment methods" msgstr "Habilita los medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:745, -#: ../../src/Translations/AdminTranslations.php:804 +#: ../../src/Translations/AdminTranslations.php:746, +#: ../../src/Translations/AdminTranslations.php:805 msgid "Choose the available payment methods in your store." msgstr "Elige los medios de pago que se aceptan en la tienda." -#: ../../src/Translations/AdminTranslations.php:746, -#: ../../src/Translations/AdminTranslations.php:805 +#: ../../src/Translations/AdminTranslations.php:747, +#: ../../src/Translations/AdminTranslations.php:806 msgid "All payment methods" msgstr "Medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:776, -#: ../../src/Translations/AdminTranslations.php:790 +#: ../../src/Translations/AdminTranslations.php:777, +#: ../../src/Translations/AdminTranslations.php:791 msgid "PSE" msgstr "PSE" -#: ../../src/Translations/AdminTranslations.php:779 +#: ../../src/Translations/AdminTranslations.php:780 msgid "Transparent Checkout PSE" msgstr "Pago transparente PSE" -#: ../../src/Translations/AdminTranslations.php:785 +#: ../../src/Translations/AdminTranslations.php:786 msgid "" "By deactivating it, you will disable PSE payments from Mercado Pago " "Transparent Checkout." @@ -1267,49 +1277,49 @@ msgstr "" "Al desactivarlo, desactivará los pagos PSE de Mercado Pago Transparente " "Checkout." -#: ../../src/Translations/AdminTranslations.php:786 +#: ../../src/Translations/AdminTranslations.php:787 msgid "The transparent checkout for PSE is enabled." msgstr "El Checkout Transparente está activo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:787 +#: ../../src/Translations/AdminTranslations.php:788 msgid "The transparent checkout for PSE is disabled." msgstr "El Checkout Transparente está inactivo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:796 +#: ../../src/Translations/AdminTranslations.php:797 msgid "Advanced configuration of the PSE payment experience" msgstr "Configuración avanzada de la experiencia de pago PSE" -#: ../../src/Translations/AdminTranslations.php:824, -#: ../../src/Translations/AdminTranslations.php:830 +#: ../../src/Translations/AdminTranslations.php:825, +#: ../../src/Translations/AdminTranslations.php:831 msgid "The transparent checkout for Pix payment is" msgstr "El Checkout Transparente está" -#: ../../src/Translations/AdminTranslations.php:848 +#: ../../src/Translations/AdminTranslations.php:849 msgid "Go to the" msgstr "Ve al área" -#: ../../src/Translations/AdminTranslations.php:849 +#: ../../src/Translations/AdminTranslations.php:850 msgid "Your Profile" msgstr "Tu Perfil" -#: ../../src/Translations/AdminTranslations.php:850 +#: ../../src/Translations/AdminTranslations.php:851 msgid "area and choose the" msgstr "y elige la sección" -#: ../../src/Translations/AdminTranslations.php:851 +#: ../../src/Translations/AdminTranslations.php:852 msgid "Your Pix Keys section" msgstr "Tus claves Pix" -#: ../../src/Translations/AdminTranslations.php:855, -#: ../../src/Translations/AdminTranslations.php:870 +#: ../../src/Translations/AdminTranslations.php:856, +#: ../../src/Translations/AdminTranslations.php:871 msgid "Pix" msgstr "Pix" -#: ../../src/Translations/AdminTranslations.php:859 +#: ../../src/Translations/AdminTranslations.php:860 msgid "Transparent Checkout | Pix" msgstr "Checkout Transparente | Pix" -#: ../../src/Translations/AdminTranslations.php:865 +#: ../../src/Translations/AdminTranslations.php:866 msgid "" "By disabling it, you will disable all Pix payments from Mercado Pago " "Transparent Checkout." @@ -1317,85 +1327,85 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:872 +#: ../../src/Translations/AdminTranslations.php:873 msgid "Expiration for payments via Pix" msgstr "Vencimiento para pagos con Pix" -#: ../../src/Translations/AdminTranslations.php:873 +#: ../../src/Translations/AdminTranslations.php:874 msgid "Set the limit in minutes for your clients to pay via Pix." msgstr "" "Define el límite de minutos para que tus clientes puedan pagar con Pix." -#: ../../src/Translations/AdminTranslations.php:874 +#: ../../src/Translations/AdminTranslations.php:875 msgid "15 minutes" msgstr "15 minutos" -#: ../../src/Translations/AdminTranslations.php:875 +#: ../../src/Translations/AdminTranslations.php:876 msgid "30 minutes (recommended)" msgstr "30 minutos (recomendado)" -#: ../../src/Translations/AdminTranslations.php:876 +#: ../../src/Translations/AdminTranslations.php:877 msgid "60 minutes" msgstr "60 minutos" -#: ../../src/Translations/AdminTranslations.php:877 +#: ../../src/Translations/AdminTranslations.php:878 msgid "12 hours" msgstr "12 horas" -#: ../../src/Translations/AdminTranslations.php:878 +#: ../../src/Translations/AdminTranslations.php:879 msgid "24 hours" msgstr "24 horas" -#: ../../src/Translations/AdminTranslations.php:879 +#: ../../src/Translations/AdminTranslations.php:880 msgid "2 days" msgstr "2 días" -#: ../../src/Translations/AdminTranslations.php:880 +#: ../../src/Translations/AdminTranslations.php:881 msgid "3 days" msgstr "3 días" -#: ../../src/Translations/AdminTranslations.php:881 +#: ../../src/Translations/AdminTranslations.php:882 msgid "4 days" msgstr "4 días" -#: ../../src/Translations/AdminTranslations.php:882 +#: ../../src/Translations/AdminTranslations.php:883 msgid "5 days" msgstr "5 días" -#: ../../src/Translations/AdminTranslations.php:883 +#: ../../src/Translations/AdminTranslations.php:884 msgid "6 days" msgstr "6 días" -#: ../../src/Translations/AdminTranslations.php:884 +#: ../../src/Translations/AdminTranslations.php:885 msgid "7 days" msgstr "7 días" -#: ../../src/Translations/AdminTranslations.php:889 +#: ../../src/Translations/AdminTranslations.php:890 msgid "Would you like to know how Pix works?" msgstr "¿Quieres saber cómo funciona Pix?" -#: ../../src/Translations/AdminTranslations.php:890 +#: ../../src/Translations/AdminTranslations.php:891 msgid "" "We have a dedicated page where we explain how it works and its advantages." msgstr "Creamos una página que explica su funcionamiento y sus vantajas." -#: ../../src/Translations/AdminTranslations.php:891 +#: ../../src/Translations/AdminTranslations.php:892 msgid "Find out more about Pix" msgstr "Saber más sobre Pix" -#: ../../src/Translations/AdminTranslations.php:892 +#: ../../src/Translations/AdminTranslations.php:893 msgid "Advanced configuration of the Pix experience" msgstr "Configuración avanzada de la experiencia Pix" -#: ../../src/Translations/AdminTranslations.php:900 +#: ../../src/Translations/AdminTranslations.php:901 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." -#: ../../src/Translations/AdminTranslations.php:901 +#: ../../src/Translations/AdminTranslations.php:902 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../src/Translations/AdminTranslations.php:903 +#: ../../src/Translations/AdminTranslations.php:904 msgid "" "Choose which data to register as Pix keys. After registering, you can set up " "Pix in your checkout." @@ -1403,7 +1413,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el Pix en tu checkout." -#: ../../src/Translations/AdminTranslations.php:904 +#: ../../src/Translations/AdminTranslations.php:905 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1411,7 +1421,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../src/Translations/AdminTranslations.php:905 +#: ../../src/Translations/AdminTranslations.php:906 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1419,11 +1429,11 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../src/Translations/AdminTranslations.php:906 +#: ../../src/Translations/AdminTranslations.php:907 msgid "Learn more about Pix" msgstr "Más información sobre Pix" -#: ../../src/Translations/AdminTranslations.php:907 +#: ../../src/Translations/AdminTranslations.php:908 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1431,82 +1441,82 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../src/Translations/AdminTranslations.php:908 +#: ../../src/Translations/AdminTranslations.php:909 msgid "click here." msgstr "haz clic aquí." -#: ../../src/Translations/AdminTranslations.php:921 +#: ../../src/Translations/AdminTranslations.php:922 msgid "To enable test mode" msgstr "Para activar el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:923 +#: ../../src/Translations/AdminTranslations.php:924 msgid "copy your test credentials" msgstr "copia tus credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:924 +#: ../../src/Translations/AdminTranslations.php:925 msgid "and paste them above in section 1 of this page" msgstr "y pégalas en la sección 1 de esta página" -#: ../../src/Translations/AdminTranslations.php:929 +#: ../../src/Translations/AdminTranslations.php:930 msgid "Create your" msgstr "Crea tu" -#: ../../src/Translations/AdminTranslations.php:931 +#: ../../src/Translations/AdminTranslations.php:932 msgid "test user" msgstr "usuario de prueba" -#: ../../src/Translations/AdminTranslations.php:932 +#: ../../src/Translations/AdminTranslations.php:933 msgid "" "(Optional. Can be used in Production Mode and Test Mode, to test payments)" msgstr "" "(Opcional. Se puede utilizar en modo de producción y en modo de prueba, para " "probar los pagos)" -#: ../../src/Translations/AdminTranslations.php:938 +#: ../../src/Translations/AdminTranslations.php:939 msgid "Use our test cards" msgstr "Utiliza nuestras tarjetas de prueba" -#: ../../src/Translations/AdminTranslations.php:939 +#: ../../src/Translations/AdminTranslations.php:940 msgid "never use real cards" msgstr "nunca utilices tarjetas reales" -#: ../../src/Translations/AdminTranslations.php:945 +#: ../../src/Translations/AdminTranslations.php:946 msgid "Visit your store" msgstr "Visita tu tienda" -#: ../../src/Translations/AdminTranslations.php:946 +#: ../../src/Translations/AdminTranslations.php:947 msgid "to test purchases" msgstr "para testear compras" -#: ../../src/Translations/AdminTranslations.php:950 +#: ../../src/Translations/AdminTranslations.php:951 msgid "4. Test your store before you sell" msgstr "4. Testea tu tienda antes de vender" -#: ../../src/Translations/AdminTranslations.php:951 +#: ../../src/Translations/AdminTranslations.php:952 msgid "Choose how you want to operate your store:" msgstr "Elige cómo quieres operar tu tienda:" -#: ../../src/Translations/AdminTranslations.php:952 +#: ../../src/Translations/AdminTranslations.php:953 msgid "Test Mode" msgstr "Modo Test" -#: ../../src/Translations/AdminTranslations.php:953 +#: ../../src/Translations/AdminTranslations.php:954 msgid "Sale Mode (Production)" msgstr "Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:954 +#: ../../src/Translations/AdminTranslations.php:955 msgid "Mercado Pago payment methods in Production Mode" msgstr "Medios de pago Mercado Pago en Modo Produción" -#: ../../src/Translations/AdminTranslations.php:955 +#: ../../src/Translations/AdminTranslations.php:956 msgid "Mercado Pago payment methods in Test Mode" msgstr "Medios de pago Mercado Pago en Modo Test" -#: ../../src/Translations/AdminTranslations.php:956 +#: ../../src/Translations/AdminTranslations.php:957 msgid "Enter test credentials" msgstr "Ingresa las credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:957 +#: ../../src/Translations/AdminTranslations.php:958 msgid "" "Test the experience in Test Mode and then enable the Sale Mode (Production) " "to sell." @@ -1514,114 +1524,114 @@ msgstr "" "Testea la experiencia en Modo Test. Luego activa el Modo Ventas (Producción) " "para realizar ventas." -#: ../../src/Translations/AdminTranslations.php:958 +#: ../../src/Translations/AdminTranslations.php:959 msgid "Mercado Pago Checkouts disabled for real collections." msgstr "Checkouts Mercado Pago inactivos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:959 +#: ../../src/Translations/AdminTranslations.php:960 msgid "Test Mode rules." msgstr "Reglas del modo test." -#: ../../src/Translations/AdminTranslations.php:960 +#: ../../src/Translations/AdminTranslations.php:961 msgid "Mercado Pago Checkouts enabled for real collections." msgstr "Checkouts Mercado Pago activos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:961 +#: ../../src/Translations/AdminTranslations.php:962 msgid "The clients can make real purchases in your store." msgstr "Los clientes pueden hacer compras reales en tu tienda." -#: ../../src/Translations/AdminTranslations.php:966 +#: ../../src/Translations/AdminTranslations.php:967 msgid "Store in sale mode (Production)" msgstr "Tienda en Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:967 +#: ../../src/Translations/AdminTranslations.php:968 msgid "Store under test" msgstr "Tienda en Modo Test" -#: ../../src/Translations/AdminTranslations.php:968 +#: ../../src/Translations/AdminTranslations.php:969 msgid "Save changes" msgstr "Guardar cambios" -#: ../../src/Translations/AdminTranslations.php:980 +#: ../../src/Translations/AdminTranslations.php:981 msgid "Store business fields are valid" msgstr "Los campos comerciales de la tienda son válidos" -#: ../../src/Translations/AdminTranslations.php:981 +#: ../../src/Translations/AdminTranslations.php:982 msgid "Store business fields could not be validated" msgstr "Los campos comerciales de la tienda no se pudieron validar" -#: ../../src/Translations/AdminTranslations.php:982 +#: ../../src/Translations/AdminTranslations.php:983 msgid "At least one payment method is enabled" msgstr "Al menos un método de pago está habilitado" -#: ../../src/Translations/AdminTranslations.php:983 +#: ../../src/Translations/AdminTranslations.php:984 msgid "No payment method enabled" msgstr "Ningún método de pago habilitado" -#: ../../src/Translations/AdminTranslations.php:984 +#: ../../src/Translations/AdminTranslations.php:985 msgid "Credentials fields are valid" msgstr "Los campos de la credencial son válidos" -#: ../../src/Translations/AdminTranslations.php:985 +#: ../../src/Translations/AdminTranslations.php:986 msgid "Credentials fields could not be validated" msgstr "No se pudieron validar los campos de credenciales" -#: ../../src/Translations/AdminTranslations.php:997 +#: ../../src/Translations/AdminTranslations.php:998 msgid "Valid Public Key" msgstr "Public key válida" -#: ../../src/Translations/AdminTranslations.php:998 +#: ../../src/Translations/AdminTranslations.php:999 msgid "Invalid Public Key" msgstr "Public key no válida" -#: ../../src/Translations/AdminTranslations.php:999 +#: ../../src/Translations/AdminTranslations.php:1000 msgid "Valid Access Token" msgstr "Access token válido" -#: ../../src/Translations/AdminTranslations.php:1000 +#: ../../src/Translations/AdminTranslations.php:1001 msgid "Invalid Access Token" msgstr "Access token no válido" -#: ../../src/Translations/AdminTranslations.php:1012 +#: ../../src/Translations/AdminTranslations.php:1013 msgid "Credentials were updated" msgstr "Se actualizaron las credenciales" -#: ../../src/Translations/AdminTranslations.php:1013 +#: ../../src/Translations/AdminTranslations.php:1014 msgid "" "Your store has exited Test Mode and is making real sales in Production Mode." msgstr "" "Ahora su tienda está fuera del modo de prueba y está realizando ventas " "reales en el modo de producción." -#: ../../src/Translations/AdminTranslations.php:1014 +#: ../../src/Translations/AdminTranslations.php:1015 msgid "To test the store, re-enter both test credentials." msgstr "Para probar la tienda, vuelva a ingresar ambas credenciales de prueba." -#: ../../src/Translations/AdminTranslations.php:1015 +#: ../../src/Translations/AdminTranslations.php:1016 msgid "Invalid credentials" msgstr "Credenciales no válidas" -#: ../../src/Translations/AdminTranslations.php:1016 +#: ../../src/Translations/AdminTranslations.php:1017 msgid "See our manual to learn" msgstr "Consulte nuestro manual para saber" -#: ../../src/Translations/AdminTranslations.php:1017 +#: ../../src/Translations/AdminTranslations.php:1018 msgid "how to enter the credentials the right way." msgstr "como ingresar las credenciales de forma correcta." -#: ../../src/Translations/AdminTranslations.php:1018 +#: ../../src/Translations/AdminTranslations.php:1019 msgid " for test mode" msgstr " para el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:1030 +#: ../../src/Translations/AdminTranslations.php:1031 msgid "Store information is valid" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:1043 +#: ../../src/Translations/AdminTranslations.php:1044 msgid "Attention:" msgstr "Atención:" -#: ../../src/Translations/AdminTranslations.php:1044 +#: ../../src/Translations/AdminTranslations.php:1045 msgid "" "The currency settings you have in WooCommerce are not compatible with the " "currency you use in your Mercado Pago account. Please activate the currency " @@ -1630,19 +1640,19 @@ msgstr "" "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." -#: ../../src/Translations/AdminTranslations.php:1047 +#: ../../src/Translations/AdminTranslations.php:1048 msgid "We are converting your currency from: " msgstr "Ahora convertimos tu moneda de: " -#: ../../src/Translations/AdminTranslations.php:1063 +#: ../../src/Translations/AdminTranslations.php:1064 msgid "to " msgstr "a " -#: ../../src/Translations/AdminTranslations.php:1074 +#: ../../src/Translations/AdminTranslations.php:1075 msgid "Payment status on Mercado Pago" msgstr "Estado de pago en el Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1075 +#: ../../src/Translations/AdminTranslations.php:1076 msgid "" "This is the payment status of your Mercado Pago Activities. To check the " "order status, please refer to Order details." @@ -1650,52 +1660,52 @@ msgstr "" "Este es el estado del pago de las Actividades de tu Mercado Pago. Para " "consultar el estado del pedido, consulta en Detalles del Pedido." -#: ../../src/Translations/AdminTranslations.php:1076, -#: ../../src/Translations/AdminTranslations.php:1078 +#: ../../src/Translations/AdminTranslations.php:1077, +#: ../../src/Translations/AdminTranslations.php:1079 msgid "View purchase details at Mercado Pago" msgstr "Ver detalles de compra en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1077, -#: ../../src/Translations/AdminTranslations.php:1079, -#: ../../src/Translations/AdminTranslations.php:1081 +#: ../../src/Translations/AdminTranslations.php:1078, +#: ../../src/Translations/AdminTranslations.php:1080, +#: ../../src/Translations/AdminTranslations.php:1082 msgid "Sync order status" msgstr "Sincronizar el estado del pedido" -#: ../../src/Translations/AdminTranslations.php:1080 +#: ../../src/Translations/AdminTranslations.php:1081 msgid "Consult the reasons for refusal" msgstr "Consultar motivos de rechazo" -#: ../../src/Translations/AdminTranslations.php:1082 +#: ../../src/Translations/AdminTranslations.php:1083 msgid "Order update successfully. This page will be reloaded..." msgstr "Actualización del pedido con éxito. Esta página será recargada…" -#: ../../src/Translations/AdminTranslations.php:1083 +#: ../../src/Translations/AdminTranslations.php:1084 msgid "Unable to update order:" msgstr "No se puede actualizar el pedido:" -#: ../../src/Translations/AdminTranslations.php:1084 +#: ../../src/Translations/AdminTranslations.php:1085 msgid "Payment made" msgstr "Pago realizado" -#: ../../src/Translations/AdminTranslations.php:1085 +#: ../../src/Translations/AdminTranslations.php:1086 msgid "Payment made by the buyer and already credited in the account." msgstr "" "El pago realizado por el comprador y que ya está acreditado en la cuenta." -#: ../../src/Translations/AdminTranslations.php:1086 +#: ../../src/Translations/AdminTranslations.php:1087 msgid "Call resolved" msgstr "Llamado resuelto" -#: ../../src/Translations/AdminTranslations.php:1087, -#: ../../src/Translations/AdminTranslations.php:1137 +#: ../../src/Translations/AdminTranslations.php:1088, +#: ../../src/Translations/AdminTranslations.php:1138 msgid "Please contact Mercado Pago for further details." msgstr "Contacta a Mercado Pago para saber más detalles." -#: ../../src/Translations/AdminTranslations.php:1088 +#: ../../src/Translations/AdminTranslations.php:1089 msgid "Payment refunded" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1089 +#: ../../src/Translations/AdminTranslations.php:1090 msgid "" "Your refund request has been made. Please contact Mercado Pago for further " "details." @@ -1703,59 +1713,59 @@ msgstr "" "Tu pedido de reebolso ya fue realizado. Contacta a Mercado Pago para saber " "más detalles." -#: ../../src/Translations/AdminTranslations.php:1090, -#: ../../src/Translations/AdminTranslations.php:1092 +#: ../../src/Translations/AdminTranslations.php:1091, +#: ../../src/Translations/AdminTranslations.php:1093 msgid "Payment returned" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1091 +#: ../../src/Translations/AdminTranslations.php:1092 msgid "The payment has been returned to the client." msgstr "El pago ya fue devuelto al cliente." -#: ../../src/Translations/AdminTranslations.php:1093 +#: ../../src/Translations/AdminTranslations.php:1094 msgid "The payment has been partially returned to the client." msgstr "El pago ya fue devuelto parcialmente al cliente." -#: ../../src/Translations/AdminTranslations.php:1094 +#: ../../src/Translations/AdminTranslations.php:1095 msgid "Payment canceled" msgstr "Pago cancelado" -#: ../../src/Translations/AdminTranslations.php:1095 +#: ../../src/Translations/AdminTranslations.php:1096 msgid "The payment has been successfully canceled." msgstr "El pago fue cancelado con éxito." -#: ../../src/Translations/AdminTranslations.php:1096 +#: ../../src/Translations/AdminTranslations.php:1097 msgid "Purchase canceled" msgstr "Compra cancelada" -#: ../../src/Translations/AdminTranslations.php:1097 +#: ../../src/Translations/AdminTranslations.php:1098 msgid "The payment has been canceled by the customer." msgstr "El pago fue cancelado por el cliente." -#: ../../src/Translations/AdminTranslations.php:1098, -#: ../../src/Translations/AdminTranslations.php:1100, -#: ../../src/Translations/AdminTranslations.php:1102, -#: ../../src/Translations/AdminTranslations.php:1104, -#: ../../src/Translations/AdminTranslations.php:1106, -#: ../../src/Translations/AdminTranslations.php:1114, -#: ../../src/Translations/AdminTranslations.php:1116, -#: ../../src/Translations/AdminTranslations.php:1118, -#: ../../src/Translations/AdminTranslations.php:1120, -#: ../../src/Translations/AdminTranslations.php:1122, -#: ../../src/Translations/AdminTranslations.php:1124, -#: ../../src/Translations/AdminTranslations.php:1126, -#: ../../src/Translations/AdminTranslations.php:1181 -msgid "Pending payment" -msgstr "Cobro pendiente" - #: ../../src/Translations/AdminTranslations.php:1099, #: ../../src/Translations/AdminTranslations.php:1101, #: ../../src/Translations/AdminTranslations.php:1103, -#: ../../src/Translations/AdminTranslations.php:1105 +#: ../../src/Translations/AdminTranslations.php:1105, +#: ../../src/Translations/AdminTranslations.php:1107, +#: ../../src/Translations/AdminTranslations.php:1115, +#: ../../src/Translations/AdminTranslations.php:1117, +#: ../../src/Translations/AdminTranslations.php:1119, +#: ../../src/Translations/AdminTranslations.php:1121, +#: ../../src/Translations/AdminTranslations.php:1123, +#: ../../src/Translations/AdminTranslations.php:1125, +#: ../../src/Translations/AdminTranslations.php:1127, +#: ../../src/Translations/AdminTranslations.php:1182 +msgid "Pending payment" +msgstr "Cobro pendiente" + +#: ../../src/Translations/AdminTranslations.php:1100, +#: ../../src/Translations/AdminTranslations.php:1102, +#: ../../src/Translations/AdminTranslations.php:1104, +#: ../../src/Translations/AdminTranslations.php:1106 msgid "Awaiting payment from the buyer." msgstr "Esperando el pago del comprador." -#: ../../src/Translations/AdminTranslations.php:1107 +#: ../../src/Translations/AdminTranslations.php:1108 msgid "" "We are veryfing the payment. We will notify you by email in up to 6 hours if " "everything is fine so that you can deliver the product or provide the " @@ -1764,19 +1774,19 @@ msgstr "" "Estamos revisando el pago. En menos de 6 horas te avisaremos por e-mail si " "está todo bien para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1108, -#: ../../src/Translations/AdminTranslations.php:1132, -#: ../../src/Translations/AdminTranslations.php:1148, -#: ../../src/Translations/AdminTranslations.php:1167, -#: ../../src/Translations/AdminTranslations.php:1171, -#: ../../src/Translations/AdminTranslations.php:1173, -#: ../../src/Translations/AdminTranslations.php:1175, -#: ../../src/Translations/AdminTranslations.php:1179 +#: ../../src/Translations/AdminTranslations.php:1109, +#: ../../src/Translations/AdminTranslations.php:1133, +#: ../../src/Translations/AdminTranslations.php:1149, +#: ../../src/Translations/AdminTranslations.php:1168, +#: ../../src/Translations/AdminTranslations.php:1172, +#: ../../src/Translations/AdminTranslations.php:1174, +#: ../../src/Translations/AdminTranslations.php:1176, +#: ../../src/Translations/AdminTranslations.php:1180 msgid "Declined payment" msgstr "Cobro rechazado" -#: ../../src/Translations/AdminTranslations.php:1109, -#: ../../src/Translations/AdminTranslations.php:1133 +#: ../../src/Translations/AdminTranslations.php:1110, +#: ../../src/Translations/AdminTranslations.php:1134 msgid "" "The card-issuing bank declined the payment. Please ask your client to use " "another card or to get in touch with the bank." @@ -1785,27 +1795,27 @@ msgstr "" "“\n" "“otra tarjeta o que se comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1110 +#: ../../src/Translations/AdminTranslations.php:1111 msgid "Payment authorized. Awaiting capture." msgstr "Pago autorizado. Esperando captura." -#: ../../src/Translations/AdminTranslations.php:1111 +#: ../../src/Translations/AdminTranslations.php:1112 msgid "" "The payment has been authorized on the client's card. Please capture the " "payment." msgstr "" "Ya se autorizó el pago en la tarjeta del cliente. Haz la captura del pago." -#: ../../src/Translations/AdminTranslations.php:1112 +#: ../../src/Translations/AdminTranslations.php:1113 msgid "Payment in process" msgstr "Pago en proceso" -#: ../../src/Translations/AdminTranslations.php:1113, -#: ../../src/Translations/AdminTranslations.php:1123 +#: ../../src/Translations/AdminTranslations.php:1114, +#: ../../src/Translations/AdminTranslations.php:1124 msgid "Please wait or contact Mercado Pago for further details" msgstr "Espera o contacta a Mercado Pago para saber más detalles" -#: ../../src/Translations/AdminTranslations.php:1115 +#: ../../src/Translations/AdminTranslations.php:1116 msgid "" "The bank is reviewing the payment. As soon as we have their confirmation, we " "will notify you via email so that you can deliver the product or provide the " @@ -1814,33 +1824,33 @@ msgstr "" "El banco está revisando el pago. Te avisaremos por e-mail cuando esté " "confirmado para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1117, -#: ../../src/Translations/AdminTranslations.php:1119, -#: ../../src/Translations/AdminTranslations.php:1121 +#: ../../src/Translations/AdminTranslations.php:1118, +#: ../../src/Translations/AdminTranslations.php:1120, +#: ../../src/Translations/AdminTranslations.php:1122 msgid "Awaiting payment information validation." msgstr "Esperando validación de los datos de pago." -#: ../../src/Translations/AdminTranslations.php:1125 +#: ../../src/Translations/AdminTranslations.php:1126 msgid "Waiting for the buyer." msgstr "Esperando al comprador." -#: ../../src/Translations/AdminTranslations.php:1127 +#: ../../src/Translations/AdminTranslations.php:1128 msgid "Waiting for the card issuer." msgstr "Espererando al emisor de la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1128, -#: ../../src/Translations/AdminTranslations.php:1130, -#: ../../src/Translations/AdminTranslations.php:1134, -#: ../../src/Translations/AdminTranslations.php:1155, -#: ../../src/Translations/AdminTranslations.php:1177 -msgid "The card issuing bank declined the payment" -msgstr "El banco emisor de la tarjeta rechazó el pago" - #: ../../src/Translations/AdminTranslations.php:1129, #: ../../src/Translations/AdminTranslations.php:1131, #: ../../src/Translations/AdminTranslations.php:1135, #: ../../src/Translations/AdminTranslations.php:1156, #: ../../src/Translations/AdminTranslations.php:1178 +msgid "The card issuing bank declined the payment" +msgstr "El banco emisor de la tarjeta rechazó el pago" + +#: ../../src/Translations/AdminTranslations.php:1130, +#: ../../src/Translations/AdminTranslations.php:1132, +#: ../../src/Translations/AdminTranslations.php:1136, +#: ../../src/Translations/AdminTranslations.php:1157, +#: ../../src/Translations/AdminTranslations.php:1179 msgid "" "Please recommend your customer to pay with another payment method or to " "contact their bank." @@ -1848,32 +1858,32 @@ msgstr "" "Recomiéndale a tu cliente que pague con otro medio de pago o que se " "comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1136 +#: ../../src/Translations/AdminTranslations.php:1137 msgid "Mercado Pago did not process the payment" msgstr "Mercado Pago no procesó el pago" -#: ../../src/Translations/AdminTranslations.php:1138, -#: ../../src/Translations/AdminTranslations.php:1183 -msgid "Expired payment deadline" -msgstr "Venció el plazo para el pago" - #: ../../src/Translations/AdminTranslations.php:1139, #: ../../src/Translations/AdminTranslations.php:1184 -msgid "The client did not pay within the time limit." -msgstr "El cliente no pagó dentro del límite de tiempo." +msgid "Expired payment deadline" +msgstr "Venció el plazo para el pago" #: ../../src/Translations/AdminTranslations.php:1140, -#: ../../src/Translations/AdminTranslations.php:1142, -#: ../../src/Translations/AdminTranslations.php:1144, #: ../../src/Translations/AdminTranslations.php:1185 -msgid "Your customer entered one or more incorrect card details" -msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" +msgid "The client did not pay within the time limit." +msgstr "El cliente no pagó dentro del límite de tiempo." #: ../../src/Translations/AdminTranslations.php:1141, #: ../../src/Translations/AdminTranslations.php:1143, #: ../../src/Translations/AdminTranslations.php:1145, -#: ../../src/Translations/AdminTranslations.php:1186, -#: ../../src/Translations/AdminTranslations.php:1187 +#: ../../src/Translations/AdminTranslations.php:1186 +msgid "Your customer entered one or more incorrect card details" +msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" + +#: ../../src/Translations/AdminTranslations.php:1142, +#: ../../src/Translations/AdminTranslations.php:1144, +#: ../../src/Translations/AdminTranslations.php:1146, +#: ../../src/Translations/AdminTranslations.php:1187, +#: ../../src/Translations/AdminTranslations.php:1188 msgid "" "Please ask them to enter to enter them again exactly as they appear on the " "card or on their bank app to complete the payment." @@ -1881,17 +1891,17 @@ msgstr "" "Pídele que vuelva a ingresarlos tal como figuran en la tarjeta o en la app " "de su banco para finalizar el pago." -#: ../../src/Translations/AdminTranslations.php:1146, -#: ../../src/Translations/AdminTranslations.php:1169 +#: ../../src/Translations/AdminTranslations.php:1147, +#: ../../src/Translations/AdminTranslations.php:1170 msgid "We protected you from a suspicious payment" msgstr "Te protegimos de un pago sospechoso" -#: ../../src/Translations/AdminTranslations.php:1147 +#: ../../src/Translations/AdminTranslations.php:1148 msgid "For safety reasons, this transaction cannot be completed." msgstr "Por motivos de seguridad, esta transacción no podrá ser finalizada." -#: ../../src/Translations/AdminTranslations.php:1149, -#: ../../src/Translations/AdminTranslations.php:1168 +#: ../../src/Translations/AdminTranslations.php:1150, +#: ../../src/Translations/AdminTranslations.php:1169 msgid "" "The buyer is suspended in our platform. Your client must contact us to check " "what happened." @@ -1899,12 +1909,12 @@ msgstr "" "El comprador está suspendido en Mercado Pago. Tu cliente debe comunicarse " "con nosotros para ver qué pasó." -#: ../../src/Translations/AdminTranslations.php:1150 +#: ../../src/Translations/AdminTranslations.php:1151 msgid "For safety reasons, the card issuing bank declined the payment" msgstr "Por seguridad, el banco emisor de la tarjeta rechazó el pago" -#: ../../src/Translations/AdminTranslations.php:1151, -#: ../../src/Translations/AdminTranslations.php:1170 +#: ../../src/Translations/AdminTranslations.php:1152, +#: ../../src/Translations/AdminTranslations.php:1171 msgid "" "Recommend your customer to pay with their usual payment method and device " "for online purchases." @@ -1912,40 +1922,40 @@ msgstr "" "Recomiéndale a tu cliente que pague con el medio de pago y dispositivo que " "suele usar para compras online." -#: ../../src/Translations/AdminTranslations.php:1152 +#: ../../src/Translations/AdminTranslations.php:1153 msgid "Your customer's credit card has no available limit" msgstr "La tarjeta de crédito de tu cliente no tiene límite disponible" -#: ../../src/Translations/AdminTranslations.php:1153, #: ../../src/Translations/AdminTranslations.php:1154, -#: ../../src/Translations/AdminTranslations.php:1158 +#: ../../src/Translations/AdminTranslations.php:1155, +#: ../../src/Translations/AdminTranslations.php:1159 msgid "" "Please ask them to pay with another card or to choose another payment method." msgstr "Pídele que pague con otra tarjeta o que elija otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1157 +#: ../../src/Translations/AdminTranslations.php:1158 msgid "Your customer reached the limit of payment attempts with this card" msgstr "Tu cliente alcanzó el límite de intentos de pago con la tarjeta" -#: ../../src/Translations/AdminTranslations.php:1159 +#: ../../src/Translations/AdminTranslations.php:1160 msgid "" "Your customer's card does not accept the number of installments selected" msgstr "La tarjeta de tu cliente no acepta la cantidad de pagos que seleccionó" -#: ../../src/Translations/AdminTranslations.php:1160 +#: ../../src/Translations/AdminTranslations.php:1161 msgid "" "Please ask them to choose a different number of installments or to pay with " "another method." msgstr "" "Pídele que elija una cantidad de pagos diferente o que use con otro medio." -#: ../../src/Translations/AdminTranslations.php:1161, -#: ../../src/Translations/AdminTranslations.php:1188 +#: ../../src/Translations/AdminTranslations.php:1162, +#: ../../src/Translations/AdminTranslations.php:1189 msgid "Your customer needs to authorize the payment through their bank" msgstr "Tu cliente necesita autorizar el pago con su banco" -#: ../../src/Translations/AdminTranslations.php:1162, -#: ../../src/Translations/AdminTranslations.php:1189 +#: ../../src/Translations/AdminTranslations.php:1163, +#: ../../src/Translations/AdminTranslations.php:1190 msgid "" "Please ask them to call the telephone number on their card or to pay with " "another method." @@ -1953,20 +1963,20 @@ msgstr "" "Pídele que llame al teléfono que está en la tarjeta o que pague con otro " "medio." -#: ../../src/Translations/AdminTranslations.php:1163 +#: ../../src/Translations/AdminTranslations.php:1164 msgid "" "The payment was declined because your customer already paid for this purchase" msgstr "El pago fue rechazado porque tu cliente ya pagó esta compra" -#: ../../src/Translations/AdminTranslations.php:1164 +#: ../../src/Translations/AdminTranslations.php:1165 msgid "Check your approved payments to verify it." msgstr "Revisa tu cobros aprobados para verificarlo." -#: ../../src/Translations/AdminTranslations.php:1165 +#: ../../src/Translations/AdminTranslations.php:1166 msgid "Your customer's card was is not activated yet" msgstr "La tarjeta de tu cliente aún no está habilitada" -#: ../../src/Translations/AdminTranslations.php:1166 +#: ../../src/Translations/AdminTranslations.php:1167 msgid "" "Please ask them to contact their bank by calling the number on the back of " "their card or to pay with another method." @@ -1974,7 +1984,7 @@ msgstr "" "Pídele que se comunique con su banco al número que está en el dorso de la " "tarjeta o que pague con otro medio." -#: ../../src/Translations/AdminTranslations.php:1172 +#: ../../src/Translations/AdminTranslations.php:1173 msgid "" "This payment was declined because it did not pass Mercado Pago security " "controls. Please ask your client to use another card." @@ -1982,7 +1992,7 @@ msgstr "" "Rechazamos este pago porque no pasó los controles de seguridad de Mercado " "Pago. Pedile a tu cliente que use otra tarjeta." -#: ../../src/Translations/AdminTranslations.php:1174 +#: ../../src/Translations/AdminTranslations.php:1175 msgid "" "The amount exceeded the card limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -1990,8 +2000,8 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1176, -#: ../../src/Translations/AdminTranslations.php:1180 +#: ../../src/Translations/AdminTranslations.php:1177, +#: ../../src/Translations/AdminTranslations.php:1181 msgid "" "Please ask your client to use another card or to get in touch with the card " "issuer." @@ -1999,7 +2009,7 @@ msgstr "" "Pídele a tu cliente que use otra tarjeta o que se comunique con el emisor de " "la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1182 +#: ../../src/Translations/AdminTranslations.php:1183 msgid "" "The amount exceeded the card's limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -2007,21 +2017,21 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1190 +#: ../../src/Translations/AdminTranslations.php:1191 msgid "Your customer's debit card has insufficient funds" msgstr "La tarjeta de débito de tu cliente no tiene saldo suficiente" -#: ../../src/Translations/AdminTranslations.php:1191 +#: ../../src/Translations/AdminTranslations.php:1192 msgid "" "Please recommend your customer to pay with another card or to choose another " "payment method." msgstr "Pídele que pague con otra tarjeta o que elige otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1192 +#: ../../src/Translations/AdminTranslations.php:1193 msgid "Something went wrong and the payment was declined" msgstr "El pago fue rechazado porque hubo un error" -#: ../../src/Translations/AdminTranslations.php:1193 +#: ../../src/Translations/AdminTranslations.php:1194 msgid "" "Please recommend you customer to try again or to pay with another payment " "method." diff --git a/i18n/languages/woocommerce-mercadopago-es_VE.mo b/i18n/languages/woocommerce-mercadopago-es_VE.mo index bd1af4ac49f7dfee76b3c4a9adea6e331edd16a2..392533cbdfcbb70849524b76c5c5421daba707ad 100644 GIT binary patch delta 10494 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 delta 10191 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 CD_YP1 diff --git a/i18n/languages/woocommerce-mercadopago-es_VE.po b/i18n/languages/woocommerce-mercadopago-es_VE.po index 56c6233a1..d807f91c5 100644 --- a/i18n/languages/woocommerce-mercadopago-es_VE.po +++ b/i18n/languages/woocommerce-mercadopago-es_VE.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" -"POT-Creation-Date: 2024-02-01 11:32+0000\n" +"POT-Creation-Date: 2024-02-07 19:47+0000\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -15,22 +15,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.2\n" -#: ../../src/WoocommerceMercadoPago.php:426, +#: ../../src/WoocommerceMercadoPago.php:449, #: ../../src/Translations/AdminTranslations.php:166 msgid "Activate WooCommerce" msgstr "Activar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:427, +#: ../../src/WoocommerceMercadoPago.php:450, #: ../../src/Translations/AdminTranslations.php:167 msgid "Install WooCommerce" msgstr "Instalar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:428, +#: ../../src/WoocommerceMercadoPago.php:451, #: ../../src/Translations/AdminTranslations.php:168 msgid "See WooCommerce" msgstr "Ver WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:430, +#: ../../src/WoocommerceMercadoPago.php:453, #: ../../src/Translations/AdminTranslations.php:157 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" @@ -103,50 +103,60 @@ msgstr "" msgid "Activate" msgstr "Activar" -#: ../../src/Translations/AdminTranslations.php:188 +#: ../../src/Translations/AdminTranslations.php:177 +msgid "" +"Unfortunately, the language configured in your WordPress is not compatible " +"with our plugin. For the best experience, please switch to a supported " +"language." +msgstr "" +"Lamentablemente, el idioma configurado en tu WordPress no es compatible con " +"nuestro plugin. Para disfrutar de la mejor experiencia, cambia a un idioma " +"compatible." + +#: ../../src/Translations/AdminTranslations.php:189 msgid "Set plugin" msgstr "Configurar plugin" -#: ../../src/Translations/AdminTranslations.php:189, -#: ../../src/Translations/AdminTranslations.php:743, -#: ../../src/Translations/AdminTranslations.php:802 +#: ../../src/Translations/AdminTranslations.php:190, +#: ../../src/Translations/AdminTranslations.php:744, +#: ../../src/Translations/AdminTranslations.php:803 msgid "Payment methods" msgstr "Medios de pagos" -#: ../../src/Translations/AdminTranslations.php:190, -#: ../../src/Translations/AdminTranslations.php:261 +#: ../../src/Translations/AdminTranslations.php:191, +#: ../../src/Translations/AdminTranslations.php:262 msgid "Plugin manual" msgstr "Manual del plugin" -#: ../../src/Translations/AdminTranslations.php:202 +#: ../../src/Translations/AdminTranslations.php:203 msgid "Cancel order" msgstr "Cancelar orden" -#: ../../src/Translations/AdminTranslations.php:203 +#: ../../src/Translations/AdminTranslations.php:204 msgid "Mercado Pago commission:" msgstr "Comisión de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:204 +#: ../../src/Translations/AdminTranslations.php:205 msgid "Represents the commission configured on plugin settings." msgstr "Representa la comisión configurada en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:205 +#: ../../src/Translations/AdminTranslations.php:206 msgid "Mercado Pago discount:" msgstr "Descuento de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:206 +#: ../../src/Translations/AdminTranslations.php:207 msgid "Represents the discount configured on plugin settings." msgstr "Representa el descuento configurado en la configuración del plugin." -#: ../../src/Translations/AdminTranslations.php:207 +#: ../../src/Translations/AdminTranslations.php:208 msgid "Represents the installment fee charged by Mercado Pago." msgstr "Representa la comisión a plazos cobrada por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:208 +#: ../../src/Translations/AdminTranslations.php:209 msgid "Mercado Pago Installment Fee:" msgstr "Cuota de Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:209 +#: ../../src/Translations/AdminTranslations.php:210 msgid "" "Represents the total purchase plus the installment fee charged by Mercado " "Pago." @@ -154,91 +164,91 @@ msgstr "" "Representa el total de la compra más la comisión de fraccionamiento cobrada " "por Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:210 +#: ../../src/Translations/AdminTranslations.php:211 msgid "Mercado Pago Total:" msgstr "Mercado Pago Total:" -#: ../../src/Translations/AdminTranslations.php:223 +#: ../../src/Translations/AdminTranslations.php:224 msgid "Accept" msgstr "Acepta" -#: ../../src/Translations/AdminTranslations.php:224 +#: ../../src/Translations/AdminTranslations.php:225 msgid "payments on the spot" msgstr "pagos al instante" -#: ../../src/Translations/AdminTranslations.php:225 +#: ../../src/Translations/AdminTranslations.php:226 msgid "with" msgstr "con" -#: ../../src/Translations/AdminTranslations.php:226 +#: ../../src/Translations/AdminTranslations.php:227 msgid "the" msgstr "toda la" -#: ../../src/Translations/AdminTranslations.php:227 +#: ../../src/Translations/AdminTranslations.php:228 msgid "security" msgstr "seguridad" -#: ../../src/Translations/AdminTranslations.php:228 +#: ../../src/Translations/AdminTranslations.php:229 msgid "from Mercado Pago" msgstr "de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:233 +#: ../../src/Translations/AdminTranslations.php:234 msgid "Choose" msgstr "Elige" -#: ../../src/Translations/AdminTranslations.php:234 +#: ../../src/Translations/AdminTranslations.php:235 msgid "when you want to receive the money" msgstr "cuándo quieres recibir el dinero" -#: ../../src/Translations/AdminTranslations.php:235 +#: ../../src/Translations/AdminTranslations.php:236 msgid "from your sales and if you want to offer" msgstr "de las ventas y si quieres ofrecer" -#: ../../src/Translations/AdminTranslations.php:236 +#: ../../src/Translations/AdminTranslations.php:237 msgid "interest-free installments" msgstr "cuotas sin interés" -#: ../../src/Translations/AdminTranslations.php:237 +#: ../../src/Translations/AdminTranslations.php:238 msgid "to your clients." msgstr "a los clientes." -#: ../../src/Translations/AdminTranslations.php:242 +#: ../../src/Translations/AdminTranslations.php:243 msgid "Review the step-by-step of" msgstr "Revisa el paso a paso de" -#: ../../src/Translations/AdminTranslations.php:243 +#: ../../src/Translations/AdminTranslations.php:244 msgid "how to integrate the Mercado Pago Plugin" msgstr "cómo integrar el Plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:244 +#: ../../src/Translations/AdminTranslations.php:245 msgid "on our website for developers." msgstr "en nuestro sitio de desarrolladores." -#: ../../src/Translations/AdminTranslations.php:248 +#: ../../src/Translations/AdminTranslations.php:249 msgid "SSL" msgstr "SSL" -#: ../../src/Translations/AdminTranslations.php:249 +#: ../../src/Translations/AdminTranslations.php:250 msgid "Curl" msgstr "Curl" -#: ../../src/Translations/AdminTranslations.php:250 +#: ../../src/Translations/AdminTranslations.php:251 msgid "GD Extensions" msgstr "Extensiones GD" -#: ../../src/Translations/AdminTranslations.php:252 +#: ../../src/Translations/AdminTranslations.php:253 msgid "Technical requirements" msgstr "Requisitos técnicos" -#: ../../src/Translations/AdminTranslations.php:253 +#: ../../src/Translations/AdminTranslations.php:254 msgid "Collections and installments" msgstr "Cobros y cuotas" -#: ../../src/Translations/AdminTranslations.php:254 +#: ../../src/Translations/AdminTranslations.php:255 msgid "Questions?" msgstr "¿Dudas?" -#: ../../src/Translations/AdminTranslations.php:255 +#: ../../src/Translations/AdminTranslations.php:256 msgid "" "Implementation responsible for transmitting data to Mercado Pago in a secure " "and encrypted way." @@ -246,7 +256,7 @@ msgstr "" "Implementación responsable de transmitir los datos a Mercado Pago de forma " "segura y encriptada." -#: ../../src/Translations/AdminTranslations.php:256 +#: ../../src/Translations/AdminTranslations.php:257 msgid "" "It is an extension responsible for making payments via requests from the " "plugin to Mercado Pago." @@ -254,7 +264,7 @@ msgstr "" "Es una extensión encargada de realizar los pagos a través de requests del " "plugin a Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:257 +#: ../../src/Translations/AdminTranslations.php:258 msgid "" "These extensions are responsible for the implementation and operation of Pix " "in your store." @@ -262,11 +272,11 @@ msgstr "" "Extensiones responsables de la aplicación y el funcionamiento de Pix en su " "tienda." -#: ../../src/Translations/AdminTranslations.php:260 +#: ../../src/Translations/AdminTranslations.php:261 msgid "Set deadlines and fees" msgstr "Ajustar plazos y tasas" -#: ../../src/Translations/AdminTranslations.php:274 +#: ../../src/Translations/AdminTranslations.php:275 msgid "" "To enable orders, you must create and activate production credentials in " "your Mercado Pago Account." @@ -274,79 +284,79 @@ msgstr "" "Para habilitar las ventas, debes crear y activar las credenciales de " "producción en tu cuenta de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:275 +#: ../../src/Translations/AdminTranslations.php:276 msgid "Copy and paste the credentials below." msgstr "Copia y pega tus credenciales a continuación." -#: ../../src/Translations/AdminTranslations.php:280 +#: ../../src/Translations/AdminTranslations.php:281 msgid "You must enter" msgstr "Debe introducir" -#: ../../src/Translations/AdminTranslations.php:281 +#: ../../src/Translations/AdminTranslations.php:282 msgid "production credentials" msgstr "las credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:285 +#: ../../src/Translations/AdminTranslations.php:286 msgid "Public Key" msgstr "Public Key" -#: ../../src/Translations/AdminTranslations.php:286 +#: ../../src/Translations/AdminTranslations.php:287 msgid "Access Token" msgstr "Access Token" -#: ../../src/Translations/AdminTranslations.php:287 +#: ../../src/Translations/AdminTranslations.php:288 msgid "1. Integrate your store with Mercado Pago" msgstr "1. Integra la tienda a Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:288 +#: ../../src/Translations/AdminTranslations.php:289 msgid "Production credentials" msgstr "Credenciales de producción" -#: ../../src/Translations/AdminTranslations.php:289 +#: ../../src/Translations/AdminTranslations.php:290 msgid "Test credentials" msgstr "Credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:291 +#: ../../src/Translations/AdminTranslations.php:292 msgid "Enable Mercado Pago checkouts for test purchases in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para pruebas de compras en la " "tienda." -#: ../../src/Translations/AdminTranslations.php:292 +#: ../../src/Translations/AdminTranslations.php:293 msgid "Enable Mercado Pago checkouts to receive real payments in the store." msgstr "" "Habilita a los checkouts de Mercado Pago para recibir pagos reales en tienda." -#: ../../src/Translations/AdminTranslations.php:293 +#: ../../src/Translations/AdminTranslations.php:294 msgid "Paste your Public Key here" msgstr "Pega aquí tu Public Key" -#: ../../src/Translations/AdminTranslations.php:294 +#: ../../src/Translations/AdminTranslations.php:295 msgid "Paste your Access Token here" msgstr "Pega aquí tu Access Token" -#: ../../src/Translations/AdminTranslations.php:295 +#: ../../src/Translations/AdminTranslations.php:296 msgid "Check credentials" msgstr "Consultar credenciales" -#: ../../src/Translations/AdminTranslations.php:296, -#: ../../src/Translations/AdminTranslations.php:350 +#: ../../src/Translations/AdminTranslations.php:297, +#: ../../src/Translations/AdminTranslations.php:351 msgid "Save and continue" msgstr "Guardar y continuar" -#: ../../src/Translations/AdminTranslations.php:297 +#: ../../src/Translations/AdminTranslations.php:298 msgid "Important! To sell you must enter your credentials." msgstr "¡Importante! Para vender debe introducir sus credenciales." -#: ../../src/Translations/AdminTranslations.php:299 +#: ../../src/Translations/AdminTranslations.php:300 msgid "Enter credentials" msgstr "Introducir credenciales" -#: ../../src/Translations/AdminTranslations.php:300 +#: ../../src/Translations/AdminTranslations.php:301 msgid "Activate your credentials to be able to sell" msgstr "Activa tus credenciales para poder vender" -#: ../../src/Translations/AdminTranslations.php:301 +#: ../../src/Translations/AdminTranslations.php:302 msgid "" "Credentials are codes that you must enter to enable sales. Go below on " "Activate Credentials. On the next screen, use again the Activate Credentials " @@ -357,23 +367,23 @@ msgstr "" "nuevamente el botón Activar Credenciales y complete los campos con la " "información solicitada." -#: ../../src/Translations/AdminTranslations.php:302 +#: ../../src/Translations/AdminTranslations.php:303 msgid "Activate credentials" msgstr "Activar credenciales" -#: ../../src/Translations/AdminTranslations.php:315 +#: ../../src/Translations/AdminTranslations.php:316 msgid "Add the URL to receive payments notifications." msgstr "Ingresa la URL para recibir notificaciones de pago." -#: ../../src/Translations/AdminTranslations.php:316 +#: ../../src/Translations/AdminTranslations.php:317 msgid "Find out more information in the" msgstr "Consulta más información en los" -#: ../../src/Translations/AdminTranslations.php:318 +#: ../../src/Translations/AdminTranslations.php:319 msgid "guides" msgstr "manuales" -#: ../../src/Translations/AdminTranslations.php:323 +#: ../../src/Translations/AdminTranslations.php:324 msgid "" "If you are a Mercado Pago Certified Partner, make sure to add your " "integrator_id." @@ -381,31 +391,31 @@ msgstr "" "Si eres Partner certificado de Mercado Pago, recuerda ingresar tu " "integrator_id." -#: ../../src/Translations/AdminTranslations.php:324 +#: ../../src/Translations/AdminTranslations.php:325 msgid "If you do not have the code, please" msgstr "Si no tienes el código," -#: ../../src/Translations/AdminTranslations.php:326 +#: ../../src/Translations/AdminTranslations.php:327 msgid "request it now" msgstr "solicítalo ahora" -#: ../../src/Translations/AdminTranslations.php:330 +#: ../../src/Translations/AdminTranslations.php:331 msgid "2. Customize your business" msgstr "2. Personaliza tu negocio" -#: ../../src/Translations/AdminTranslations.php:331 +#: ../../src/Translations/AdminTranslations.php:332 msgid "Your store information" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:332 +#: ../../src/Translations/AdminTranslations.php:333 msgid "Advanced integration options (optional)" msgstr "Opciones avanzadas de integración (opcional)" -#: ../../src/Translations/AdminTranslations.php:333 +#: ../../src/Translations/AdminTranslations.php:334 msgid "Debug and Log Mode" msgstr "Modo debug y log" -#: ../../src/Translations/AdminTranslations.php:334 +#: ../../src/Translations/AdminTranslations.php:335 msgid "" "Fill out the following information to have a better experience and offer " "more information to your clients." @@ -413,15 +423,15 @@ msgstr "" "Completa los siguientes datos para tener una mejor experiencia y ofrecer más " "información a los clientes." -#: ../../src/Translations/AdminTranslations.php:335 +#: ../../src/Translations/AdminTranslations.php:336 msgid "Name of your store in your client's invoice" msgstr "Nombre de tu tienda en la factura de los clientes" -#: ../../src/Translations/AdminTranslations.php:336 +#: ../../src/Translations/AdminTranslations.php:337 msgid "Identification in Activities of Mercado Pago" msgstr "Identificación en Actividad de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:337 +#: ../../src/Translations/AdminTranslations.php:338 msgid "" "For further integration of your store with Mercado Pago (IPN, Certified " "Partners, Debug Mode)" @@ -429,202 +439,202 @@ msgstr "" "Para mayor integración de tu tienda con Mercado Pago (IPN, Socios " "Certificados, Modo Debug)" -#: ../../src/Translations/AdminTranslations.php:338 +#: ../../src/Translations/AdminTranslations.php:339 msgid "Store category" msgstr "Categoría de la tienda" -#: ../../src/Translations/AdminTranslations.php:339 +#: ../../src/Translations/AdminTranslations.php:340 msgid "URL for IPN" msgstr "URL para IPN" -#: ../../src/Translations/AdminTranslations.php:340 +#: ../../src/Translations/AdminTranslations.php:341 msgid "Integrator ID" msgstr "Integrator ID" -#: ../../src/Translations/AdminTranslations.php:341 +#: ../../src/Translations/AdminTranslations.php:342 msgid "We record your store's actions in order to provide a better assistance." msgstr "Grabamos las aciones de tu tienda para brindar un mejor soporte." -#: ../../src/Translations/AdminTranslations.php:342 +#: ../../src/Translations/AdminTranslations.php:343 msgid "Ex: Mary's Store" msgstr "Ej.: Tienda de María" -#: ../../src/Translations/AdminTranslations.php:343 +#: ../../src/Translations/AdminTranslations.php:344 msgid "Ex: Mary Store" msgstr "Ej.: TiendaMaría" -#: ../../src/Translations/AdminTranslations.php:344 +#: ../../src/Translations/AdminTranslations.php:345 msgid "Select" msgstr "Seleccionar" -#: ../../src/Translations/AdminTranslations.php:345 +#: ../../src/Translations/AdminTranslations.php:346 msgid "Ex: https://examples.com/my-custom-ipn-url" msgstr "Ej.: https://examples.com/my-custom-ipn-url" -#: ../../src/Translations/AdminTranslations.php:346 +#: ../../src/Translations/AdminTranslations.php:347 msgid "Add plugin default params" msgstr "Agregar parámetros default del plugin" -#: ../../src/Translations/AdminTranslations.php:347 +#: ../../src/Translations/AdminTranslations.php:348 msgid "Ex: 14987126498" msgstr "Ej.: 14987126498" -#: ../../src/Translations/AdminTranslations.php:348 +#: ../../src/Translations/AdminTranslations.php:349 msgid "Show advanced options" msgstr "Ver opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:349 +#: ../../src/Translations/AdminTranslations.php:350 msgid "Hide advanced options" msgstr "Esconder opciones avanzadas" -#: ../../src/Translations/AdminTranslations.php:351 +#: ../../src/Translations/AdminTranslations.php:352 msgid "" "If this field is empty, the purchase will be identified as Mercado Pago." msgstr "" "Si el campo queda vacío, la compra del cliente se identificará como Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:352 +#: ../../src/Translations/AdminTranslations.php:353 msgid "In Activities, you will view this term before the order number" msgstr "En Actividad, verás el término ingresado antes del número o del pedido" -#: ../../src/Translations/AdminTranslations.php:353 +#: ../../src/Translations/AdminTranslations.php:354 msgid "" "Select \"Other categories\" if you do not find the appropriate category." msgstr "Seleciona ”Other categories” si no encuentras una categoría adecuada." -#: ../../src/Translations/AdminTranslations.php:354 +#: ../../src/Translations/AdminTranslations.php:355 msgid "request it now." msgstr "solicítalo ahora." -#: ../../src/Translations/AdminTranslations.php:368 +#: ../../src/Translations/AdminTranslations.php:369 msgid "3. Set payment methods" msgstr "3. Configura los medios de pago" -#: ../../src/Translations/AdminTranslations.php:369 +#: ../../src/Translations/AdminTranslations.php:370 msgid "To view more options, please select a payment method below" msgstr "Selecciona uno de los siguientes medios de pago para ver más opciones" -#: ../../src/Translations/AdminTranslations.php:370 +#: ../../src/Translations/AdminTranslations.php:371 msgid "Settings" msgstr "Configurar" -#: ../../src/Translations/AdminTranslations.php:371 +#: ../../src/Translations/AdminTranslations.php:372 msgid "Continue" msgstr "Continuar" -#: ../../src/Translations/AdminTranslations.php:372 +#: ../../src/Translations/AdminTranslations.php:373 msgid "Enabled" msgstr "Activado" -#: ../../src/Translations/AdminTranslations.php:373 +#: ../../src/Translations/AdminTranslations.php:374 msgid "Disabled" msgstr "Inactivo" -#: ../../src/Translations/AdminTranslations.php:374 +#: ../../src/Translations/AdminTranslations.php:375 msgid "Configure your credentials to enable Mercado Pago payment methods." msgstr "" "Completa tus credenciales para habilitar los medios de pago Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:387, -#: ../../src/Translations/AdminTranslations.php:393 +#: ../../src/Translations/AdminTranslations.php:388, +#: ../../src/Translations/AdminTranslations.php:394 msgid "The checkout is" msgstr "El checkout está" -#: ../../src/Translations/AdminTranslations.php:388, -#: ../../src/Translations/AdminTranslations.php:400, -#: ../../src/Translations/AdminTranslations.php:515, -#: ../../src/Translations/AdminTranslations.php:527, -#: ../../src/Translations/AdminTranslations.php:539, -#: ../../src/Translations/AdminTranslations.php:605, -#: ../../src/Translations/AdminTranslations.php:617, -#: ../../src/Translations/AdminTranslations.php:629, -#: ../../src/Translations/AdminTranslations.php:705, -#: ../../src/Translations/AdminTranslations.php:766, -#: ../../src/Translations/AdminTranslations.php:825, -#: ../../src/Translations/AdminTranslations.php:837 +#: ../../src/Translations/AdminTranslations.php:389, +#: ../../src/Translations/AdminTranslations.php:401, +#: ../../src/Translations/AdminTranslations.php:516, +#: ../../src/Translations/AdminTranslations.php:528, +#: ../../src/Translations/AdminTranslations.php:540, +#: ../../src/Translations/AdminTranslations.php:606, +#: ../../src/Translations/AdminTranslations.php:618, +#: ../../src/Translations/AdminTranslations.php:630, +#: ../../src/Translations/AdminTranslations.php:706, +#: ../../src/Translations/AdminTranslations.php:767, +#: ../../src/Translations/AdminTranslations.php:826, +#: ../../src/Translations/AdminTranslations.php:838 msgid "enabled" msgstr "activo" -#: ../../src/Translations/AdminTranslations.php:394, +#: ../../src/Translations/AdminTranslations.php:395, +#: ../../src/Translations/AdminTranslations.php:407, +#: ../../src/Translations/AdminTranslations.php:522, +#: ../../src/Translations/AdminTranslations.php:534, +#: ../../src/Translations/AdminTranslations.php:546, +#: ../../src/Translations/AdminTranslations.php:612, +#: ../../src/Translations/AdminTranslations.php:624, +#: ../../src/Translations/AdminTranslations.php:636, +#: ../../src/Translations/AdminTranslations.php:712, +#: ../../src/Translations/AdminTranslations.php:773, +#: ../../src/Translations/AdminTranslations.php:832, +#: ../../src/Translations/AdminTranslations.php:844 +msgid "disabled" +msgstr "inactivo" + +#: ../../src/Translations/AdminTranslations.php:400, #: ../../src/Translations/AdminTranslations.php:406, -#: ../../src/Translations/AdminTranslations.php:521, +#: ../../src/Translations/AdminTranslations.php:527, #: ../../src/Translations/AdminTranslations.php:533, -#: ../../src/Translations/AdminTranslations.php:545, -#: ../../src/Translations/AdminTranslations.php:611, +#: ../../src/Translations/AdminTranslations.php:617, #: ../../src/Translations/AdminTranslations.php:623, -#: ../../src/Translations/AdminTranslations.php:635, +#: ../../src/Translations/AdminTranslations.php:705, #: ../../src/Translations/AdminTranslations.php:711, +#: ../../src/Translations/AdminTranslations.php:766, #: ../../src/Translations/AdminTranslations.php:772, -#: ../../src/Translations/AdminTranslations.php:831, +#: ../../src/Translations/AdminTranslations.php:837, #: ../../src/Translations/AdminTranslations.php:843 -msgid "disabled" -msgstr "inactivo" - -#: ../../src/Translations/AdminTranslations.php:399, -#: ../../src/Translations/AdminTranslations.php:405, -#: ../../src/Translations/AdminTranslations.php:526, -#: ../../src/Translations/AdminTranslations.php:532, -#: ../../src/Translations/AdminTranslations.php:616, -#: ../../src/Translations/AdminTranslations.php:622, -#: ../../src/Translations/AdminTranslations.php:704, -#: ../../src/Translations/AdminTranslations.php:710, -#: ../../src/Translations/AdminTranslations.php:765, -#: ../../src/Translations/AdminTranslations.php:771, -#: ../../src/Translations/AdminTranslations.php:836, -#: ../../src/Translations/AdminTranslations.php:842 msgid "Currency conversion is" msgstr "Conversión de moneda está" -#: ../../src/Translations/AdminTranslations.php:411, -#: ../../src/Translations/AdminTranslations.php:417 +#: ../../src/Translations/AdminTranslations.php:412, +#: ../../src/Translations/AdminTranslations.php:418 msgid "The buyer" msgstr "El comprador" -#: ../../src/Translations/AdminTranslations.php:412 +#: ../../src/Translations/AdminTranslations.php:413 msgid "will be automatically redirected to the store" msgstr "será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:418 +#: ../../src/Translations/AdminTranslations.php:419 msgid "will not be automatically redirected to the store" msgstr "no será redirigido automáticamente a la tienda" -#: ../../src/Translations/AdminTranslations.php:424, -#: ../../src/Translations/AdminTranslations.php:430, -#: ../../src/Translations/AdminTranslations.php:640, -#: ../../src/Translations/AdminTranslations.php:646 +#: ../../src/Translations/AdminTranslations.php:425, +#: ../../src/Translations/AdminTranslations.php:431, +#: ../../src/Translations/AdminTranslations.php:641, +#: ../../src/Translations/AdminTranslations.php:647 msgid "Pending payments" msgstr "Los pagos pendientes" -#: ../../src/Translations/AdminTranslations.php:425, -#: ../../src/Translations/AdminTranslations.php:641 +#: ../../src/Translations/AdminTranslations.php:426, +#: ../../src/Translations/AdminTranslations.php:642 msgid "will be automatically declined" msgstr "se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:431, -#: ../../src/Translations/AdminTranslations.php:647 +#: ../../src/Translations/AdminTranslations.php:432, +#: ../../src/Translations/AdminTranslations.php:648 msgid "will not be automatically declined" msgstr "no se rechazarán automaticamente" -#: ../../src/Translations/AdminTranslations.php:435, -#: ../../src/Translations/AdminTranslations.php:450 +#: ../../src/Translations/AdminTranslations.php:436, +#: ../../src/Translations/AdminTranslations.php:451 msgid "Your saved cards or money in Mercado Pago" msgstr "Compras con tarjetas guardadas o saldo en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:436, -#: ../../src/Translations/AdminTranslations.php:438 +#: ../../src/Translations/AdminTranslations.php:437, +#: ../../src/Translations/AdminTranslations.php:439 msgid "Debit, Credit and invoice in Mercado Pago environment" msgstr "Débito, crédito y efectivo, en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:437 +#: ../../src/Translations/AdminTranslations.php:438 msgid "Mercado Pago - Checkout Pro" msgstr "Mercado Pago - Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:439 +#: ../../src/Translations/AdminTranslations.php:440 msgid "Checkout Pro" msgstr "Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:440 +#: ../../src/Translations/AdminTranslations.php:441 msgid "" "With Checkout Pro you sell with all the safety inside Mercado Pago " "environment." @@ -632,23 +642,13 @@ msgstr "" "Con el Checkout Pro, podrás vender con toda la seguridad, dentro de Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:441, -#: ../../src/Translations/AdminTranslations.php:555, -#: ../../src/Translations/AdminTranslations.php:720, -#: ../../src/Translations/AdminTranslations.php:781, -#: ../../src/Translations/AdminTranslations.php:861 -msgid "Mercado Pago plugin general settings" -msgstr "Configuraciones generales del plugin de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:442, #: ../../src/Translations/AdminTranslations.php:556, -#: ../../src/Translations/AdminTranslations.php:658, #: ../../src/Translations/AdminTranslations.php:721, #: ../../src/Translations/AdminTranslations.php:782, #: ../../src/Translations/AdminTranslations.php:862 -msgid "" -"Set the deadlines and fees, test your store or access the Plugin manual." -msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." +msgid "Mercado Pago plugin general settings" +msgstr "Configuraciones generales del plugin de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:443, #: ../../src/Translations/AdminTranslations.php:557, @@ -656,16 +656,26 @@ msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:722, #: ../../src/Translations/AdminTranslations.php:783, #: ../../src/Translations/AdminTranslations.php:863 -msgid "Go to Settings" -msgstr "Ir a Configuraciones" +msgid "" +"Set the deadlines and fees, test your store or access the Plugin manual." +msgstr "Ajusta tasas y plazos, testea tu tienda o accede al manual del plugin." #: ../../src/Translations/AdminTranslations.php:444, +#: ../../src/Translations/AdminTranslations.php:558, #: ../../src/Translations/AdminTranslations.php:660, +#: ../../src/Translations/AdminTranslations.php:723, +#: ../../src/Translations/AdminTranslations.php:784, #: ../../src/Translations/AdminTranslations.php:864 +msgid "Go to Settings" +msgstr "Ir a Configuraciones" + +#: ../../src/Translations/AdminTranslations.php:445, +#: ../../src/Translations/AdminTranslations.php:661, +#: ../../src/Translations/AdminTranslations.php:865 msgid "Enable the checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:445 +#: ../../src/Translations/AdminTranslations.php:446 msgid "" "By disabling it, you will disable all payments from Mercado Pago Checkout at " "Mercado Pago website by redirect." @@ -673,40 +683,31 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago del checkout en el " "sitio web de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:448, -#: ../../src/Translations/AdminTranslations.php:566, -#: ../../src/Translations/AdminTranslations.php:664, -#: ../../src/Translations/AdminTranslations.php:727, -#: ../../src/Translations/AdminTranslations.php:788, -#: ../../src/Translations/AdminTranslations.php:868 -msgid "Title in the store Checkout" -msgstr "Título en el checkout de la tienda" - #: ../../src/Translations/AdminTranslations.php:449, +#: ../../src/Translations/AdminTranslations.php:567, #: ../../src/Translations/AdminTranslations.php:665, #: ../../src/Translations/AdminTranslations.php:728, #: ../../src/Translations/AdminTranslations.php:789, #: ../../src/Translations/AdminTranslations.php:869 +msgid "Title in the store Checkout" +msgstr "Título en el checkout de la tienda" + +#: ../../src/Translations/AdminTranslations.php:450, +#: ../../src/Translations/AdminTranslations.php:666, +#: ../../src/Translations/AdminTranslations.php:729, +#: ../../src/Translations/AdminTranslations.php:790, +#: ../../src/Translations/AdminTranslations.php:870 msgid "Change the display text in Checkout, maximum characters: 85" msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85" -#: ../../src/Translations/AdminTranslations.php:451, -#: ../../src/Translations/AdminTranslations.php:569, -#: ../../src/Translations/AdminTranslations.php:667, -#: ../../src/Translations/AdminTranslations.php:730, -#: ../../src/Translations/AdminTranslations.php:791, -#: ../../src/Translations/AdminTranslations.php:871 -msgid "The text inserted here will not be translated to other languages" -msgstr "El texto insertado aquí no se traducirá a otros idiomas" - #: ../../src/Translations/AdminTranslations.php:452, #: ../../src/Translations/AdminTranslations.php:570, -#: ../../src/Translations/AdminTranslations.php:671, +#: ../../src/Translations/AdminTranslations.php:668, #: ../../src/Translations/AdminTranslations.php:731, #: ../../src/Translations/AdminTranslations.php:792, -#: ../../src/Translations/AdminTranslations.php:885 -msgid "Convert Currency" -msgstr "Convertir moneda" +#: ../../src/Translations/AdminTranslations.php:872 +msgid "The text inserted here will not be translated to other languages" +msgstr "El texto insertado aquí no se traducirá a otros idiomas" #: ../../src/Translations/AdminTranslations.php:453, #: ../../src/Translations/AdminTranslations.php:571, @@ -714,6 +715,15 @@ msgstr "Convertir moneda" #: ../../src/Translations/AdminTranslations.php:732, #: ../../src/Translations/AdminTranslations.php:793, #: ../../src/Translations/AdminTranslations.php:886 +msgid "Convert Currency" +msgstr "Convertir moneda" + +#: ../../src/Translations/AdminTranslations.php:454, +#: ../../src/Translations/AdminTranslations.php:572, +#: ../../src/Translations/AdminTranslations.php:673, +#: ../../src/Translations/AdminTranslations.php:733, +#: ../../src/Translations/AdminTranslations.php:794, +#: ../../src/Translations/AdminTranslations.php:887 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." @@ -721,100 +731,100 @@ 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." -#: ../../src/Translations/AdminTranslations.php:456 +#: ../../src/Translations/AdminTranslations.php:457 msgid "Choose the payment methods you accept in your store" msgstr "Elige los medios de pago que se aceptan en la tienda" -#: ../../src/Translations/AdminTranslations.php:457 +#: ../../src/Translations/AdminTranslations.php:458 msgid "Enable the payment methods available to your clients." msgstr "Habilita los medios de pago disponibles para tus clientes." -#: ../../src/Translations/AdminTranslations.php:458 +#: ../../src/Translations/AdminTranslations.php:459 msgid "Credit Cards" msgstr "Tarjetas de crédito" -#: ../../src/Translations/AdminTranslations.php:459 +#: ../../src/Translations/AdminTranslations.php:460 msgid "Debit Cards" msgstr "Tarjetas de débito" -#: ../../src/Translations/AdminTranslations.php:460 +#: ../../src/Translations/AdminTranslations.php:461 msgid "Other Payment Methods" msgstr "Otros medios" -#: ../../src/Translations/AdminTranslations.php:461 +#: ../../src/Translations/AdminTranslations.php:462 msgid "Maximum number of installments" msgstr "Máximo de cuotas" -#: ../../src/Translations/AdminTranslations.php:462 +#: ../../src/Translations/AdminTranslations.php:463 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?" -#: ../../src/Translations/AdminTranslations.php:463 +#: ../../src/Translations/AdminTranslations.php:464 msgid "1 installment" msgstr "1 cuota" -#: ../../src/Translations/AdminTranslations.php:464 +#: ../../src/Translations/AdminTranslations.php:465 msgid "2 installments" msgstr "2 cuotas" -#: ../../src/Translations/AdminTranslations.php:465 +#: ../../src/Translations/AdminTranslations.php:466 msgid "3 installments" msgstr "3 cuotas" -#: ../../src/Translations/AdminTranslations.php:466 +#: ../../src/Translations/AdminTranslations.php:467 msgid "4 installments" msgstr "4 cuotas" -#: ../../src/Translations/AdminTranslations.php:467 +#: ../../src/Translations/AdminTranslations.php:468 msgid "5 installments" msgstr "5 cuotas" -#: ../../src/Translations/AdminTranslations.php:468 +#: ../../src/Translations/AdminTranslations.php:469 msgid "6 installments" msgstr "6 cuotas" -#: ../../src/Translations/AdminTranslations.php:469 +#: ../../src/Translations/AdminTranslations.php:470 msgid "10 installments" msgstr "10 cuotas" -#: ../../src/Translations/AdminTranslations.php:470 +#: ../../src/Translations/AdminTranslations.php:471 msgid "12 installments" msgstr "12 cuotas" -#: ../../src/Translations/AdminTranslations.php:471 +#: ../../src/Translations/AdminTranslations.php:472 msgid "15 installments" msgstr "15 cuotas" -#: ../../src/Translations/AdminTranslations.php:472 +#: ../../src/Translations/AdminTranslations.php:473 msgid "18 installments" msgstr "18 cuotas" -#: ../../src/Translations/AdminTranslations.php:473 +#: ../../src/Translations/AdminTranslations.php:474 msgid "24 installments" msgstr "24 cuotas" -#: ../../src/Translations/AdminTranslations.php:474, -#: ../../src/Translations/AdminTranslations.php:584 +#: ../../src/Translations/AdminTranslations.php:475, +#: ../../src/Translations/AdminTranslations.php:585 msgid "Advanced settings" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:475, -#: ../../src/Translations/AdminTranslations.php:585, -#: ../../src/Translations/AdminTranslations.php:681, -#: ../../src/Translations/AdminTranslations.php:738, -#: ../../src/Translations/AdminTranslations.php:797, -#: ../../src/Translations/AdminTranslations.php:893 +#: ../../src/Translations/AdminTranslations.php:476, +#: ../../src/Translations/AdminTranslations.php:586, +#: ../../src/Translations/AdminTranslations.php:682, +#: ../../src/Translations/AdminTranslations.php:739, +#: ../../src/Translations/AdminTranslations.php:798, +#: ../../src/Translations/AdminTranslations.php:894 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." -#: ../../src/Translations/AdminTranslations.php:476 +#: ../../src/Translations/AdminTranslations.php:477 msgid "Payment experience" msgstr "Experiencia de pago" -#: ../../src/Translations/AdminTranslations.php:477 +#: ../../src/Translations/AdminTranslations.php:478 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -822,39 +832,39 @@ msgstr "" "Define qué experiencia de pago tendrán tus clientes, si dentro o fuera de tu " "tienda." -#: ../../src/Translations/AdminTranslations.php:478 +#: ../../src/Translations/AdminTranslations.php:479 msgid "Redirect" msgstr "Redirect" -#: ../../src/Translations/AdminTranslations.php:479 +#: ../../src/Translations/AdminTranslations.php:480 msgid "Modal" msgstr "Modal" -#: ../../src/Translations/AdminTranslations.php:480 +#: ../../src/Translations/AdminTranslations.php:481 msgid "Return to the store" msgstr "Volver a la tienda" -#: ../../src/Translations/AdminTranslations.php:481 +#: ../../src/Translations/AdminTranslations.php:482 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?" -#: ../../src/Translations/AdminTranslations.php:484 +#: ../../src/Translations/AdminTranslations.php:485 msgid "Success URL" msgstr "URL de éxito" -#: ../../src/Translations/AdminTranslations.php:485 +#: ../../src/Translations/AdminTranslations.php:486 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." -#: ../../src/Translations/AdminTranslations.php:486 +#: ../../src/Translations/AdminTranslations.php:487 msgid "Payment URL rejected" msgstr "URL de pago rechazado" -#: ../../src/Translations/AdminTranslations.php:487 +#: ../../src/Translations/AdminTranslations.php:488 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 " @@ -864,11 +874,11 @@ msgstr "" "Asegúrate de incluir un mensaje adecuado a la situación y dales información " "útil para que puedan solucionarlo." -#: ../../src/Translations/AdminTranslations.php:488 +#: ../../src/Translations/AdminTranslations.php:489 msgid "Payment URL pending" msgstr "URL de pago pendiente" -#: ../../src/Translations/AdminTranslations.php:489 +#: ../../src/Translations/AdminTranslations.php:490 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -876,13 +886,13 @@ msgstr "" "Elige la URL que mostraremos a tus clientes cuando tengan un pago pendiente " "de aprobación." -#: ../../src/Translations/AdminTranslations.php:490, -#: ../../src/Translations/AdminTranslations.php:682 +#: ../../src/Translations/AdminTranslations.php:491, +#: ../../src/Translations/AdminTranslations.php:683 msgid "Automatic decline of payments without instant approval" msgstr "Rechazo automático de pagos sin aprobación instantanea" -#: ../../src/Translations/AdminTranslations.php:491, -#: ../../src/Translations/AdminTranslations.php:683 +#: ../../src/Translations/AdminTranslations.php:492, +#: ../../src/Translations/AdminTranslations.php:684 msgid "" "Enable it if you want to automatically decline payments that are not " "instantly approved by banks or other institutions." @@ -890,55 +900,46 @@ msgstr "" "Actívalo si quieres rechazar automáticamente los pagos que no son aprobados " "instantáneamente por bancos u otros compradores." -#: ../../src/Translations/AdminTranslations.php:492 +#: ../../src/Translations/AdminTranslations.php:493 msgid "Debit, Credit and Invoice in Mercado Pago environment." msgstr "Débito, crédito y efectivo, en Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:495, -#: ../../src/Translations/AdminTranslations.php:586, -#: ../../src/Translations/AdminTranslations.php:686, -#: ../../src/Translations/AdminTranslations.php:747, -#: ../../src/Translations/AdminTranslations.php:806, -#: ../../src/Translations/AdminTranslations.php:894 -msgid "Discount in Mercado Pago Checkouts" -msgstr "Descuento en los checkouts de Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:496, #: ../../src/Translations/AdminTranslations.php:587, #: ../../src/Translations/AdminTranslations.php:687, #: ../../src/Translations/AdminTranslations.php:748, #: ../../src/Translations/AdminTranslations.php:807, #: ../../src/Translations/AdminTranslations.php:895 -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." +msgid "Discount in Mercado Pago Checkouts" +msgstr "Descuento en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:497, -#: ../../src/Translations/AdminTranslations.php:500, #: ../../src/Translations/AdminTranslations.php:588, -#: ../../src/Translations/AdminTranslations.php:591, #: ../../src/Translations/AdminTranslations.php:688, -#: ../../src/Translations/AdminTranslations.php:691, #: ../../src/Translations/AdminTranslations.php:749, -#: ../../src/Translations/AdminTranslations.php:752, #: ../../src/Translations/AdminTranslations.php:808, -#: ../../src/Translations/AdminTranslations.php:811, -#: ../../src/Translations/AdminTranslations.php:896, -#: ../../src/Translations/AdminTranslations.php:899 -msgid "Activate and show this information on Mercado Pago Checkout" -msgstr "Activar y mostrar esa información en el checkout Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:896 +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." #: ../../src/Translations/AdminTranslations.php:498, +#: ../../src/Translations/AdminTranslations.php:501, #: ../../src/Translations/AdminTranslations.php:589, +#: ../../src/Translations/AdminTranslations.php:592, #: ../../src/Translations/AdminTranslations.php:689, +#: ../../src/Translations/AdminTranslations.php:692, #: ../../src/Translations/AdminTranslations.php:750, +#: ../../src/Translations/AdminTranslations.php:753, #: ../../src/Translations/AdminTranslations.php:809, -#: ../../src/Translations/AdminTranslations.php:897 -msgid "Commission in Mercado Pago Checkouts" -msgstr "Comisiones en los checkouts de Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:812, +#: ../../src/Translations/AdminTranslations.php:897, +#: ../../src/Translations/AdminTranslations.php:900 +msgid "Activate and show this information on Mercado Pago Checkout" +msgstr "Activar y mostrar esa información en el checkout Mercado Pago" #: ../../src/Translations/AdminTranslations.php:499, #: ../../src/Translations/AdminTranslations.php:590, @@ -946,6 +947,15 @@ msgstr "Comisiones en los checkouts de Mercado Pago" #: ../../src/Translations/AdminTranslations.php:751, #: ../../src/Translations/AdminTranslations.php:810, #: ../../src/Translations/AdminTranslations.php:898 +msgid "Commission in Mercado Pago Checkouts" +msgstr "Comisiones en los checkouts de Mercado Pago" + +#: ../../src/Translations/AdminTranslations.php:500, +#: ../../src/Translations/AdminTranslations.php:591, +#: ../../src/Translations/AdminTranslations.php:691, +#: ../../src/Translations/AdminTranslations.php:752, +#: ../../src/Translations/AdminTranslations.php:811, +#: ../../src/Translations/AdminTranslations.php:899 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -953,35 +963,35 @@ msgstr "" "Elige un valor porcentual adicional que quieras cobrar como comisión a tus " "clientes por pagar con Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:501 +#: ../../src/Translations/AdminTranslations.php:502 msgid "This seems to be an invalid URL" msgstr "Esto parece ser una URL no válida" -#: ../../src/Translations/AdminTranslations.php:514, -#: ../../src/Translations/AdminTranslations.php:520 +#: ../../src/Translations/AdminTranslations.php:515, +#: ../../src/Translations/AdminTranslations.php:521 msgid "Payment in installments without card in the store checkout is" msgstr "Cuotas sin tarjeta en el checkout de la tienda está" -#: ../../src/Translations/AdminTranslations.php:538, -#: ../../src/Translations/AdminTranslations.php:544 +#: ../../src/Translations/AdminTranslations.php:539, +#: ../../src/Translations/AdminTranslations.php:545 msgid "The installments without card component is" msgstr "El componente de cuotas sin tarjeta está" -#: ../../src/Translations/AdminTranslations.php:549, -#: ../../src/Translations/AdminTranslations.php:553 +#: ../../src/Translations/AdminTranslations.php:550, +#: ../../src/Translations/AdminTranslations.php:554 msgid "Installments without card" msgstr "Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:550, -#: ../../src/Translations/AdminTranslations.php:552 +#: ../../src/Translations/AdminTranslations.php:551, +#: ../../src/Translations/AdminTranslations.php:553 msgid "Customers who buy on spot and pay later in up to 12 installments" msgstr "Tus clientes compran al instante y pagan después en hasta 12 cuotas" -#: ../../src/Translations/AdminTranslations.php:551 +#: ../../src/Translations/AdminTranslations.php:552 msgid "Mercado Pago - Installments without card" msgstr "Mercado Pago - Cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:554 +#: ../../src/Translations/AdminTranslations.php:555 msgid "" "Reach millions of buyers by offering Mercado Credito as a payment method. " "Our flexible payment options give your customers the possibility to buy " @@ -995,11 +1005,11 @@ msgstr "" "necesidad de utilizar una tarjeta. Para tu negocio, la aprobación de la " "compra es inmediata y está garantizada." -#: ../../src/Translations/AdminTranslations.php:558 +#: ../../src/Translations/AdminTranslations.php:559 msgid "Activate installments without card in your store checkout" msgstr "Activar cuotas sin tarjeta en el checkout de tu tienda" -#: ../../src/Translations/AdminTranslations.php:559 +#: ../../src/Translations/AdminTranslations.php:560 msgid "" "Offer the option to pay in installments without card directly from your " "store's checkout." @@ -1007,37 +1017,37 @@ msgstr "" "Ofrece la opción de pago en cuotas sin tarjeta directo desde el checkout de " "tu tienda." -#: ../../src/Translations/AdminTranslations.php:562 +#: ../../src/Translations/AdminTranslations.php:563 msgid "Checkout visualization" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:563, -#: ../../src/Translations/AdminTranslations.php:583 +#: ../../src/Translations/AdminTranslations.php:564, +#: ../../src/Translations/AdminTranslations.php:584 msgid "Check below how this feature will be displayed to your customers:" msgstr "A continuación verás cómo este recurso aparecerá para tus clientes:" -#: ../../src/Translations/AdminTranslations.php:564 +#: ../../src/Translations/AdminTranslations.php:565 msgid "Checkout Preview" msgstr "Visualización en el checkout" -#: ../../src/Translations/AdminTranslations.php:565 +#: ../../src/Translations/AdminTranslations.php:566 msgid "PREVIEW" msgstr "DEMO" -#: ../../src/Translations/AdminTranslations.php:567 +#: ../../src/Translations/AdminTranslations.php:568 msgid "It is possible to edit the title. Maximum of 85 characters." msgstr "Puedes cambiar el título dentro tu tienda. Caracteres máximos: 85." -#: ../../src/Translations/AdminTranslations.php:568 +#: ../../src/Translations/AdminTranslations.php:569 msgid "Checkout without card" msgstr "Hasta 12 pagos sin tarjeta con Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:574 +#: ../../src/Translations/AdminTranslations.php:575 msgid "" "Inform your customers about the option of paying in installments without card" msgstr "Informa a tus clientes sobre la opción de cuotas sin tarjeta" -#: ../../src/Translations/AdminTranslations.php:575 +#: ../../src/Translations/AdminTranslations.php:576 msgid "" "By activating the installments without card component, you increase your " "chances of selling." @@ -1045,62 +1055,62 @@ msgstr "" "Al activar el componente de cuotas sin tarjeta,, aumentarás tus " "posibilidades de venta." -#: ../../src/Translations/AdminTranslations.php:578 +#: ../../src/Translations/AdminTranslations.php:579 msgid "Banner on the product page | Computer version" msgstr "Componente en la página del producto | Versión para computadora" -#: ../../src/Translations/AdminTranslations.php:579 +#: ../../src/Translations/AdminTranslations.php:580 msgid "Banner on the product page | Cellphone version" msgstr "Componente en la página del producto | Versión para celular" -#: ../../src/Translations/AdminTranslations.php:580 +#: ../../src/Translations/AdminTranslations.php:581 msgid "Computer" msgstr "Computadora" -#: ../../src/Translations/AdminTranslations.php:581 +#: ../../src/Translations/AdminTranslations.php:582 msgid "Mobile" msgstr "Celular" -#: ../../src/Translations/AdminTranslations.php:582 +#: ../../src/Translations/AdminTranslations.php:583 msgid "Component visualization" msgstr "Visualización del componente" -#: ../../src/Translations/AdminTranslations.php:604, -#: ../../src/Translations/AdminTranslations.php:610 +#: ../../src/Translations/AdminTranslations.php:605, +#: ../../src/Translations/AdminTranslations.php:611 msgid "Transparent Checkout for credit cards is" msgstr "El Checkout Transparente de las tarjetas de crédito está" -#: ../../src/Translations/AdminTranslations.php:628, -#: ../../src/Translations/AdminTranslations.php:634 +#: ../../src/Translations/AdminTranslations.php:629, +#: ../../src/Translations/AdminTranslations.php:635 msgid "Payments via Mercado Pago accounts are" msgstr "Los pagos a través de la cuenta de Mercado Pago están" -#: ../../src/Translations/AdminTranslations.php:651, -#: ../../src/Translations/AdminTranslations.php:666 +#: ../../src/Translations/AdminTranslations.php:652, +#: ../../src/Translations/AdminTranslations.php:667 msgid "Debit and Credit" msgstr "Débito e crédito" -#: ../../src/Translations/AdminTranslations.php:652, -#: ../../src/Translations/AdminTranslations.php:654, -#: ../../src/Translations/AdminTranslations.php:716, -#: ../../src/Translations/AdminTranslations.php:777, -#: ../../src/Translations/AdminTranslations.php:856, -#: ../../src/Translations/AdminTranslations.php:858 -msgid "Transparent Checkout in your store environment" -msgstr "Checkout Transparente en tu tienda" - #: ../../src/Translations/AdminTranslations.php:653, +#: ../../src/Translations/AdminTranslations.php:655, #: ../../src/Translations/AdminTranslations.php:717, #: ../../src/Translations/AdminTranslations.php:778, -#: ../../src/Translations/AdminTranslations.php:857 +#: ../../src/Translations/AdminTranslations.php:857, +#: ../../src/Translations/AdminTranslations.php:859 +msgid "Transparent Checkout in your store environment" +msgstr "Checkout Transparente en tu tienda" + +#: ../../src/Translations/AdminTranslations.php:654, +#: ../../src/Translations/AdminTranslations.php:718, +#: ../../src/Translations/AdminTranslations.php:779, +#: ../../src/Translations/AdminTranslations.php:858 msgid "Mercado pago - Customized Checkout" msgstr "Mercado Pago - Checkout Personalizado" -#: ../../src/Translations/AdminTranslations.php:655 +#: ../../src/Translations/AdminTranslations.php:656 msgid "Transparent Checkout | Credit card" msgstr "Checkout Transparente | Tarjeta de Crédito" -#: ../../src/Translations/AdminTranslations.php:656 +#: ../../src/Translations/AdminTranslations.php:657 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and with the security from Mercado Pago." @@ -1108,11 +1118,11 @@ msgstr "" "Con el Checkout Transparente, puedes vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:657 +#: ../../src/Translations/AdminTranslations.php:658 msgid "Mercado Pago Plugin general settings" msgstr "Configuraciones generales del plugin de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:661 +#: ../../src/Translations/AdminTranslations.php:662 msgid "" "By disabling it, you will disable all credit cards payments from Mercado " "Pago Transparent Checkout." @@ -1120,11 +1130,11 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:668 +#: ../../src/Translations/AdminTranslations.php:669 msgid "Installments Fees" msgstr "Tasas de pago en cuotas" -#: ../../src/Translations/AdminTranslations.php:669 +#: ../../src/Translations/AdminTranslations.php:670 msgid "" "Set installment fees and whether they will be charged from the store or from " "the buyer." @@ -1132,15 +1142,15 @@ msgstr "" "Configura las tasas de las cuotas y si se las cobrarán a la tienda o al " "comprador." -#: ../../src/Translations/AdminTranslations.php:670 +#: ../../src/Translations/AdminTranslations.php:671 msgid "Set fees" msgstr "Configurar tasas" -#: ../../src/Translations/AdminTranslations.php:675 +#: ../../src/Translations/AdminTranslations.php:676 msgid "Payments via Mercado Pago account" msgstr "Pagos a través de la cuenta de Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:676 +#: ../../src/Translations/AdminTranslations.php:677 msgid "" "Your customers pay faster with saved cards, money balance or other available " "methods in their Mercado Pago accounts." @@ -1148,26 +1158,26 @@ msgstr "" "Tus clientes pagan más rápido con tarjetas guardadas, dinero disponible o " "con otros medios disponibles en sus cuentas de MP." -#: ../../src/Translations/AdminTranslations.php:679 +#: ../../src/Translations/AdminTranslations.php:680 msgid "Check an example of how it will appear in your store:" msgstr "Conoce un ejemplo de cómo aparecerá en la tienda:" -#: ../../src/Translations/AdminTranslations.php:680 +#: ../../src/Translations/AdminTranslations.php:681 msgid "Advanced configuration of the personalized payment experience" msgstr "Configuración Avanzada" -#: ../../src/Translations/AdminTranslations.php:715, -#: ../../src/Translations/AdminTranslations.php:729 +#: ../../src/Translations/AdminTranslations.php:716, +#: ../../src/Translations/AdminTranslations.php:730 msgid "Invoice" msgstr "Efectivo" -#: ../../src/Translations/AdminTranslations.php:718 +#: ../../src/Translations/AdminTranslations.php:719 msgid "Transparent Checkout | Invoice or Loterica" msgstr "Checkout Transparente | Efectivo" -#: ../../src/Translations/AdminTranslations.php:719, -#: ../../src/Translations/AdminTranslations.php:780, -#: ../../src/Translations/AdminTranslations.php:860 +#: ../../src/Translations/AdminTranslations.php:720, +#: ../../src/Translations/AdminTranslations.php:781, +#: ../../src/Translations/AdminTranslations.php:861 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and all the safety from Mercado Pago." @@ -1175,12 +1185,12 @@ msgstr "" "Con el Checkout Transparente, podrás vender dentro de tu tienda, sin " "redireccionamentos, con toda la seguridad de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:723, -#: ../../src/Translations/AdminTranslations.php:784 +#: ../../src/Translations/AdminTranslations.php:724, +#: ../../src/Translations/AdminTranslations.php:785 msgid "Enable the Checkout" msgstr "Activar el checkout" -#: ../../src/Translations/AdminTranslations.php:724 +#: ../../src/Translations/AdminTranslations.php:725 msgid "" "By disabling it, you will disable all invoice payments from Mercado Pago " "Transparent Checkout." @@ -1188,34 +1198,34 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago en efectivo en el " "Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:725 +#: ../../src/Translations/AdminTranslations.php:726 msgid "The transparent checkout for tickets is enabled." msgstr "El Checkout Transparente está activo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:726 +#: ../../src/Translations/AdminTranslations.php:727 msgid "The transparent checkout for tickets is disabled." msgstr "El Checkout Transparente está inactivo para pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:735 +#: ../../src/Translations/AdminTranslations.php:736 msgid "Payment Due" msgstr "Fecha de pago" -#: ../../src/Translations/AdminTranslations.php:736 +#: ../../src/Translations/AdminTranslations.php:737 msgid "In how many days will cash payments expire." msgstr "En cuántos días vencerán los pagos en efectivo." -#: ../../src/Translations/AdminTranslations.php:737 +#: ../../src/Translations/AdminTranslations.php:738 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../src/Translations/AdminTranslations.php:739, -#: ../../src/Translations/AdminTranslations.php:798 +#: ../../src/Translations/AdminTranslations.php:740, +#: ../../src/Translations/AdminTranslations.php:799 msgid "Reduce inventory" msgstr "Reducir inventario" -#: ../../src/Translations/AdminTranslations.php:740, -#: ../../src/Translations/AdminTranslations.php:799 +#: ../../src/Translations/AdminTranslations.php:741, +#: ../../src/Translations/AdminTranslations.php:800 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 " @@ -1225,41 +1235,41 @@ msgstr "" "acredite o no el pago final. Desactiva esta opción para reducirlo solo " "cuando los pagos estén aprobados." -#: ../../src/Translations/AdminTranslations.php:741, -#: ../../src/Translations/AdminTranslations.php:800 +#: ../../src/Translations/AdminTranslations.php:742, +#: ../../src/Translations/AdminTranslations.php:801 msgid "Reduce inventory is enabled." msgstr "Reducir inventario está activo." -#: ../../src/Translations/AdminTranslations.php:742, -#: ../../src/Translations/AdminTranslations.php:801 +#: ../../src/Translations/AdminTranslations.php:743, +#: ../../src/Translations/AdminTranslations.php:802 msgid "Reduce inventory is disabled." msgstr "Reducir inventario está inactivo." -#: ../../src/Translations/AdminTranslations.php:744, -#: ../../src/Translations/AdminTranslations.php:803 +#: ../../src/Translations/AdminTranslations.php:745, +#: ../../src/Translations/AdminTranslations.php:804 msgid "Enable the available payment methods" msgstr "Habilita los medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:745, -#: ../../src/Translations/AdminTranslations.php:804 +#: ../../src/Translations/AdminTranslations.php:746, +#: ../../src/Translations/AdminTranslations.php:805 msgid "Choose the available payment methods in your store." msgstr "Elige los medios de pago que se aceptan en la tienda." -#: ../../src/Translations/AdminTranslations.php:746, -#: ../../src/Translations/AdminTranslations.php:805 +#: ../../src/Translations/AdminTranslations.php:747, +#: ../../src/Translations/AdminTranslations.php:806 msgid "All payment methods" msgstr "Medios de pago disponibles" -#: ../../src/Translations/AdminTranslations.php:776, -#: ../../src/Translations/AdminTranslations.php:790 +#: ../../src/Translations/AdminTranslations.php:777, +#: ../../src/Translations/AdminTranslations.php:791 msgid "PSE" msgstr "PSE" -#: ../../src/Translations/AdminTranslations.php:779 +#: ../../src/Translations/AdminTranslations.php:780 msgid "Transparent Checkout PSE" msgstr "Pago transparente PSE" -#: ../../src/Translations/AdminTranslations.php:785 +#: ../../src/Translations/AdminTranslations.php:786 msgid "" "By deactivating it, you will disable PSE payments from Mercado Pago " "Transparent Checkout." @@ -1267,49 +1277,49 @@ msgstr "" "Al desactivarlo, desactivará los pagos PSE de Mercado Pago Transparente " "Checkout." -#: ../../src/Translations/AdminTranslations.php:786 +#: ../../src/Translations/AdminTranslations.php:787 msgid "The transparent checkout for PSE is enabled." msgstr "El Checkout Transparente está activo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:787 +#: ../../src/Translations/AdminTranslations.php:788 msgid "The transparent checkout for PSE is disabled." msgstr "El Checkout Transparente está inactivo para pagos PSE." -#: ../../src/Translations/AdminTranslations.php:796 +#: ../../src/Translations/AdminTranslations.php:797 msgid "Advanced configuration of the PSE payment experience" msgstr "Configuración avanzada de la experiencia de pago PSE" -#: ../../src/Translations/AdminTranslations.php:824, -#: ../../src/Translations/AdminTranslations.php:830 +#: ../../src/Translations/AdminTranslations.php:825, +#: ../../src/Translations/AdminTranslations.php:831 msgid "The transparent checkout for Pix payment is" msgstr "El Checkout Transparente está" -#: ../../src/Translations/AdminTranslations.php:848 +#: ../../src/Translations/AdminTranslations.php:849 msgid "Go to the" msgstr "Ve al área" -#: ../../src/Translations/AdminTranslations.php:849 +#: ../../src/Translations/AdminTranslations.php:850 msgid "Your Profile" msgstr "Tu Perfil" -#: ../../src/Translations/AdminTranslations.php:850 +#: ../../src/Translations/AdminTranslations.php:851 msgid "area and choose the" msgstr "y elige la sección" -#: ../../src/Translations/AdminTranslations.php:851 +#: ../../src/Translations/AdminTranslations.php:852 msgid "Your Pix Keys section" msgstr "Tus claves Pix" -#: ../../src/Translations/AdminTranslations.php:855, -#: ../../src/Translations/AdminTranslations.php:870 +#: ../../src/Translations/AdminTranslations.php:856, +#: ../../src/Translations/AdminTranslations.php:871 msgid "Pix" msgstr "Pix" -#: ../../src/Translations/AdminTranslations.php:859 +#: ../../src/Translations/AdminTranslations.php:860 msgid "Transparent Checkout | Pix" msgstr "Checkout Transparente | Pix" -#: ../../src/Translations/AdminTranslations.php:865 +#: ../../src/Translations/AdminTranslations.php:866 msgid "" "By disabling it, you will disable all Pix payments from Mercado Pago " "Transparent Checkout." @@ -1317,85 +1327,85 @@ msgstr "" "Al desactivar, desabilitarás todos los medios de pago con tarjeta de crédito " "en el Checkout Transparente de Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:872 +#: ../../src/Translations/AdminTranslations.php:873 msgid "Expiration for payments via Pix" msgstr "Vencimiento para pagos con Pix" -#: ../../src/Translations/AdminTranslations.php:873 +#: ../../src/Translations/AdminTranslations.php:874 msgid "Set the limit in minutes for your clients to pay via Pix." msgstr "" "Define el límite de minutos para que tus clientes puedan pagar con Pix." -#: ../../src/Translations/AdminTranslations.php:874 +#: ../../src/Translations/AdminTranslations.php:875 msgid "15 minutes" msgstr "15 minutos" -#: ../../src/Translations/AdminTranslations.php:875 +#: ../../src/Translations/AdminTranslations.php:876 msgid "30 minutes (recommended)" msgstr "30 minutos (recomendado)" -#: ../../src/Translations/AdminTranslations.php:876 +#: ../../src/Translations/AdminTranslations.php:877 msgid "60 minutes" msgstr "60 minutos" -#: ../../src/Translations/AdminTranslations.php:877 +#: ../../src/Translations/AdminTranslations.php:878 msgid "12 hours" msgstr "12 horas" -#: ../../src/Translations/AdminTranslations.php:878 +#: ../../src/Translations/AdminTranslations.php:879 msgid "24 hours" msgstr "24 horas" -#: ../../src/Translations/AdminTranslations.php:879 +#: ../../src/Translations/AdminTranslations.php:880 msgid "2 days" msgstr "2 días" -#: ../../src/Translations/AdminTranslations.php:880 +#: ../../src/Translations/AdminTranslations.php:881 msgid "3 days" msgstr "3 días" -#: ../../src/Translations/AdminTranslations.php:881 +#: ../../src/Translations/AdminTranslations.php:882 msgid "4 days" msgstr "4 días" -#: ../../src/Translations/AdminTranslations.php:882 +#: ../../src/Translations/AdminTranslations.php:883 msgid "5 days" msgstr "5 días" -#: ../../src/Translations/AdminTranslations.php:883 +#: ../../src/Translations/AdminTranslations.php:884 msgid "6 days" msgstr "6 días" -#: ../../src/Translations/AdminTranslations.php:884 +#: ../../src/Translations/AdminTranslations.php:885 msgid "7 days" msgstr "7 días" -#: ../../src/Translations/AdminTranslations.php:889 +#: ../../src/Translations/AdminTranslations.php:890 msgid "Would you like to know how Pix works?" msgstr "¿Quieres saber cómo funciona Pix?" -#: ../../src/Translations/AdminTranslations.php:890 +#: ../../src/Translations/AdminTranslations.php:891 msgid "" "We have a dedicated page where we explain how it works and its advantages." msgstr "Creamos una página que explica su funcionamiento y sus vantajas." -#: ../../src/Translations/AdminTranslations.php:891 +#: ../../src/Translations/AdminTranslations.php:892 msgid "Find out more about Pix" msgstr "Saber más sobre Pix" -#: ../../src/Translations/AdminTranslations.php:892 +#: ../../src/Translations/AdminTranslations.php:893 msgid "Advanced configuration of the Pix experience" msgstr "Configuración avanzada de la experiencia Pix" -#: ../../src/Translations/AdminTranslations.php:900 +#: ../../src/Translations/AdminTranslations.php:901 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." -#: ../../src/Translations/AdminTranslations.php:901 +#: ../../src/Translations/AdminTranslations.php:902 msgid "Download the Mercado Pago app on your cell phone." msgstr "Descarga la app de Mercado Pago en tu móvil." -#: ../../src/Translations/AdminTranslations.php:903 +#: ../../src/Translations/AdminTranslations.php:904 msgid "" "Choose which data to register as Pix keys. After registering, you can set up " "Pix in your checkout." @@ -1403,7 +1413,7 @@ msgstr "" "Elige qué datos registrar como claves PIX. Luego de registrarte, podrás " "configurar el Pix en tu checkout." -#: ../../src/Translations/AdminTranslations.php:904 +#: ../../src/Translations/AdminTranslations.php:905 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1411,7 +1421,7 @@ msgstr "" "Recuerda que, por el momento, el Banco Central de Brasil está abierto de " "lunes a viernes, de 9 a 18 horas." -#: ../../src/Translations/AdminTranslations.php:905 +#: ../../src/Translations/AdminTranslations.php:906 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1419,11 +1429,11 @@ msgstr "" "Si has solicitado tu registro fuera de este horario, te lo confirmaremos en " "el siguiente día hábil." -#: ../../src/Translations/AdminTranslations.php:906 +#: ../../src/Translations/AdminTranslations.php:907 msgid "Learn more about Pix" msgstr "Más información sobre Pix" -#: ../../src/Translations/AdminTranslations.php:907 +#: ../../src/Translations/AdminTranslations.php:908 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1431,82 +1441,82 @@ msgstr "" "Si ya has registrado una clave Pix en Mercado Pago y no puedes activar Pix " "en el checkout, " -#: ../../src/Translations/AdminTranslations.php:908 +#: ../../src/Translations/AdminTranslations.php:909 msgid "click here." msgstr "haz clic aquí." -#: ../../src/Translations/AdminTranslations.php:921 +#: ../../src/Translations/AdminTranslations.php:922 msgid "To enable test mode" msgstr "Para activar el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:923 +#: ../../src/Translations/AdminTranslations.php:924 msgid "copy your test credentials" msgstr "copia tus credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:924 +#: ../../src/Translations/AdminTranslations.php:925 msgid "and paste them above in section 1 of this page" msgstr "y pégalas en la sección 1 de esta página" -#: ../../src/Translations/AdminTranslations.php:929 +#: ../../src/Translations/AdminTranslations.php:930 msgid "Create your" msgstr "Crea tu" -#: ../../src/Translations/AdminTranslations.php:931 +#: ../../src/Translations/AdminTranslations.php:932 msgid "test user" msgstr "usuario de prueba" -#: ../../src/Translations/AdminTranslations.php:932 +#: ../../src/Translations/AdminTranslations.php:933 msgid "" "(Optional. Can be used in Production Mode and Test Mode, to test payments)" msgstr "" "(Opcional. Se puede utilizar en modo de producción y en modo de prueba, para " "probar los pagos)" -#: ../../src/Translations/AdminTranslations.php:938 +#: ../../src/Translations/AdminTranslations.php:939 msgid "Use our test cards" msgstr "Utiliza nuestras tarjetas de prueba" -#: ../../src/Translations/AdminTranslations.php:939 +#: ../../src/Translations/AdminTranslations.php:940 msgid "never use real cards" msgstr "nunca utilices tarjetas reales" -#: ../../src/Translations/AdminTranslations.php:945 +#: ../../src/Translations/AdminTranslations.php:946 msgid "Visit your store" msgstr "Visita tu tienda" -#: ../../src/Translations/AdminTranslations.php:946 +#: ../../src/Translations/AdminTranslations.php:947 msgid "to test purchases" msgstr "para testear compras" -#: ../../src/Translations/AdminTranslations.php:950 +#: ../../src/Translations/AdminTranslations.php:951 msgid "4. Test your store before you sell" msgstr "4. Testea tu tienda antes de vender" -#: ../../src/Translations/AdminTranslations.php:951 +#: ../../src/Translations/AdminTranslations.php:952 msgid "Choose how you want to operate your store:" msgstr "Elige cómo quieres operar tu tienda:" -#: ../../src/Translations/AdminTranslations.php:952 +#: ../../src/Translations/AdminTranslations.php:953 msgid "Test Mode" msgstr "Modo Test" -#: ../../src/Translations/AdminTranslations.php:953 +#: ../../src/Translations/AdminTranslations.php:954 msgid "Sale Mode (Production)" msgstr "Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:954 +#: ../../src/Translations/AdminTranslations.php:955 msgid "Mercado Pago payment methods in Production Mode" msgstr "Medios de pago Mercado Pago en Modo Produción" -#: ../../src/Translations/AdminTranslations.php:955 +#: ../../src/Translations/AdminTranslations.php:956 msgid "Mercado Pago payment methods in Test Mode" msgstr "Medios de pago Mercado Pago en Modo Test" -#: ../../src/Translations/AdminTranslations.php:956 +#: ../../src/Translations/AdminTranslations.php:957 msgid "Enter test credentials" msgstr "Ingresa las credenciales de prueba" -#: ../../src/Translations/AdminTranslations.php:957 +#: ../../src/Translations/AdminTranslations.php:958 msgid "" "Test the experience in Test Mode and then enable the Sale Mode (Production) " "to sell." @@ -1514,114 +1524,114 @@ msgstr "" "Testea la experiencia en Modo Test. Luego activa el Modo Ventas (Producción) " "para realizar ventas." -#: ../../src/Translations/AdminTranslations.php:958 +#: ../../src/Translations/AdminTranslations.php:959 msgid "Mercado Pago Checkouts disabled for real collections." msgstr "Checkouts Mercado Pago inactivos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:959 +#: ../../src/Translations/AdminTranslations.php:960 msgid "Test Mode rules." msgstr "Reglas del modo test." -#: ../../src/Translations/AdminTranslations.php:960 +#: ../../src/Translations/AdminTranslations.php:961 msgid "Mercado Pago Checkouts enabled for real collections." msgstr "Checkouts Mercado Pago activos para cobros reales." -#: ../../src/Translations/AdminTranslations.php:961 +#: ../../src/Translations/AdminTranslations.php:962 msgid "The clients can make real purchases in your store." msgstr "Los clientes pueden hacer compras reales en tu tienda." -#: ../../src/Translations/AdminTranslations.php:966 +#: ../../src/Translations/AdminTranslations.php:967 msgid "Store in sale mode (Production)" msgstr "Tienda en Modo Ventas (Producción)" -#: ../../src/Translations/AdminTranslations.php:967 +#: ../../src/Translations/AdminTranslations.php:968 msgid "Store under test" msgstr "Tienda en Modo Test" -#: ../../src/Translations/AdminTranslations.php:968 +#: ../../src/Translations/AdminTranslations.php:969 msgid "Save changes" msgstr "Guardar cambios" -#: ../../src/Translations/AdminTranslations.php:980 +#: ../../src/Translations/AdminTranslations.php:981 msgid "Store business fields are valid" msgstr "Los campos comerciales de la tienda son válidos" -#: ../../src/Translations/AdminTranslations.php:981 +#: ../../src/Translations/AdminTranslations.php:982 msgid "Store business fields could not be validated" msgstr "Los campos comerciales de la tienda no se pudieron validar" -#: ../../src/Translations/AdminTranslations.php:982 +#: ../../src/Translations/AdminTranslations.php:983 msgid "At least one payment method is enabled" msgstr "Al menos un método de pago está habilitado" -#: ../../src/Translations/AdminTranslations.php:983 +#: ../../src/Translations/AdminTranslations.php:984 msgid "No payment method enabled" msgstr "Ningún método de pago habilitado" -#: ../../src/Translations/AdminTranslations.php:984 +#: ../../src/Translations/AdminTranslations.php:985 msgid "Credentials fields are valid" msgstr "Los campos de la credencial son válidos" -#: ../../src/Translations/AdminTranslations.php:985 +#: ../../src/Translations/AdminTranslations.php:986 msgid "Credentials fields could not be validated" msgstr "No se pudieron validar los campos de credenciales" -#: ../../src/Translations/AdminTranslations.php:997 +#: ../../src/Translations/AdminTranslations.php:998 msgid "Valid Public Key" msgstr "Public key válida" -#: ../../src/Translations/AdminTranslations.php:998 +#: ../../src/Translations/AdminTranslations.php:999 msgid "Invalid Public Key" msgstr "Public key no válida" -#: ../../src/Translations/AdminTranslations.php:999 +#: ../../src/Translations/AdminTranslations.php:1000 msgid "Valid Access Token" msgstr "Access token válido" -#: ../../src/Translations/AdminTranslations.php:1000 +#: ../../src/Translations/AdminTranslations.php:1001 msgid "Invalid Access Token" msgstr "Access token no válido" -#: ../../src/Translations/AdminTranslations.php:1012 +#: ../../src/Translations/AdminTranslations.php:1013 msgid "Credentials were updated" msgstr "Se actualizaron las credenciales" -#: ../../src/Translations/AdminTranslations.php:1013 +#: ../../src/Translations/AdminTranslations.php:1014 msgid "" "Your store has exited Test Mode and is making real sales in Production Mode." msgstr "" "Ahora su tienda está fuera del modo de prueba y está realizando ventas " "reales en el modo de producción." -#: ../../src/Translations/AdminTranslations.php:1014 +#: ../../src/Translations/AdminTranslations.php:1015 msgid "To test the store, re-enter both test credentials." msgstr "Para probar la tienda, vuelva a ingresar ambas credenciales de prueba." -#: ../../src/Translations/AdminTranslations.php:1015 +#: ../../src/Translations/AdminTranslations.php:1016 msgid "Invalid credentials" msgstr "Credenciales no válidas" -#: ../../src/Translations/AdminTranslations.php:1016 +#: ../../src/Translations/AdminTranslations.php:1017 msgid "See our manual to learn" msgstr "Consulte nuestro manual para saber" -#: ../../src/Translations/AdminTranslations.php:1017 +#: ../../src/Translations/AdminTranslations.php:1018 msgid "how to enter the credentials the right way." msgstr "como ingresar las credenciales de forma correcta." -#: ../../src/Translations/AdminTranslations.php:1018 +#: ../../src/Translations/AdminTranslations.php:1019 msgid " for test mode" msgstr " para el modo de prueba" -#: ../../src/Translations/AdminTranslations.php:1030 +#: ../../src/Translations/AdminTranslations.php:1031 msgid "Store information is valid" msgstr "Información sobre tu tienda" -#: ../../src/Translations/AdminTranslations.php:1043 +#: ../../src/Translations/AdminTranslations.php:1044 msgid "Attention:" msgstr "Atención:" -#: ../../src/Translations/AdminTranslations.php:1044 +#: ../../src/Translations/AdminTranslations.php:1045 msgid "" "The currency settings you have in WooCommerce are not compatible with the " "currency you use in your Mercado Pago account. Please activate the currency " @@ -1630,19 +1640,19 @@ msgstr "" "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." -#: ../../src/Translations/AdminTranslations.php:1047 +#: ../../src/Translations/AdminTranslations.php:1048 msgid "We are converting your currency from: " msgstr "Ahora convertimos tu moneda de: " -#: ../../src/Translations/AdminTranslations.php:1063 +#: ../../src/Translations/AdminTranslations.php:1064 msgid "to " msgstr "a " -#: ../../src/Translations/AdminTranslations.php:1074 +#: ../../src/Translations/AdminTranslations.php:1075 msgid "Payment status on Mercado Pago" msgstr "Estado de pago en el Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1075 +#: ../../src/Translations/AdminTranslations.php:1076 msgid "" "This is the payment status of your Mercado Pago Activities. To check the " "order status, please refer to Order details." @@ -1650,52 +1660,52 @@ msgstr "" "Este es el estado del pago de las Actividades de tu Mercado Pago. Para " "consultar el estado del pedido, consulta en Detalles del Pedido." -#: ../../src/Translations/AdminTranslations.php:1076, -#: ../../src/Translations/AdminTranslations.php:1078 +#: ../../src/Translations/AdminTranslations.php:1077, +#: ../../src/Translations/AdminTranslations.php:1079 msgid "View purchase details at Mercado Pago" msgstr "Ver detalles de compra en Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1077, -#: ../../src/Translations/AdminTranslations.php:1079, -#: ../../src/Translations/AdminTranslations.php:1081 +#: ../../src/Translations/AdminTranslations.php:1078, +#: ../../src/Translations/AdminTranslations.php:1080, +#: ../../src/Translations/AdminTranslations.php:1082 msgid "Sync order status" msgstr "Sincronizar el estado del pedido" -#: ../../src/Translations/AdminTranslations.php:1080 +#: ../../src/Translations/AdminTranslations.php:1081 msgid "Consult the reasons for refusal" msgstr "Consultar motivos de rechazo" -#: ../../src/Translations/AdminTranslations.php:1082 +#: ../../src/Translations/AdminTranslations.php:1083 msgid "Order update successfully. This page will be reloaded..." msgstr "Actualización del pedido con éxito. Esta página será recargada…" -#: ../../src/Translations/AdminTranslations.php:1083 +#: ../../src/Translations/AdminTranslations.php:1084 msgid "Unable to update order:" msgstr "No se puede actualizar el pedido:" -#: ../../src/Translations/AdminTranslations.php:1084 +#: ../../src/Translations/AdminTranslations.php:1085 msgid "Payment made" msgstr "Pago realizado" -#: ../../src/Translations/AdminTranslations.php:1085 +#: ../../src/Translations/AdminTranslations.php:1086 msgid "Payment made by the buyer and already credited in the account." msgstr "" "El pago realizado por el comprador y que ya está acreditado en la cuenta." -#: ../../src/Translations/AdminTranslations.php:1086 +#: ../../src/Translations/AdminTranslations.php:1087 msgid "Call resolved" msgstr "Llamado resuelto" -#: ../../src/Translations/AdminTranslations.php:1087, -#: ../../src/Translations/AdminTranslations.php:1137 +#: ../../src/Translations/AdminTranslations.php:1088, +#: ../../src/Translations/AdminTranslations.php:1138 msgid "Please contact Mercado Pago for further details." msgstr "Contacta a Mercado Pago para saber más detalles." -#: ../../src/Translations/AdminTranslations.php:1088 +#: ../../src/Translations/AdminTranslations.php:1089 msgid "Payment refunded" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1089 +#: ../../src/Translations/AdminTranslations.php:1090 msgid "" "Your refund request has been made. Please contact Mercado Pago for further " "details." @@ -1703,59 +1713,59 @@ msgstr "" "Tu pedido de reebolso ya fue realizado. Contacta a Mercado Pago para saber " "más detalles." -#: ../../src/Translations/AdminTranslations.php:1090, -#: ../../src/Translations/AdminTranslations.php:1092 +#: ../../src/Translations/AdminTranslations.php:1091, +#: ../../src/Translations/AdminTranslations.php:1093 msgid "Payment returned" msgstr "Pago devuelto" -#: ../../src/Translations/AdminTranslations.php:1091 +#: ../../src/Translations/AdminTranslations.php:1092 msgid "The payment has been returned to the client." msgstr "El pago ya fue devuelto al cliente." -#: ../../src/Translations/AdminTranslations.php:1093 +#: ../../src/Translations/AdminTranslations.php:1094 msgid "The payment has been partially returned to the client." msgstr "El pago ya fue devuelto parcialmente al cliente." -#: ../../src/Translations/AdminTranslations.php:1094 +#: ../../src/Translations/AdminTranslations.php:1095 msgid "Payment canceled" msgstr "Pago cancelado" -#: ../../src/Translations/AdminTranslations.php:1095 +#: ../../src/Translations/AdminTranslations.php:1096 msgid "The payment has been successfully canceled." msgstr "El pago fue cancelado con éxito." -#: ../../src/Translations/AdminTranslations.php:1096 +#: ../../src/Translations/AdminTranslations.php:1097 msgid "Purchase canceled" msgstr "Compra cancelada" -#: ../../src/Translations/AdminTranslations.php:1097 +#: ../../src/Translations/AdminTranslations.php:1098 msgid "The payment has been canceled by the customer." msgstr "El pago fue cancelado por el cliente." -#: ../../src/Translations/AdminTranslations.php:1098, -#: ../../src/Translations/AdminTranslations.php:1100, -#: ../../src/Translations/AdminTranslations.php:1102, -#: ../../src/Translations/AdminTranslations.php:1104, -#: ../../src/Translations/AdminTranslations.php:1106, -#: ../../src/Translations/AdminTranslations.php:1114, -#: ../../src/Translations/AdminTranslations.php:1116, -#: ../../src/Translations/AdminTranslations.php:1118, -#: ../../src/Translations/AdminTranslations.php:1120, -#: ../../src/Translations/AdminTranslations.php:1122, -#: ../../src/Translations/AdminTranslations.php:1124, -#: ../../src/Translations/AdminTranslations.php:1126, -#: ../../src/Translations/AdminTranslations.php:1181 -msgid "Pending payment" -msgstr "Cobro pendiente" - #: ../../src/Translations/AdminTranslations.php:1099, #: ../../src/Translations/AdminTranslations.php:1101, #: ../../src/Translations/AdminTranslations.php:1103, -#: ../../src/Translations/AdminTranslations.php:1105 +#: ../../src/Translations/AdminTranslations.php:1105, +#: ../../src/Translations/AdminTranslations.php:1107, +#: ../../src/Translations/AdminTranslations.php:1115, +#: ../../src/Translations/AdminTranslations.php:1117, +#: ../../src/Translations/AdminTranslations.php:1119, +#: ../../src/Translations/AdminTranslations.php:1121, +#: ../../src/Translations/AdminTranslations.php:1123, +#: ../../src/Translations/AdminTranslations.php:1125, +#: ../../src/Translations/AdminTranslations.php:1127, +#: ../../src/Translations/AdminTranslations.php:1182 +msgid "Pending payment" +msgstr "Cobro pendiente" + +#: ../../src/Translations/AdminTranslations.php:1100, +#: ../../src/Translations/AdminTranslations.php:1102, +#: ../../src/Translations/AdminTranslations.php:1104, +#: ../../src/Translations/AdminTranslations.php:1106 msgid "Awaiting payment from the buyer." msgstr "Esperando el pago del comprador." -#: ../../src/Translations/AdminTranslations.php:1107 +#: ../../src/Translations/AdminTranslations.php:1108 msgid "" "We are veryfing the payment. We will notify you by email in up to 6 hours if " "everything is fine so that you can deliver the product or provide the " @@ -1764,19 +1774,19 @@ msgstr "" "Estamos revisando el pago. En menos de 6 horas te avisaremos por e-mail si " "está todo bien para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1108, -#: ../../src/Translations/AdminTranslations.php:1132, -#: ../../src/Translations/AdminTranslations.php:1148, -#: ../../src/Translations/AdminTranslations.php:1167, -#: ../../src/Translations/AdminTranslations.php:1171, -#: ../../src/Translations/AdminTranslations.php:1173, -#: ../../src/Translations/AdminTranslations.php:1175, -#: ../../src/Translations/AdminTranslations.php:1179 +#: ../../src/Translations/AdminTranslations.php:1109, +#: ../../src/Translations/AdminTranslations.php:1133, +#: ../../src/Translations/AdminTranslations.php:1149, +#: ../../src/Translations/AdminTranslations.php:1168, +#: ../../src/Translations/AdminTranslations.php:1172, +#: ../../src/Translations/AdminTranslations.php:1174, +#: ../../src/Translations/AdminTranslations.php:1176, +#: ../../src/Translations/AdminTranslations.php:1180 msgid "Declined payment" msgstr "Cobro rechazado" -#: ../../src/Translations/AdminTranslations.php:1109, -#: ../../src/Translations/AdminTranslations.php:1133 +#: ../../src/Translations/AdminTranslations.php:1110, +#: ../../src/Translations/AdminTranslations.php:1134 msgid "" "The card-issuing bank declined the payment. Please ask your client to use " "another card or to get in touch with the bank." @@ -1785,27 +1795,27 @@ msgstr "" "“\n" "“otra tarjeta o que se comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1110 +#: ../../src/Translations/AdminTranslations.php:1111 msgid "Payment authorized. Awaiting capture." msgstr "Pago autorizado. Esperando captura." -#: ../../src/Translations/AdminTranslations.php:1111 +#: ../../src/Translations/AdminTranslations.php:1112 msgid "" "The payment has been authorized on the client's card. Please capture the " "payment." msgstr "" "Ya se autorizó el pago en la tarjeta del cliente. Haz la captura del pago." -#: ../../src/Translations/AdminTranslations.php:1112 +#: ../../src/Translations/AdminTranslations.php:1113 msgid "Payment in process" msgstr "Pago en proceso" -#: ../../src/Translations/AdminTranslations.php:1113, -#: ../../src/Translations/AdminTranslations.php:1123 +#: ../../src/Translations/AdminTranslations.php:1114, +#: ../../src/Translations/AdminTranslations.php:1124 msgid "Please wait or contact Mercado Pago for further details" msgstr "Espera o contacta a Mercado Pago para saber más detalles" -#: ../../src/Translations/AdminTranslations.php:1115 +#: ../../src/Translations/AdminTranslations.php:1116 msgid "" "The bank is reviewing the payment. As soon as we have their confirmation, we " "will notify you via email so that you can deliver the product or provide the " @@ -1814,33 +1824,33 @@ msgstr "" "El banco está revisando el pago. Te avisaremos por e-mail cuando esté " "confirmado para que puedas entregar el producto o brindar el servicio." -#: ../../src/Translations/AdminTranslations.php:1117, -#: ../../src/Translations/AdminTranslations.php:1119, -#: ../../src/Translations/AdminTranslations.php:1121 +#: ../../src/Translations/AdminTranslations.php:1118, +#: ../../src/Translations/AdminTranslations.php:1120, +#: ../../src/Translations/AdminTranslations.php:1122 msgid "Awaiting payment information validation." msgstr "Esperando validación de los datos de pago." -#: ../../src/Translations/AdminTranslations.php:1125 +#: ../../src/Translations/AdminTranslations.php:1126 msgid "Waiting for the buyer." msgstr "Esperando al comprador." -#: ../../src/Translations/AdminTranslations.php:1127 +#: ../../src/Translations/AdminTranslations.php:1128 msgid "Waiting for the card issuer." msgstr "Espererando al emisor de la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1128, -#: ../../src/Translations/AdminTranslations.php:1130, -#: ../../src/Translations/AdminTranslations.php:1134, -#: ../../src/Translations/AdminTranslations.php:1155, -#: ../../src/Translations/AdminTranslations.php:1177 -msgid "The card issuing bank declined the payment" -msgstr "El banco emisor de la tarjeta rechazó el pago" - #: ../../src/Translations/AdminTranslations.php:1129, #: ../../src/Translations/AdminTranslations.php:1131, #: ../../src/Translations/AdminTranslations.php:1135, #: ../../src/Translations/AdminTranslations.php:1156, #: ../../src/Translations/AdminTranslations.php:1178 +msgid "The card issuing bank declined the payment" +msgstr "El banco emisor de la tarjeta rechazó el pago" + +#: ../../src/Translations/AdminTranslations.php:1130, +#: ../../src/Translations/AdminTranslations.php:1132, +#: ../../src/Translations/AdminTranslations.php:1136, +#: ../../src/Translations/AdminTranslations.php:1157, +#: ../../src/Translations/AdminTranslations.php:1179 msgid "" "Please recommend your customer to pay with another payment method or to " "contact their bank." @@ -1848,32 +1858,32 @@ msgstr "" "Recomiéndale a tu cliente que pague con otro medio de pago o que se " "comunique con su banco." -#: ../../src/Translations/AdminTranslations.php:1136 +#: ../../src/Translations/AdminTranslations.php:1137 msgid "Mercado Pago did not process the payment" msgstr "Mercado Pago no procesó el pago" -#: ../../src/Translations/AdminTranslations.php:1138, -#: ../../src/Translations/AdminTranslations.php:1183 -msgid "Expired payment deadline" -msgstr "Venció el plazo para el pago" - #: ../../src/Translations/AdminTranslations.php:1139, #: ../../src/Translations/AdminTranslations.php:1184 -msgid "The client did not pay within the time limit." -msgstr "El cliente no pagó dentro del límite de tiempo." +msgid "Expired payment deadline" +msgstr "Venció el plazo para el pago" #: ../../src/Translations/AdminTranslations.php:1140, -#: ../../src/Translations/AdminTranslations.php:1142, -#: ../../src/Translations/AdminTranslations.php:1144, #: ../../src/Translations/AdminTranslations.php:1185 -msgid "Your customer entered one or more incorrect card details" -msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" +msgid "The client did not pay within the time limit." +msgstr "El cliente no pagó dentro del límite de tiempo." #: ../../src/Translations/AdminTranslations.php:1141, #: ../../src/Translations/AdminTranslations.php:1143, #: ../../src/Translations/AdminTranslations.php:1145, -#: ../../src/Translations/AdminTranslations.php:1186, -#: ../../src/Translations/AdminTranslations.php:1187 +#: ../../src/Translations/AdminTranslations.php:1186 +msgid "Your customer entered one or more incorrect card details" +msgstr "Tu cliente ingresó uno o más datos de la tarjeta de forma incorrecta" + +#: ../../src/Translations/AdminTranslations.php:1142, +#: ../../src/Translations/AdminTranslations.php:1144, +#: ../../src/Translations/AdminTranslations.php:1146, +#: ../../src/Translations/AdminTranslations.php:1187, +#: ../../src/Translations/AdminTranslations.php:1188 msgid "" "Please ask them to enter to enter them again exactly as they appear on the " "card or on their bank app to complete the payment." @@ -1881,17 +1891,17 @@ msgstr "" "Pídele que vuelva a ingresarlos tal como figuran en la tarjeta o en la app " "de su banco para finalizar el pago." -#: ../../src/Translations/AdminTranslations.php:1146, -#: ../../src/Translations/AdminTranslations.php:1169 +#: ../../src/Translations/AdminTranslations.php:1147, +#: ../../src/Translations/AdminTranslations.php:1170 msgid "We protected you from a suspicious payment" msgstr "Te protegimos de un pago sospechoso" -#: ../../src/Translations/AdminTranslations.php:1147 +#: ../../src/Translations/AdminTranslations.php:1148 msgid "For safety reasons, this transaction cannot be completed." msgstr "Por motivos de seguridad, esta transacción no podrá ser finalizada." -#: ../../src/Translations/AdminTranslations.php:1149, -#: ../../src/Translations/AdminTranslations.php:1168 +#: ../../src/Translations/AdminTranslations.php:1150, +#: ../../src/Translations/AdminTranslations.php:1169 msgid "" "The buyer is suspended in our platform. Your client must contact us to check " "what happened." @@ -1899,12 +1909,12 @@ msgstr "" "El comprador está suspendido en Mercado Pago. Tu cliente debe comunicarse " "con nosotros para ver qué pasó." -#: ../../src/Translations/AdminTranslations.php:1150 +#: ../../src/Translations/AdminTranslations.php:1151 msgid "For safety reasons, the card issuing bank declined the payment" msgstr "Por seguridad, el banco emisor de la tarjeta rechazó el pago" -#: ../../src/Translations/AdminTranslations.php:1151, -#: ../../src/Translations/AdminTranslations.php:1170 +#: ../../src/Translations/AdminTranslations.php:1152, +#: ../../src/Translations/AdminTranslations.php:1171 msgid "" "Recommend your customer to pay with their usual payment method and device " "for online purchases." @@ -1912,40 +1922,40 @@ msgstr "" "Recomiéndale a tu cliente que pague con el medio de pago y dispositivo que " "suele usar para compras online." -#: ../../src/Translations/AdminTranslations.php:1152 +#: ../../src/Translations/AdminTranslations.php:1153 msgid "Your customer's credit card has no available limit" msgstr "La tarjeta de crédito de tu cliente no tiene límite disponible" -#: ../../src/Translations/AdminTranslations.php:1153, #: ../../src/Translations/AdminTranslations.php:1154, -#: ../../src/Translations/AdminTranslations.php:1158 +#: ../../src/Translations/AdminTranslations.php:1155, +#: ../../src/Translations/AdminTranslations.php:1159 msgid "" "Please ask them to pay with another card or to choose another payment method." msgstr "Pídele que pague con otra tarjeta o que elija otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1157 +#: ../../src/Translations/AdminTranslations.php:1158 msgid "Your customer reached the limit of payment attempts with this card" msgstr "Tu cliente alcanzó el límite de intentos de pago con la tarjeta" -#: ../../src/Translations/AdminTranslations.php:1159 +#: ../../src/Translations/AdminTranslations.php:1160 msgid "" "Your customer's card does not accept the number of installments selected" msgstr "La tarjeta de tu cliente no acepta la cantidad de pagos que seleccionó" -#: ../../src/Translations/AdminTranslations.php:1160 +#: ../../src/Translations/AdminTranslations.php:1161 msgid "" "Please ask them to choose a different number of installments or to pay with " "another method." msgstr "" "Pídele que elija una cantidad de pagos diferente o que use con otro medio." -#: ../../src/Translations/AdminTranslations.php:1161, -#: ../../src/Translations/AdminTranslations.php:1188 +#: ../../src/Translations/AdminTranslations.php:1162, +#: ../../src/Translations/AdminTranslations.php:1189 msgid "Your customer needs to authorize the payment through their bank" msgstr "Tu cliente necesita autorizar el pago con su banco" -#: ../../src/Translations/AdminTranslations.php:1162, -#: ../../src/Translations/AdminTranslations.php:1189 +#: ../../src/Translations/AdminTranslations.php:1163, +#: ../../src/Translations/AdminTranslations.php:1190 msgid "" "Please ask them to call the telephone number on their card or to pay with " "another method." @@ -1953,20 +1963,20 @@ msgstr "" "Pídele que llame al teléfono que está en la tarjeta o que pague con otro " "medio." -#: ../../src/Translations/AdminTranslations.php:1163 +#: ../../src/Translations/AdminTranslations.php:1164 msgid "" "The payment was declined because your customer already paid for this purchase" msgstr "El pago fue rechazado porque tu cliente ya pagó esta compra" -#: ../../src/Translations/AdminTranslations.php:1164 +#: ../../src/Translations/AdminTranslations.php:1165 msgid "Check your approved payments to verify it." msgstr "Revisa tu cobros aprobados para verificarlo." -#: ../../src/Translations/AdminTranslations.php:1165 +#: ../../src/Translations/AdminTranslations.php:1166 msgid "Your customer's card was is not activated yet" msgstr "La tarjeta de tu cliente aún no está habilitada" -#: ../../src/Translations/AdminTranslations.php:1166 +#: ../../src/Translations/AdminTranslations.php:1167 msgid "" "Please ask them to contact their bank by calling the number on the back of " "their card or to pay with another method." @@ -1974,7 +1984,7 @@ msgstr "" "Pídele que se comunique con su banco al número que está en el dorso de la " "tarjeta o que pague con otro medio." -#: ../../src/Translations/AdminTranslations.php:1172 +#: ../../src/Translations/AdminTranslations.php:1173 msgid "" "This payment was declined because it did not pass Mercado Pago security " "controls. Please ask your client to use another card." @@ -1982,7 +1992,7 @@ msgstr "" "Rechazamos este pago porque no pasó los controles de seguridad de Mercado " "Pago. Pedile a tu cliente que use otra tarjeta." -#: ../../src/Translations/AdminTranslations.php:1174 +#: ../../src/Translations/AdminTranslations.php:1175 msgid "" "The amount exceeded the card limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -1990,8 +2000,8 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1176, -#: ../../src/Translations/AdminTranslations.php:1180 +#: ../../src/Translations/AdminTranslations.php:1177, +#: ../../src/Translations/AdminTranslations.php:1181 msgid "" "Please ask your client to use another card or to get in touch with the card " "issuer." @@ -1999,7 +2009,7 @@ msgstr "" "Pídele a tu cliente que use otra tarjeta o que se comunique con el emisor de " "la tarjeta." -#: ../../src/Translations/AdminTranslations.php:1182 +#: ../../src/Translations/AdminTranslations.php:1183 msgid "" "The amount exceeded the card's limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -2007,21 +2017,21 @@ msgstr "" "El valor excedió el límite de la tarjeta. Pídele a tu cliente que use otra " "tarjeta o que se comunique con el banco." -#: ../../src/Translations/AdminTranslations.php:1190 +#: ../../src/Translations/AdminTranslations.php:1191 msgid "Your customer's debit card has insufficient funds" msgstr "La tarjeta de débito de tu cliente no tiene saldo suficiente" -#: ../../src/Translations/AdminTranslations.php:1191 +#: ../../src/Translations/AdminTranslations.php:1192 msgid "" "Please recommend your customer to pay with another card or to choose another " "payment method." msgstr "Pídele que pague con otra tarjeta o que elige otro medio de pago." -#: ../../src/Translations/AdminTranslations.php:1192 +#: ../../src/Translations/AdminTranslations.php:1193 msgid "Something went wrong and the payment was declined" msgstr "El pago fue rechazado porque hubo un error" -#: ../../src/Translations/AdminTranslations.php:1193 +#: ../../src/Translations/AdminTranslations.php:1194 msgid "" "Please recommend you customer to try again or to pay with another payment " "method." diff --git a/i18n/languages/woocommerce-mercadopago-pt_BR.mo b/i18n/languages/woocommerce-mercadopago-pt_BR.mo index 48f695c345b37337e0020614c3d6c7741f4c1f6f..c12bf80473fed98e16dc45995a9e4616511eb88c 100644 GIT binary patch delta 10552 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 delta 10216 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 diff --git a/i18n/languages/woocommerce-mercadopago-pt_BR.po b/i18n/languages/woocommerce-mercadopago-pt_BR.po index 8a861affd..bbf48456d 100644 --- a/i18n/languages/woocommerce-mercadopago-pt_BR.po +++ b/i18n/languages/woocommerce-mercadopago-pt_BR.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: Mercado Pago payments for WooCommerce\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/woocommerce-" "mercadopago\n" -"POT-Creation-Date: 2024-02-01 11:32+0000\n" +"POT-Creation-Date: 2024-02-07 19:47+0000\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -15,22 +15,22 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 3.4.2\n" -#: ../../src/WoocommerceMercadoPago.php:426, +#: ../../src/WoocommerceMercadoPago.php:449, #: ../../src/Translations/AdminTranslations.php:166 msgid "Activate WooCommerce" msgstr "Ativar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:427, +#: ../../src/WoocommerceMercadoPago.php:450, #: ../../src/Translations/AdminTranslations.php:167 msgid "Install WooCommerce" msgstr "Instalar WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:428, +#: ../../src/WoocommerceMercadoPago.php:451, #: ../../src/Translations/AdminTranslations.php:168 msgid "See WooCommerce" msgstr "Veja WooCommerce" -#: ../../src/WoocommerceMercadoPago.php:430, +#: ../../src/WoocommerceMercadoPago.php:453, #: ../../src/Translations/AdminTranslations.php:157 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" @@ -102,50 +102,60 @@ msgstr "" msgid "Activate" msgstr "Ativar" -#: ../../src/Translations/AdminTranslations.php:188 +#: ../../src/Translations/AdminTranslations.php:177 +msgid "" +"Unfortunately, the language configured in your WordPress is not compatible " +"with our plugin. For the best experience, please switch to a supported " +"language." +msgstr "" +"Infelizmente, o idioma configurado no seu WordPress não é compatível com " +"nosso plugin. Para a melhor experiência, por favor, mude para um idioma " +"suportado." + +#: ../../src/Translations/AdminTranslations.php:189 msgid "Set plugin" msgstr "Configurar plugin" -#: ../../src/Translations/AdminTranslations.php:189, -#: ../../src/Translations/AdminTranslations.php:743, -#: ../../src/Translations/AdminTranslations.php:802 +#: ../../src/Translations/AdminTranslations.php:190, +#: ../../src/Translations/AdminTranslations.php:744, +#: ../../src/Translations/AdminTranslations.php:803 msgid "Payment methods" msgstr "Meios de pagamento" -#: ../../src/Translations/AdminTranslations.php:190, -#: ../../src/Translations/AdminTranslations.php:261 +#: ../../src/Translations/AdminTranslations.php:191, +#: ../../src/Translations/AdminTranslations.php:262 msgid "Plugin manual" msgstr "Manual do plugin" -#: ../../src/Translations/AdminTranslations.php:202 +#: ../../src/Translations/AdminTranslations.php:203 msgid "Cancel order" msgstr "Cancelar ordem" -#: ../../src/Translations/AdminTranslations.php:203 +#: ../../src/Translations/AdminTranslations.php:204 msgid "Mercado Pago commission:" msgstr "Comissão do Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:204 +#: ../../src/Translations/AdminTranslations.php:205 msgid "Represents the commission configured on plugin settings." msgstr "Representa a comissão definida nas configurações do plugin." -#: ../../src/Translations/AdminTranslations.php:205 +#: ../../src/Translations/AdminTranslations.php:206 msgid "Mercado Pago discount:" msgstr "Desconto do Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:206 +#: ../../src/Translations/AdminTranslations.php:207 msgid "Represents the discount configured on plugin settings." msgstr "Representa o desconto definido nas configurações do plugin." -#: ../../src/Translations/AdminTranslations.php:207 +#: ../../src/Translations/AdminTranslations.php:208 msgid "Represents the installment fee charged by Mercado Pago." msgstr "Representa a taxa de parcelamento cobrada pelo Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:208 +#: ../../src/Translations/AdminTranslations.php:209 msgid "Mercado Pago Installment Fee:" msgstr "Taxa de prestação do Mercado Pago:" -#: ../../src/Translations/AdminTranslations.php:209 +#: ../../src/Translations/AdminTranslations.php:210 msgid "" "Represents the total purchase plus the installment fee charged by Mercado " "Pago." @@ -153,91 +163,91 @@ msgstr "" "Representa o total da compra mais a taxa de parcelamento cobrada pelo " "Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:210 +#: ../../src/Translations/AdminTranslations.php:211 msgid "Mercado Pago Total:" msgstr "Mercado Pago Total:" -#: ../../src/Translations/AdminTranslations.php:223 +#: ../../src/Translations/AdminTranslations.php:224 msgid "Accept" msgstr "Aceite" -#: ../../src/Translations/AdminTranslations.php:224 +#: ../../src/Translations/AdminTranslations.php:225 msgid "payments on the spot" msgstr "pagamentos no ato" -#: ../../src/Translations/AdminTranslations.php:225 +#: ../../src/Translations/AdminTranslations.php:226 msgid "with" msgstr "com" -#: ../../src/Translations/AdminTranslations.php:226 +#: ../../src/Translations/AdminTranslations.php:227 msgid "the" msgstr "toda a" -#: ../../src/Translations/AdminTranslations.php:227 +#: ../../src/Translations/AdminTranslations.php:228 msgid "security" msgstr "segurança" -#: ../../src/Translations/AdminTranslations.php:228 +#: ../../src/Translations/AdminTranslations.php:229 msgid "from Mercado Pago" msgstr "do Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:233 +#: ../../src/Translations/AdminTranslations.php:234 msgid "Choose" msgstr "Escolha" -#: ../../src/Translations/AdminTranslations.php:234 +#: ../../src/Translations/AdminTranslations.php:235 msgid "when you want to receive the money" msgstr "quando quer receber o dinheiro" -#: ../../src/Translations/AdminTranslations.php:235 +#: ../../src/Translations/AdminTranslations.php:236 msgid "from your sales and if you want to offer" msgstr "das vendas e se quer oferecer" -#: ../../src/Translations/AdminTranslations.php:236 +#: ../../src/Translations/AdminTranslations.php:237 msgid "interest-free installments" -msgstr "parcelamento sem juros" +msgstr "parcelamento sem acréscimos" -#: ../../src/Translations/AdminTranslations.php:237 +#: ../../src/Translations/AdminTranslations.php:238 msgid "to your clients." msgstr "aos clientes." -#: ../../src/Translations/AdminTranslations.php:242 +#: ../../src/Translations/AdminTranslations.php:243 msgid "Review the step-by-step of" msgstr "Revise o passo a passo de" -#: ../../src/Translations/AdminTranslations.php:243 +#: ../../src/Translations/AdminTranslations.php:244 msgid "how to integrate the Mercado Pago Plugin" msgstr "como integrar o Plugin do Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:244 +#: ../../src/Translations/AdminTranslations.php:245 msgid "on our website for developers." msgstr "no nosso site de desenvolvedores." -#: ../../src/Translations/AdminTranslations.php:248 +#: ../../src/Translations/AdminTranslations.php:249 msgid "SSL" msgstr "SSL" -#: ../../src/Translations/AdminTranslations.php:249 +#: ../../src/Translations/AdminTranslations.php:250 msgid "Curl" msgstr "Curl" -#: ../../src/Translations/AdminTranslations.php:250 +#: ../../src/Translations/AdminTranslations.php:251 msgid "GD Extensions" msgstr "Extensões GD" -#: ../../src/Translations/AdminTranslations.php:252 +#: ../../src/Translations/AdminTranslations.php:253 msgid "Technical requirements" msgstr "Requisitos técnicos" -#: ../../src/Translations/AdminTranslations.php:253 +#: ../../src/Translations/AdminTranslations.php:254 msgid "Collections and installments" msgstr "Recebimentos e parcelamento" -#: ../../src/Translations/AdminTranslations.php:254 +#: ../../src/Translations/AdminTranslations.php:255 msgid "Questions?" msgstr "Dúvidas?" -#: ../../src/Translations/AdminTranslations.php:255 +#: ../../src/Translations/AdminTranslations.php:256 msgid "" "Implementation responsible for transmitting data to Mercado Pago in a secure " "and encrypted way." @@ -245,7 +255,7 @@ msgstr "" "Implementação responsável pela transmissão de dados para o Mercado Pago de " "maneira segura e criptografada." -#: ../../src/Translations/AdminTranslations.php:256 +#: ../../src/Translations/AdminTranslations.php:257 msgid "" "It is an extension responsible for making payments via requests from the " "plugin to Mercado Pago." @@ -253,7 +263,7 @@ msgstr "" "É uma extensão responsável pela realização de pagamentos via solicitações do " "plugin ao Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:257 +#: ../../src/Translations/AdminTranslations.php:258 msgid "" "These extensions are responsible for the implementation and operation of Pix " "in your store." @@ -261,11 +271,11 @@ msgstr "" "São extensões responsáveis pela implementação e funcionamento do Pix na sua " "loja." -#: ../../src/Translations/AdminTranslations.php:260 +#: ../../src/Translations/AdminTranslations.php:261 msgid "Set deadlines and fees" msgstr "Ajustar prazos e taxas" -#: ../../src/Translations/AdminTranslations.php:274 +#: ../../src/Translations/AdminTranslations.php:275 msgid "" "To enable orders, you must create and activate production credentials in " "your Mercado Pago Account." @@ -273,77 +283,77 @@ msgstr "" "Para poder vender, você deve criar e ativar credenciais de produção na sua " "conta Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:275 +#: ../../src/Translations/AdminTranslations.php:276 msgid "Copy and paste the credentials below." msgstr "Copie e cole as credenciais abaixo." -#: ../../src/Translations/AdminTranslations.php:280 +#: ../../src/Translations/AdminTranslations.php:281 msgid "You must enter" msgstr "É necessário inserir" -#: ../../src/Translations/AdminTranslations.php:281 +#: ../../src/Translations/AdminTranslations.php:282 msgid "production credentials" msgstr "as credenciais de produção" -#: ../../src/Translations/AdminTranslations.php:285 +#: ../../src/Translations/AdminTranslations.php:286 msgid "Public Key" msgstr "Public key" -#: ../../src/Translations/AdminTranslations.php:286 +#: ../../src/Translations/AdminTranslations.php:287 msgid "Access Token" msgstr "Access Token" -#: ../../src/Translations/AdminTranslations.php:287 +#: ../../src/Translations/AdminTranslations.php:288 msgid "1. Integrate your store with Mercado Pago" msgstr "1. Integre a loja com o Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:288 +#: ../../src/Translations/AdminTranslations.php:289 msgid "Production credentials" msgstr "Credenciais de produção" -#: ../../src/Translations/AdminTranslations.php:289 +#: ../../src/Translations/AdminTranslations.php:290 msgid "Test credentials" msgstr "Credenciais de teste" -#: ../../src/Translations/AdminTranslations.php:291 +#: ../../src/Translations/AdminTranslations.php:292 msgid "Enable Mercado Pago checkouts for test purchases in the store." msgstr "Habilite os checkouts Mercado Pago para testes de compras na loja." -#: ../../src/Translations/AdminTranslations.php:292 +#: ../../src/Translations/AdminTranslations.php:293 msgid "Enable Mercado Pago checkouts to receive real payments in the store." msgstr "" "Habilite os checkouts Mercado Pago para receber pagamentos reais na loja." -#: ../../src/Translations/AdminTranslations.php:293 +#: ../../src/Translations/AdminTranslations.php:294 msgid "Paste your Public Key here" msgstr "Cole aqui sua Public Key" -#: ../../src/Translations/AdminTranslations.php:294 +#: ../../src/Translations/AdminTranslations.php:295 msgid "Paste your Access Token here" msgstr "Cole aqui seu Access Token" -#: ../../src/Translations/AdminTranslations.php:295 +#: ../../src/Translations/AdminTranslations.php:296 msgid "Check credentials" msgstr "Consultar credenciais" -#: ../../src/Translations/AdminTranslations.php:296, -#: ../../src/Translations/AdminTranslations.php:350 +#: ../../src/Translations/AdminTranslations.php:297, +#: ../../src/Translations/AdminTranslations.php:351 msgid "Save and continue" msgstr "Salvar e continuar" -#: ../../src/Translations/AdminTranslations.php:297 +#: ../../src/Translations/AdminTranslations.php:298 msgid "Important! To sell you must enter your credentials." msgstr "Importante! Para vender você deve inserir suas credenciais." -#: ../../src/Translations/AdminTranslations.php:299 +#: ../../src/Translations/AdminTranslations.php:300 msgid "Enter credentials" msgstr "Inserir credenciais" -#: ../../src/Translations/AdminTranslations.php:300 +#: ../../src/Translations/AdminTranslations.php:301 msgid "Activate your credentials to be able to sell" msgstr "Ative suas credenciais para poder vender" -#: ../../src/Translations/AdminTranslations.php:301 +#: ../../src/Translations/AdminTranslations.php:302 msgid "" "Credentials are codes that you must enter to enable sales. Go below on " "Activate Credentials. On the next screen, use again the Activate Credentials " @@ -353,23 +363,23 @@ msgstr "" "abaixo em Ativar Credenciais. Na próxima tela, utilize novamente o botão " "Ativar Credenciais e preencha os campos com as informações solicitadas." -#: ../../src/Translations/AdminTranslations.php:302 +#: ../../src/Translations/AdminTranslations.php:303 msgid "Activate credentials" msgstr "Ativar credenciais" -#: ../../src/Translations/AdminTranslations.php:315 +#: ../../src/Translations/AdminTranslations.php:316 msgid "Add the URL to receive payments notifications." msgstr "Insira a URL para receber notificações de pagamento." -#: ../../src/Translations/AdminTranslations.php:316 +#: ../../src/Translations/AdminTranslations.php:317 msgid "Find out more information in the" msgstr "Confira mais informações nos" -#: ../../src/Translations/AdminTranslations.php:318 +#: ../../src/Translations/AdminTranslations.php:319 msgid "guides" msgstr "manuais" -#: ../../src/Translations/AdminTranslations.php:323 +#: ../../src/Translations/AdminTranslations.php:324 msgid "" "If you are a Mercado Pago Certified Partner, make sure to add your " "integrator_id." @@ -377,31 +387,31 @@ msgstr "" "Se você é Parceiro certificado do Mercado Pago, não esqueça de inserir seu " "integrator_id." -#: ../../src/Translations/AdminTranslations.php:324 +#: ../../src/Translations/AdminTranslations.php:325 msgid "If you do not have the code, please" msgstr "Se você não possui o código, por favor" -#: ../../src/Translations/AdminTranslations.php:326 +#: ../../src/Translations/AdminTranslations.php:327 msgid "request it now" msgstr "solicite agora" -#: ../../src/Translations/AdminTranslations.php:330 +#: ../../src/Translations/AdminTranslations.php:331 msgid "2. Customize your business" msgstr "2. Personalize seu negócio" -#: ../../src/Translations/AdminTranslations.php:331 +#: ../../src/Translations/AdminTranslations.php:332 msgid "Your store information" msgstr "Informações sobre sua loja" -#: ../../src/Translations/AdminTranslations.php:332 +#: ../../src/Translations/AdminTranslations.php:333 msgid "Advanced integration options (optional)" msgstr "Opções avançadas de integração (opcional)" -#: ../../src/Translations/AdminTranslations.php:333 +#: ../../src/Translations/AdminTranslations.php:334 msgid "Debug and Log Mode" msgstr "Modo debug e log" -#: ../../src/Translations/AdminTranslations.php:334 +#: ../../src/Translations/AdminTranslations.php:335 msgid "" "Fill out the following information to have a better experience and offer " "more information to your clients." @@ -409,15 +419,15 @@ msgstr "" "Preencha as informações a seguir para ter uma melhor experiência e oferecer " "mais informações aos clientes." -#: ../../src/Translations/AdminTranslations.php:335 +#: ../../src/Translations/AdminTranslations.php:336 msgid "Name of your store in your client's invoice" msgstr "Nome da sua loja na fatura dos clientes" -#: ../../src/Translations/AdminTranslations.php:336 +#: ../../src/Translations/AdminTranslations.php:337 msgid "Identification in Activities of Mercado Pago" msgstr "Identificação em Atividades do Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:337 +#: ../../src/Translations/AdminTranslations.php:338 msgid "" "For further integration of your store with Mercado Pago (IPN, Certified " "Partners, Debug Mode)" @@ -425,203 +435,203 @@ msgstr "" "Para mais integração da sua loja com o Mercado Pago (IPN, Parceiros " "Certificados, Modo Debug)" -#: ../../src/Translations/AdminTranslations.php:338 +#: ../../src/Translations/AdminTranslations.php:339 msgid "Store category" msgstr "Categoria da loja" -#: ../../src/Translations/AdminTranslations.php:339 +#: ../../src/Translations/AdminTranslations.php:340 msgid "URL for IPN" msgstr "URL para IPN" -#: ../../src/Translations/AdminTranslations.php:340 +#: ../../src/Translations/AdminTranslations.php:341 msgid "Integrator ID" msgstr "Integrator ID" -#: ../../src/Translations/AdminTranslations.php:341 +#: ../../src/Translations/AdminTranslations.php:342 msgid "We record your store's actions in order to provide a better assistance." msgstr "Gravamos ações da sua loja para proporcionar melhor suporte." -#: ../../src/Translations/AdminTranslations.php:342 +#: ../../src/Translations/AdminTranslations.php:343 msgid "Ex: Mary's Store" msgstr "Ex.: Loja da Maria" -#: ../../src/Translations/AdminTranslations.php:343 +#: ../../src/Translations/AdminTranslations.php:344 msgid "Ex: Mary Store" msgstr "Ex.: LojaMaria" -#: ../../src/Translations/AdminTranslations.php:344 +#: ../../src/Translations/AdminTranslations.php:345 msgid "Select" msgstr "Selecionar" -#: ../../src/Translations/AdminTranslations.php:345 +#: ../../src/Translations/AdminTranslations.php:346 msgid "Ex: https://examples.com/my-custom-ipn-url" msgstr "Ex.: https://examples.com/my-custom-ipn-url" -#: ../../src/Translations/AdminTranslations.php:346 +#: ../../src/Translations/AdminTranslations.php:347 msgid "Add plugin default params" msgstr "Adicionar parâmetros padrão do plugin" -#: ../../src/Translations/AdminTranslations.php:347 +#: ../../src/Translations/AdminTranslations.php:348 msgid "Ex: 14987126498" msgstr "Ex.: 14987126498" -#: ../../src/Translations/AdminTranslations.php:348 +#: ../../src/Translations/AdminTranslations.php:349 msgid "Show advanced options" msgstr "Ver opções avançadas" -#: ../../src/Translations/AdminTranslations.php:349 +#: ../../src/Translations/AdminTranslations.php:350 msgid "Hide advanced options" msgstr "Esconder opções avançadas" -#: ../../src/Translations/AdminTranslations.php:351 +#: ../../src/Translations/AdminTranslations.php:352 msgid "" "If this field is empty, the purchase will be identified as Mercado Pago." msgstr "" "Se o campo estiver vazio, a compra do cliente será identificada como Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:352 +#: ../../src/Translations/AdminTranslations.php:353 msgid "In Activities, you will view this term before the order number" msgstr "Nas Ativades você verá o termo inserido antes do número do pedido" -#: ../../src/Translations/AdminTranslations.php:353 +#: ../../src/Translations/AdminTranslations.php:354 msgid "" "Select \"Other categories\" if you do not find the appropriate category." msgstr "Selecione ”Other categories” caso não encontre uma categoria adequada." -#: ../../src/Translations/AdminTranslations.php:354 +#: ../../src/Translations/AdminTranslations.php:355 msgid "request it now." msgstr "solicite agora." -#: ../../src/Translations/AdminTranslations.php:368 +#: ../../src/Translations/AdminTranslations.php:369 msgid "3. Set payment methods" msgstr "3. Configure os meios de pagamento" -#: ../../src/Translations/AdminTranslations.php:369 +#: ../../src/Translations/AdminTranslations.php:370 msgid "To view more options, please select a payment method below" msgstr "Selecione um meio de pagamento a seguir para ver mais opções" -#: ../../src/Translations/AdminTranslations.php:370 +#: ../../src/Translations/AdminTranslations.php:371 msgid "Settings" msgstr "Configurar" -#: ../../src/Translations/AdminTranslations.php:371 +#: ../../src/Translations/AdminTranslations.php:372 msgid "Continue" msgstr "Continuar" -#: ../../src/Translations/AdminTranslations.php:372 +#: ../../src/Translations/AdminTranslations.php:373 msgid "Enabled" msgstr "Ativado" -#: ../../src/Translations/AdminTranslations.php:373 +#: ../../src/Translations/AdminTranslations.php:374 msgid "Disabled" msgstr "Inativo" -#: ../../src/Translations/AdminTranslations.php:374 +#: ../../src/Translations/AdminTranslations.php:375 msgid "Configure your credentials to enable Mercado Pago payment methods." msgstr "" "Configure suas credenciais para ativar os métodos de pagamento do Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:387, -#: ../../src/Translations/AdminTranslations.php:393 +#: ../../src/Translations/AdminTranslations.php:388, +#: ../../src/Translations/AdminTranslations.php:394 msgid "The checkout is" msgstr "O checkout está" -#: ../../src/Translations/AdminTranslations.php:388, -#: ../../src/Translations/AdminTranslations.php:400, -#: ../../src/Translations/AdminTranslations.php:515, -#: ../../src/Translations/AdminTranslations.php:527, -#: ../../src/Translations/AdminTranslations.php:539, -#: ../../src/Translations/AdminTranslations.php:605, -#: ../../src/Translations/AdminTranslations.php:617, -#: ../../src/Translations/AdminTranslations.php:629, -#: ../../src/Translations/AdminTranslations.php:705, -#: ../../src/Translations/AdminTranslations.php:766, -#: ../../src/Translations/AdminTranslations.php:825, -#: ../../src/Translations/AdminTranslations.php:837 +#: ../../src/Translations/AdminTranslations.php:389, +#: ../../src/Translations/AdminTranslations.php:401, +#: ../../src/Translations/AdminTranslations.php:516, +#: ../../src/Translations/AdminTranslations.php:528, +#: ../../src/Translations/AdminTranslations.php:540, +#: ../../src/Translations/AdminTranslations.php:606, +#: ../../src/Translations/AdminTranslations.php:618, +#: ../../src/Translations/AdminTranslations.php:630, +#: ../../src/Translations/AdminTranslations.php:706, +#: ../../src/Translations/AdminTranslations.php:767, +#: ../../src/Translations/AdminTranslations.php:826, +#: ../../src/Translations/AdminTranslations.php:838 msgid "enabled" msgstr "ativo" -#: ../../src/Translations/AdminTranslations.php:394, +#: ../../src/Translations/AdminTranslations.php:395, +#: ../../src/Translations/AdminTranslations.php:407, +#: ../../src/Translations/AdminTranslations.php:522, +#: ../../src/Translations/AdminTranslations.php:534, +#: ../../src/Translations/AdminTranslations.php:546, +#: ../../src/Translations/AdminTranslations.php:612, +#: ../../src/Translations/AdminTranslations.php:624, +#: ../../src/Translations/AdminTranslations.php:636, +#: ../../src/Translations/AdminTranslations.php:712, +#: ../../src/Translations/AdminTranslations.php:773, +#: ../../src/Translations/AdminTranslations.php:832, +#: ../../src/Translations/AdminTranslations.php:844 +msgid "disabled" +msgstr "inativo" + +#: ../../src/Translations/AdminTranslations.php:400, #: ../../src/Translations/AdminTranslations.php:406, -#: ../../src/Translations/AdminTranslations.php:521, +#: ../../src/Translations/AdminTranslations.php:527, #: ../../src/Translations/AdminTranslations.php:533, -#: ../../src/Translations/AdminTranslations.php:545, -#: ../../src/Translations/AdminTranslations.php:611, +#: ../../src/Translations/AdminTranslations.php:617, #: ../../src/Translations/AdminTranslations.php:623, -#: ../../src/Translations/AdminTranslations.php:635, +#: ../../src/Translations/AdminTranslations.php:705, #: ../../src/Translations/AdminTranslations.php:711, +#: ../../src/Translations/AdminTranslations.php:766, #: ../../src/Translations/AdminTranslations.php:772, -#: ../../src/Translations/AdminTranslations.php:831, +#: ../../src/Translations/AdminTranslations.php:837, #: ../../src/Translations/AdminTranslations.php:843 -msgid "disabled" -msgstr "inativo" - -#: ../../src/Translations/AdminTranslations.php:399, -#: ../../src/Translations/AdminTranslations.php:405, -#: ../../src/Translations/AdminTranslations.php:526, -#: ../../src/Translations/AdminTranslations.php:532, -#: ../../src/Translations/AdminTranslations.php:616, -#: ../../src/Translations/AdminTranslations.php:622, -#: ../../src/Translations/AdminTranslations.php:704, -#: ../../src/Translations/AdminTranslations.php:710, -#: ../../src/Translations/AdminTranslations.php:765, -#: ../../src/Translations/AdminTranslations.php:771, -#: ../../src/Translations/AdminTranslations.php:836, -#: ../../src/Translations/AdminTranslations.php:842 msgid "Currency conversion is" msgstr "Conversão de moeda está" -#: ../../src/Translations/AdminTranslations.php:411, -#: ../../src/Translations/AdminTranslations.php:417 +#: ../../src/Translations/AdminTranslations.php:412, +#: ../../src/Translations/AdminTranslations.php:418 msgid "The buyer" msgstr "O comprador" -#: ../../src/Translations/AdminTranslations.php:412 +#: ../../src/Translations/AdminTranslations.php:413 msgid "will be automatically redirected to the store" msgstr "será redirecionado automaticamente à loja" -#: ../../src/Translations/AdminTranslations.php:418 +#: ../../src/Translations/AdminTranslations.php:419 msgid "will not be automatically redirected to the store" msgstr "não será redirecionado automaticamente à loja" -#: ../../src/Translations/AdminTranslations.php:424, -#: ../../src/Translations/AdminTranslations.php:430, -#: ../../src/Translations/AdminTranslations.php:640, -#: ../../src/Translations/AdminTranslations.php:646 +#: ../../src/Translations/AdminTranslations.php:425, +#: ../../src/Translations/AdminTranslations.php:431, +#: ../../src/Translations/AdminTranslations.php:641, +#: ../../src/Translations/AdminTranslations.php:647 msgid "Pending payments" msgstr "Pagamentos pendentes" -#: ../../src/Translations/AdminTranslations.php:425, -#: ../../src/Translations/AdminTranslations.php:641 +#: ../../src/Translations/AdminTranslations.php:426, +#: ../../src/Translations/AdminTranslations.php:642 msgid "will be automatically declined" msgstr "serão recusados automaticamente" -#: ../../src/Translations/AdminTranslations.php:431, -#: ../../src/Translations/AdminTranslations.php:647 +#: ../../src/Translations/AdminTranslations.php:432, +#: ../../src/Translations/AdminTranslations.php:648 msgid "will not be automatically declined" msgstr "não serão recusados automaticamente" -#: ../../src/Translations/AdminTranslations.php:435, -#: ../../src/Translations/AdminTranslations.php:450 +#: ../../src/Translations/AdminTranslations.php:436, +#: ../../src/Translations/AdminTranslations.php:451 msgid "Your saved cards or money in Mercado Pago" msgstr "Seus cartões ou dinheiro salvos no Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:436, -#: ../../src/Translations/AdminTranslations.php:438 +#: ../../src/Translations/AdminTranslations.php:437, +#: ../../src/Translations/AdminTranslations.php:439 msgid "Debit, Credit and invoice in Mercado Pago environment" msgstr "Pix, débito, crédito e boleto, no ambiente do Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:437 +#: ../../src/Translations/AdminTranslations.php:438 msgid "Mercado Pago - Checkout Pro" msgstr "Mercado Pago - Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:439 +#: ../../src/Translations/AdminTranslations.php:440 msgid "Checkout Pro" msgstr "Checkout Pro" -#: ../../src/Translations/AdminTranslations.php:440 +#: ../../src/Translations/AdminTranslations.php:441 msgid "" "With Checkout Pro you sell with all the safety inside Mercado Pago " "environment." @@ -629,23 +639,13 @@ msgstr "" "Com o Checkout Pro, você vende com toda a segurança, no ambiente do Mercado " "Pago." -#: ../../src/Translations/AdminTranslations.php:441, -#: ../../src/Translations/AdminTranslations.php:555, -#: ../../src/Translations/AdminTranslations.php:720, -#: ../../src/Translations/AdminTranslations.php:781, -#: ../../src/Translations/AdminTranslations.php:861 -msgid "Mercado Pago plugin general settings" -msgstr "Configurações gerais do plugin do Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:442, #: ../../src/Translations/AdminTranslations.php:556, -#: ../../src/Translations/AdminTranslations.php:658, #: ../../src/Translations/AdminTranslations.php:721, #: ../../src/Translations/AdminTranslations.php:782, #: ../../src/Translations/AdminTranslations.php:862 -msgid "" -"Set the deadlines and fees, test your store or access the Plugin manual." -msgstr "Ajuste taxas e prazos, teste sua loja ou acesso o manual do plugin." +msgid "Mercado Pago plugin general settings" +msgstr "Configurações gerais do plugin do Mercado Pago" #: ../../src/Translations/AdminTranslations.php:443, #: ../../src/Translations/AdminTranslations.php:557, @@ -653,16 +653,26 @@ msgstr "Ajuste taxas e prazos, teste sua loja ou acesso o manual do plugin." #: ../../src/Translations/AdminTranslations.php:722, #: ../../src/Translations/AdminTranslations.php:783, #: ../../src/Translations/AdminTranslations.php:863 -msgid "Go to Settings" -msgstr "Ir para configurações" +msgid "" +"Set the deadlines and fees, test your store or access the Plugin manual." +msgstr "Ajuste taxas e prazos, teste sua loja ou acesso o manual do plugin." #: ../../src/Translations/AdminTranslations.php:444, +#: ../../src/Translations/AdminTranslations.php:558, #: ../../src/Translations/AdminTranslations.php:660, +#: ../../src/Translations/AdminTranslations.php:723, +#: ../../src/Translations/AdminTranslations.php:784, #: ../../src/Translations/AdminTranslations.php:864 +msgid "Go to Settings" +msgstr "Ir para configurações" + +#: ../../src/Translations/AdminTranslations.php:445, +#: ../../src/Translations/AdminTranslations.php:661, +#: ../../src/Translations/AdminTranslations.php:865 msgid "Enable the checkout" msgstr "Ativar o checkout" -#: ../../src/Translations/AdminTranslations.php:445 +#: ../../src/Translations/AdminTranslations.php:446 msgid "" "By disabling it, you will disable all payments from Mercado Pago Checkout at " "Mercado Pago website by redirect." @@ -670,41 +680,32 @@ msgstr "" "Ao desativar, você desabilita todos os meios de pagamentos para o checkout " "com redirecionamento no site do Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:448, -#: ../../src/Translations/AdminTranslations.php:566, -#: ../../src/Translations/AdminTranslations.php:664, -#: ../../src/Translations/AdminTranslations.php:727, -#: ../../src/Translations/AdminTranslations.php:788, -#: ../../src/Translations/AdminTranslations.php:868 -msgid "Title in the store Checkout" -msgstr "Título no checkout da loja" - #: ../../src/Translations/AdminTranslations.php:449, +#: ../../src/Translations/AdminTranslations.php:567, #: ../../src/Translations/AdminTranslations.php:665, #: ../../src/Translations/AdminTranslations.php:728, #: ../../src/Translations/AdminTranslations.php:789, #: ../../src/Translations/AdminTranslations.php:869 +msgid "Title in the store Checkout" +msgstr "Título no checkout da loja" + +#: ../../src/Translations/AdminTranslations.php:450, +#: ../../src/Translations/AdminTranslations.php:666, +#: ../../src/Translations/AdminTranslations.php:729, +#: ../../src/Translations/AdminTranslations.php:790, +#: ../../src/Translations/AdminTranslations.php:870 msgid "Change the display text in Checkout, maximum characters: 85" msgstr "" "É possível modificar o título dentro da sua loja. Caracteres máximos: 85" -#: ../../src/Translations/AdminTranslations.php:451, -#: ../../src/Translations/AdminTranslations.php:569, -#: ../../src/Translations/AdminTranslations.php:667, -#: ../../src/Translations/AdminTranslations.php:730, -#: ../../src/Translations/AdminTranslations.php:791, -#: ../../src/Translations/AdminTranslations.php:871 -msgid "The text inserted here will not be translated to other languages" -msgstr "O texto inserido aqui não será traduzido para outras línguas" - #: ../../src/Translations/AdminTranslations.php:452, #: ../../src/Translations/AdminTranslations.php:570, -#: ../../src/Translations/AdminTranslations.php:671, +#: ../../src/Translations/AdminTranslations.php:668, #: ../../src/Translations/AdminTranslations.php:731, #: ../../src/Translations/AdminTranslations.php:792, -#: ../../src/Translations/AdminTranslations.php:885 -msgid "Convert Currency" -msgstr "Converter moeda" +#: ../../src/Translations/AdminTranslations.php:872 +msgid "The text inserted here will not be translated to other languages" +msgstr "O texto inserido aqui não será traduzido para outras línguas" #: ../../src/Translations/AdminTranslations.php:453, #: ../../src/Translations/AdminTranslations.php:571, @@ -712,6 +713,15 @@ msgstr "Converter moeda" #: ../../src/Translations/AdminTranslations.php:732, #: ../../src/Translations/AdminTranslations.php:793, #: ../../src/Translations/AdminTranslations.php:886 +msgid "Convert Currency" +msgstr "Converter moeda" + +#: ../../src/Translations/AdminTranslations.php:454, +#: ../../src/Translations/AdminTranslations.php:572, +#: ../../src/Translations/AdminTranslations.php:673, +#: ../../src/Translations/AdminTranslations.php:733, +#: ../../src/Translations/AdminTranslations.php:794, +#: ../../src/Translations/AdminTranslations.php:887 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." @@ -719,101 +729,101 @@ msgstr "" "Ative esta opção para que o valor da moeda configurada no WooCommerce seja " "compatível ao valor da moeda que você usa no Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:456 +#: ../../src/Translations/AdminTranslations.php:457 msgid "Choose the payment methods you accept in your store" msgstr "Escolha os meios de pagamento aceitos na loja" -#: ../../src/Translations/AdminTranslations.php:457 +#: ../../src/Translations/AdminTranslations.php:458 msgid "Enable the payment methods available to your clients." msgstr "Habilite os meios de pagamento disponíveis para os seus clientes." -#: ../../src/Translations/AdminTranslations.php:458 +#: ../../src/Translations/AdminTranslations.php:459 msgid "Credit Cards" msgstr "Cartões de crédito" -#: ../../src/Translations/AdminTranslations.php:459 +#: ../../src/Translations/AdminTranslations.php:460 msgid "Debit Cards" msgstr "Cartões de débito" -#: ../../src/Translations/AdminTranslations.php:460 +#: ../../src/Translations/AdminTranslations.php:461 msgid "Other Payment Methods" msgstr "Outros meios" -#: ../../src/Translations/AdminTranslations.php:461 +#: ../../src/Translations/AdminTranslations.php:462 msgid "Maximum number of installments" msgstr "Máximo de parcelas" -#: ../../src/Translations/AdminTranslations.php:462 +#: ../../src/Translations/AdminTranslations.php:463 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?" -#: ../../src/Translations/AdminTranslations.php:463 +#: ../../src/Translations/AdminTranslations.php:464 msgid "1 installment" msgstr "1 parcela" -#: ../../src/Translations/AdminTranslations.php:464 +#: ../../src/Translations/AdminTranslations.php:465 msgid "2 installments" msgstr "2 parcelas" -#: ../../src/Translations/AdminTranslations.php:465 +#: ../../src/Translations/AdminTranslations.php:466 msgid "3 installments" msgstr "3 parcelas" -#: ../../src/Translations/AdminTranslations.php:466 +#: ../../src/Translations/AdminTranslations.php:467 msgid "4 installments" msgstr "4 parcelas" -#: ../../src/Translations/AdminTranslations.php:467 +#: ../../src/Translations/AdminTranslations.php:468 msgid "5 installments" msgstr "5 parcelas" -#: ../../src/Translations/AdminTranslations.php:468 +#: ../../src/Translations/AdminTranslations.php:469 msgid "6 installments" msgstr "6 parcelas" -#: ../../src/Translations/AdminTranslations.php:469 +#: ../../src/Translations/AdminTranslations.php:470 msgid "10 installments" msgstr "10 parcelas" -#: ../../src/Translations/AdminTranslations.php:470 +#: ../../src/Translations/AdminTranslations.php:471 msgid "12 installments" msgstr "12 parcelas" -#: ../../src/Translations/AdminTranslations.php:471 +#: ../../src/Translations/AdminTranslations.php:472 msgid "15 installments" msgstr "15 parcelas" -#: ../../src/Translations/AdminTranslations.php:472 +#: ../../src/Translations/AdminTranslations.php:473 msgid "18 installments" msgstr "18 parcelas" -#: ../../src/Translations/AdminTranslations.php:473 +#: ../../src/Translations/AdminTranslations.php:474 msgid "24 installments" msgstr "24 parcelas" -#: ../../src/Translations/AdminTranslations.php:474, -#: ../../src/Translations/AdminTranslations.php:584 +#: ../../src/Translations/AdminTranslations.php:475, +#: ../../src/Translations/AdminTranslations.php:585 msgid "Advanced settings" msgstr "Configuração Avançada" -#: ../../src/Translations/AdminTranslations.php:475, -#: ../../src/Translations/AdminTranslations.php:585, -#: ../../src/Translations/AdminTranslations.php:681, -#: ../../src/Translations/AdminTranslations.php:738, -#: ../../src/Translations/AdminTranslations.php:797, -#: ../../src/Translations/AdminTranslations.php:893 +#: ../../src/Translations/AdminTranslations.php:476, +#: ../../src/Translations/AdminTranslations.php:586, +#: ../../src/Translations/AdminTranslations.php:682, +#: ../../src/Translations/AdminTranslations.php:739, +#: ../../src/Translations/AdminTranslations.php:798, +#: ../../src/Translations/AdminTranslations.php:894 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." -#: ../../src/Translations/AdminTranslations.php:476 +#: ../../src/Translations/AdminTranslations.php:477 msgid "Payment experience" msgstr "Experiência de pagamento" -#: ../../src/Translations/AdminTranslations.php:477 +#: ../../src/Translations/AdminTranslations.php:478 msgid "" "Define what payment experience your customers will have, whether inside or " "outside your store." @@ -821,40 +831,40 @@ msgstr "" "Defina qual experiência de pagamento seus clientes terão se dentro ou fora " "da sua loja." -#: ../../src/Translations/AdminTranslations.php:478 +#: ../../src/Translations/AdminTranslations.php:479 msgid "Redirect" msgstr "Redirect" -#: ../../src/Translations/AdminTranslations.php:479 +#: ../../src/Translations/AdminTranslations.php:480 msgid "Modal" msgstr "Modal" -#: ../../src/Translations/AdminTranslations.php:480 +#: ../../src/Translations/AdminTranslations.php:481 msgid "Return to the store" msgstr "Voltar à loja" -#: ../../src/Translations/AdminTranslations.php:481 +#: ../../src/Translations/AdminTranslations.php:482 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?" -#: ../../src/Translations/AdminTranslations.php:484 +#: ../../src/Translations/AdminTranslations.php:485 msgid "Success URL" msgstr "URL de sucesso" -#: ../../src/Translations/AdminTranslations.php:485 +#: ../../src/Translations/AdminTranslations.php:486 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." -#: ../../src/Translations/AdminTranslations.php:486 +#: ../../src/Translations/AdminTranslations.php:487 msgid "Payment URL rejected" msgstr "URL de pagamento recusado" -#: ../../src/Translations/AdminTranslations.php:487 +#: ../../src/Translations/AdminTranslations.php:488 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 " @@ -864,11 +874,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." -#: ../../src/Translations/AdminTranslations.php:488 +#: ../../src/Translations/AdminTranslations.php:489 msgid "Payment URL pending" msgstr "URL de pagamento pendente" -#: ../../src/Translations/AdminTranslations.php:489 +#: ../../src/Translations/AdminTranslations.php:490 msgid "" "Choose the URL that we will show to your customers when they have a payment " "pending approval." @@ -876,13 +886,13 @@ msgstr "" "Selecione a URL que mostraremos aos seus clientes quando tiverem um " "pagamento pendente de aprovação." -#: ../../src/Translations/AdminTranslations.php:490, -#: ../../src/Translations/AdminTranslations.php:682 +#: ../../src/Translations/AdminTranslations.php:491, +#: ../../src/Translations/AdminTranslations.php:683 msgid "Automatic decline of payments without instant approval" msgstr "Recusa automática de pagamentos sem aprovação instantânea" -#: ../../src/Translations/AdminTranslations.php:491, -#: ../../src/Translations/AdminTranslations.php:683 +#: ../../src/Translations/AdminTranslations.php:492, +#: ../../src/Translations/AdminTranslations.php:684 msgid "" "Enable it if you want to automatically decline payments that are not " "instantly approved by banks or other institutions." @@ -890,55 +900,46 @@ msgstr "" "Ative se quiser recusar automaticamente pagamentos que não são aprovados " "instantaneamente por bancos ou outros adquirentes." -#: ../../src/Translations/AdminTranslations.php:492 +#: ../../src/Translations/AdminTranslations.php:493 msgid "Debit, Credit and Invoice in Mercado Pago environment." msgstr "Pix, débito, crédito e boleto, no ambiente do Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:495, -#: ../../src/Translations/AdminTranslations.php:586, -#: ../../src/Translations/AdminTranslations.php:686, -#: ../../src/Translations/AdminTranslations.php:747, -#: ../../src/Translations/AdminTranslations.php:806, -#: ../../src/Translations/AdminTranslations.php:894 -msgid "Discount in Mercado Pago Checkouts" -msgstr "Desconto nos checkouts Mercado Pago" - #: ../../src/Translations/AdminTranslations.php:496, #: ../../src/Translations/AdminTranslations.php:587, #: ../../src/Translations/AdminTranslations.php:687, #: ../../src/Translations/AdminTranslations.php:748, #: ../../src/Translations/AdminTranslations.php:807, #: ../../src/Translations/AdminTranslations.php:895 -msgid "" -"Choose a percentage value that you want to discount your customers for " -"paying with Mercado Pago." -msgstr "" -"Selecione um valor percentual que quiser descontar para seus clientes por " -"pagar com Mercado Pago." +msgid "Discount in Mercado Pago Checkouts" +msgstr "Desconto nos checkouts Mercado Pago" #: ../../src/Translations/AdminTranslations.php:497, -#: ../../src/Translations/AdminTranslations.php:500, #: ../../src/Translations/AdminTranslations.php:588, -#: ../../src/Translations/AdminTranslations.php:591, #: ../../src/Translations/AdminTranslations.php:688, -#: ../../src/Translations/AdminTranslations.php:691, #: ../../src/Translations/AdminTranslations.php:749, -#: ../../src/Translations/AdminTranslations.php:752, #: ../../src/Translations/AdminTranslations.php:808, -#: ../../src/Translations/AdminTranslations.php:811, -#: ../../src/Translations/AdminTranslations.php:896, -#: ../../src/Translations/AdminTranslations.php:899 -msgid "Activate and show this information on Mercado Pago Checkout" -msgstr "Ativar e mostrar essa informação no checkout Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:896 +msgid "" +"Choose a percentage value that you want to discount your customers for " +"paying with Mercado Pago." +msgstr "" +"Selecione um valor percentual que quiser descontar para seus clientes por " +"pagar com Mercado Pago." #: ../../src/Translations/AdminTranslations.php:498, +#: ../../src/Translations/AdminTranslations.php:501, #: ../../src/Translations/AdminTranslations.php:589, +#: ../../src/Translations/AdminTranslations.php:592, #: ../../src/Translations/AdminTranslations.php:689, +#: ../../src/Translations/AdminTranslations.php:692, #: ../../src/Translations/AdminTranslations.php:750, +#: ../../src/Translations/AdminTranslations.php:753, #: ../../src/Translations/AdminTranslations.php:809, -#: ../../src/Translations/AdminTranslations.php:897 -msgid "Commission in Mercado Pago Checkouts" -msgstr "Comissão nos checkouts Mercado Pago" +#: ../../src/Translations/AdminTranslations.php:812, +#: ../../src/Translations/AdminTranslations.php:897, +#: ../../src/Translations/AdminTranslations.php:900 +msgid "Activate and show this information on Mercado Pago Checkout" +msgstr "Ativar e mostrar essa informação no checkout Mercado Pago" #: ../../src/Translations/AdminTranslations.php:499, #: ../../src/Translations/AdminTranslations.php:590, @@ -946,6 +947,15 @@ msgstr "Comissão nos checkouts Mercado Pago" #: ../../src/Translations/AdminTranslations.php:751, #: ../../src/Translations/AdminTranslations.php:810, #: ../../src/Translations/AdminTranslations.php:898 +msgid "Commission in Mercado Pago Checkouts" +msgstr "Comissão nos checkouts Mercado Pago" + +#: ../../src/Translations/AdminTranslations.php:500, +#: ../../src/Translations/AdminTranslations.php:591, +#: ../../src/Translations/AdminTranslations.php:691, +#: ../../src/Translations/AdminTranslations.php:752, +#: ../../src/Translations/AdminTranslations.php:811, +#: ../../src/Translations/AdminTranslations.php:899 msgid "" "Choose an additional percentage value that you want to charge as commission " "to your customers for paying with Mercado Pago." @@ -953,35 +963,35 @@ msgstr "" "Selecione um valor percentual adicional que quiser cobrar como tarifa dos " "seus clientes por pagar com Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:501 +#: ../../src/Translations/AdminTranslations.php:502 msgid "This seems to be an invalid URL" msgstr "Esta parece ser uma URL inválida" -#: ../../src/Translations/AdminTranslations.php:514, -#: ../../src/Translations/AdminTranslations.php:520 +#: ../../src/Translations/AdminTranslations.php:515, +#: ../../src/Translations/AdminTranslations.php:521 msgid "Payment in installments without card in the store checkout is" msgstr "Parcelamento sem cartão no checkout da loja está" -#: ../../src/Translations/AdminTranslations.php:538, -#: ../../src/Translations/AdminTranslations.php:544 +#: ../../src/Translations/AdminTranslations.php:539, +#: ../../src/Translations/AdminTranslations.php:545 msgid "The installments without card component is" msgstr "O componente de parcelamento sem cartão está" -#: ../../src/Translations/AdminTranslations.php:549, -#: ../../src/Translations/AdminTranslations.php:553 +#: ../../src/Translations/AdminTranslations.php:550, +#: ../../src/Translations/AdminTranslations.php:554 msgid "Installments without card" msgstr "Parcelado sem cartão" -#: ../../src/Translations/AdminTranslations.php:550, -#: ../../src/Translations/AdminTranslations.php:552 +#: ../../src/Translations/AdminTranslations.php:551, +#: ../../src/Translations/AdminTranslations.php:553 msgid "Customers who buy on spot and pay later in up to 12 installments" msgstr "Clientes compram na hora e pagam depois em até 12x" -#: ../../src/Translations/AdminTranslations.php:551 +#: ../../src/Translations/AdminTranslations.php:552 msgid "Mercado Pago - Installments without card" msgstr "Mercado Pago - Parcelamento sem cartão" -#: ../../src/Translations/AdminTranslations.php:554 +#: ../../src/Translations/AdminTranslations.php:555 msgid "" "Reach millions of buyers by offering Mercado Credito as a payment method. " "Our flexible payment options give your customers the possibility to buy " @@ -996,11 +1006,11 @@ msgstr "" "usar cartão. Para o seu negócio, a aprovação da compra é imediata e está " "garantida." -#: ../../src/Translations/AdminTranslations.php:558 +#: ../../src/Translations/AdminTranslations.php:559 msgid "Activate installments without card in your store checkout" msgstr "Ativar parcelamento sem cartão no checkout da loja" -#: ../../src/Translations/AdminTranslations.php:559 +#: ../../src/Translations/AdminTranslations.php:560 msgid "" "Offer the option to pay in installments without card directly from your " "store's checkout." @@ -1008,38 +1018,38 @@ msgstr "" "Ofereça a opção de pagamento parcelado sem cartão através do checkout da sua " "loja." -#: ../../src/Translations/AdminTranslations.php:562 +#: ../../src/Translations/AdminTranslations.php:563 msgid "Checkout visualization" msgstr "Visualização no checkout" -#: ../../src/Translations/AdminTranslations.php:563, -#: ../../src/Translations/AdminTranslations.php:583 +#: ../../src/Translations/AdminTranslations.php:564, +#: ../../src/Translations/AdminTranslations.php:584 msgid "Check below how this feature will be displayed to your customers:" msgstr "Confira como aparecerá este recurso para seus clientes:" -#: ../../src/Translations/AdminTranslations.php:564 +#: ../../src/Translations/AdminTranslations.php:565 msgid "Checkout Preview" msgstr "Visualização no checkout" -#: ../../src/Translations/AdminTranslations.php:565 +#: ../../src/Translations/AdminTranslations.php:566 msgid "PREVIEW" msgstr "PRÉ-VISUALIZAÇÃO" -#: ../../src/Translations/AdminTranslations.php:567 +#: ../../src/Translations/AdminTranslations.php:568 msgid "It is possible to edit the title. Maximum of 85 characters." msgstr "" "É possível modificar o título dentro da sua loja. Caracteres máximos: 85." -#: ../../src/Translations/AdminTranslations.php:568 +#: ../../src/Translations/AdminTranslations.php:569 msgid "Checkout without card" msgstr "Parcelado sem cartão com Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:574 +#: ../../src/Translations/AdminTranslations.php:575 msgid "" "Inform your customers about the option of paying in installments without card" msgstr "Informe aos seus clientes sobre a opção de parcelamento sem cartão" -#: ../../src/Translations/AdminTranslations.php:575 +#: ../../src/Translations/AdminTranslations.php:576 msgid "" "By activating the installments without card component, you increase your " "chances of selling." @@ -1047,62 +1057,62 @@ msgstr "" "Ativando o componente de parcelamento sem cartão, você aumentará suas " "possibilidades de venda." -#: ../../src/Translations/AdminTranslations.php:578 +#: ../../src/Translations/AdminTranslations.php:579 msgid "Banner on the product page | Computer version" msgstr "Informativo na página do produto | Versão para computador" -#: ../../src/Translations/AdminTranslations.php:579 +#: ../../src/Translations/AdminTranslations.php:580 msgid "Banner on the product page | Cellphone version" msgstr "Informativo na página do produto | Versão para celular" -#: ../../src/Translations/AdminTranslations.php:580 +#: ../../src/Translations/AdminTranslations.php:581 msgid "Computer" msgstr "Computador" -#: ../../src/Translations/AdminTranslations.php:581 +#: ../../src/Translations/AdminTranslations.php:582 msgid "Mobile" msgstr "Celular" -#: ../../src/Translations/AdminTranslations.php:582 +#: ../../src/Translations/AdminTranslations.php:583 msgid "Component visualization" msgstr "Visualização do componente" -#: ../../src/Translations/AdminTranslations.php:604, -#: ../../src/Translations/AdminTranslations.php:610 +#: ../../src/Translations/AdminTranslations.php:605, +#: ../../src/Translations/AdminTranslations.php:611 msgid "Transparent Checkout for credit cards is" msgstr "O Checkout Transparente para cartões de crédito está" -#: ../../src/Translations/AdminTranslations.php:628, -#: ../../src/Translations/AdminTranslations.php:634 +#: ../../src/Translations/AdminTranslations.php:629, +#: ../../src/Translations/AdminTranslations.php:635 msgid "Payments via Mercado Pago accounts are" msgstr "Pagamentos via conta Mercado Pago estão" -#: ../../src/Translations/AdminTranslations.php:651, -#: ../../src/Translations/AdminTranslations.php:666 +#: ../../src/Translations/AdminTranslations.php:652, +#: ../../src/Translations/AdminTranslations.php:667 msgid "Debit and Credit" msgstr "Débito e crédito" -#: ../../src/Translations/AdminTranslations.php:652, -#: ../../src/Translations/AdminTranslations.php:654, -#: ../../src/Translations/AdminTranslations.php:716, -#: ../../src/Translations/AdminTranslations.php:777, -#: ../../src/Translations/AdminTranslations.php:856, -#: ../../src/Translations/AdminTranslations.php:858 -msgid "Transparent Checkout in your store environment" -msgstr "Checkout Transparente, no ambiente da sua loja" - #: ../../src/Translations/AdminTranslations.php:653, +#: ../../src/Translations/AdminTranslations.php:655, #: ../../src/Translations/AdminTranslations.php:717, #: ../../src/Translations/AdminTranslations.php:778, -#: ../../src/Translations/AdminTranslations.php:857 +#: ../../src/Translations/AdminTranslations.php:857, +#: ../../src/Translations/AdminTranslations.php:859 +msgid "Transparent Checkout in your store environment" +msgstr "Checkout Transparente, no ambiente da sua loja" + +#: ../../src/Translations/AdminTranslations.php:654, +#: ../../src/Translations/AdminTranslations.php:718, +#: ../../src/Translations/AdminTranslations.php:779, +#: ../../src/Translations/AdminTranslations.php:858 msgid "Mercado pago - Customized Checkout" msgstr "Mercado Pago - Checkout personalizado" -#: ../../src/Translations/AdminTranslations.php:655 +#: ../../src/Translations/AdminTranslations.php:656 msgid "Transparent Checkout | Credit card" msgstr "Checkout Transparente | Cartão de Crédito" -#: ../../src/Translations/AdminTranslations.php:656 +#: ../../src/Translations/AdminTranslations.php:657 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and with the security from Mercado Pago." @@ -1110,11 +1120,11 @@ msgstr "" "Com o Checkout Transparente, você consegue vender dentro do ambiente da sua " "loja, sem redirecionamento, com toda a segurança do Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:657 +#: ../../src/Translations/AdminTranslations.php:658 msgid "Mercado Pago Plugin general settings" msgstr "Configurações gerais do plugin do Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:661 +#: ../../src/Translations/AdminTranslations.php:662 msgid "" "By disabling it, you will disable all credit cards payments from Mercado " "Pago Transparent Checkout." @@ -1122,11 +1132,11 @@ msgstr "" "Ao desativar, você desabilita todos os meios de pagamento de cartão de " "crédito no Checkout Transparente Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:668 +#: ../../src/Translations/AdminTranslations.php:669 msgid "Installments Fees" msgstr "Taxas de parcelamento" -#: ../../src/Translations/AdminTranslations.php:669 +#: ../../src/Translations/AdminTranslations.php:670 msgid "" "Set installment fees and whether they will be charged from the store or from " "the buyer." @@ -1134,15 +1144,15 @@ msgstr "" "Configure as taxas de parcelamento e se elas serão cobradas da loja ou do " "comprador." -#: ../../src/Translations/AdminTranslations.php:670 +#: ../../src/Translations/AdminTranslations.php:671 msgid "Set fees" msgstr "Configurar taxas" -#: ../../src/Translations/AdminTranslations.php:675 +#: ../../src/Translations/AdminTranslations.php:676 msgid "Payments via Mercado Pago account" msgstr "Pagamentos via conta Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:676 +#: ../../src/Translations/AdminTranslations.php:677 msgid "" "Your customers pay faster with saved cards, money balance or other available " "methods in their Mercado Pago accounts." @@ -1150,26 +1160,26 @@ msgstr "" "Seus clientes pagam mais rapidamente com cartões salvos, saldo ou outros " "meios disponíveis nas contas MP deles." -#: ../../src/Translations/AdminTranslations.php:679 +#: ../../src/Translations/AdminTranslations.php:680 msgid "Check an example of how it will appear in your store:" msgstr "Confira um exemplo de como vai aparecer na loja:" -#: ../../src/Translations/AdminTranslations.php:680 +#: ../../src/Translations/AdminTranslations.php:681 msgid "Advanced configuration of the personalized payment experience" msgstr "Configuração Avançada" -#: ../../src/Translations/AdminTranslations.php:715, -#: ../../src/Translations/AdminTranslations.php:729 +#: ../../src/Translations/AdminTranslations.php:716, +#: ../../src/Translations/AdminTranslations.php:730 msgid "Invoice" msgstr "Boleto e lotérica" -#: ../../src/Translations/AdminTranslations.php:718 +#: ../../src/Translations/AdminTranslations.php:719 msgid "Transparent Checkout | Invoice or Loterica" msgstr "Checkout Transparente | Boleto ou lotérica" -#: ../../src/Translations/AdminTranslations.php:719, -#: ../../src/Translations/AdminTranslations.php:780, -#: ../../src/Translations/AdminTranslations.php:860 +#: ../../src/Translations/AdminTranslations.php:720, +#: ../../src/Translations/AdminTranslations.php:781, +#: ../../src/Translations/AdminTranslations.php:861 msgid "" "With the Transparent Checkout, you can sell inside your store environment, " "without redirection and all the safety from Mercado Pago." @@ -1177,12 +1187,12 @@ msgstr "" "Com o Checkout Transparente, você consegue vender dentro do ambiente da sua " "loja, sem redirecionamento, com toda a segurança do Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:723, -#: ../../src/Translations/AdminTranslations.php:784 +#: ../../src/Translations/AdminTranslations.php:724, +#: ../../src/Translations/AdminTranslations.php:785 msgid "Enable the Checkout" msgstr "Ativar o checkout" -#: ../../src/Translations/AdminTranslations.php:724 +#: ../../src/Translations/AdminTranslations.php:725 msgid "" "By disabling it, you will disable all invoice payments from Mercado Pago " "Transparent Checkout." @@ -1190,34 +1200,34 @@ msgstr "" "Ao desativar, você desabilita pagamentos por boleto e lotérica no Checkout " "Transparente Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:725 +#: ../../src/Translations/AdminTranslations.php:726 msgid "The transparent checkout for tickets is enabled." msgstr "O checkout transparente para boletos está ativo." -#: ../../src/Translations/AdminTranslations.php:726 +#: ../../src/Translations/AdminTranslations.php:727 msgid "The transparent checkout for tickets is disabled." msgstr "O checkout transparente para boletos está inativo." -#: ../../src/Translations/AdminTranslations.php:735 +#: ../../src/Translations/AdminTranslations.php:736 msgid "Payment Due" msgstr "Vencimento do pagamento" -#: ../../src/Translations/AdminTranslations.php:736 +#: ../../src/Translations/AdminTranslations.php:737 msgid "In how many days will cash payments expire." msgstr "Em quantos dias os pagamentos via boleto e em lotéricas vencerão." -#: ../../src/Translations/AdminTranslations.php:737 +#: ../../src/Translations/AdminTranslations.php:738 msgid "Advanced configuration of the cash payment experience" msgstr "" "Configuração avançada da experiência de pagamento via boleto e em lotéricas" -#: ../../src/Translations/AdminTranslations.php:739, -#: ../../src/Translations/AdminTranslations.php:798 +#: ../../src/Translations/AdminTranslations.php:740, +#: ../../src/Translations/AdminTranslations.php:799 msgid "Reduce inventory" msgstr "Reduzir inventário" -#: ../../src/Translations/AdminTranslations.php:740, -#: ../../src/Translations/AdminTranslations.php:799 +#: ../../src/Translations/AdminTranslations.php:741, +#: ../../src/Translations/AdminTranslations.php:800 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 " @@ -1227,41 +1237,41 @@ msgstr "" "pagamento aprovado ou não. Desative esta opção para reduzi-lo somente quando " "os pagamentos estiverem aprovados." -#: ../../src/Translations/AdminTranslations.php:741, -#: ../../src/Translations/AdminTranslations.php:800 +#: ../../src/Translations/AdminTranslations.php:742, +#: ../../src/Translations/AdminTranslations.php:801 msgid "Reduce inventory is enabled." msgstr "Reduzir inventário está ativo." -#: ../../src/Translations/AdminTranslations.php:742, -#: ../../src/Translations/AdminTranslations.php:801 +#: ../../src/Translations/AdminTranslations.php:743, +#: ../../src/Translations/AdminTranslations.php:802 msgid "Reduce inventory is disabled." msgstr "Reduzir inventário está inativo." -#: ../../src/Translations/AdminTranslations.php:744, -#: ../../src/Translations/AdminTranslations.php:803 +#: ../../src/Translations/AdminTranslations.php:745, +#: ../../src/Translations/AdminTranslations.php:804 msgid "Enable the available payment methods" msgstr "Habilite os meios de pagamento disponíveis" -#: ../../src/Translations/AdminTranslations.php:745, -#: ../../src/Translations/AdminTranslations.php:804 +#: ../../src/Translations/AdminTranslations.php:746, +#: ../../src/Translations/AdminTranslations.php:805 msgid "Choose the available payment methods in your store." msgstr "Habilite os meios de pagamento disponíveis para seus clientes." -#: ../../src/Translations/AdminTranslations.php:746, -#: ../../src/Translations/AdminTranslations.php:805 +#: ../../src/Translations/AdminTranslations.php:747, +#: ../../src/Translations/AdminTranslations.php:806 msgid "All payment methods" msgstr "Todos os meios de pagamento" -#: ../../src/Translations/AdminTranslations.php:776, -#: ../../src/Translations/AdminTranslations.php:790 +#: ../../src/Translations/AdminTranslations.php:777, +#: ../../src/Translations/AdminTranslations.php:791 msgid "PSE" msgstr "" -#: ../../src/Translations/AdminTranslations.php:779 +#: ../../src/Translations/AdminTranslations.php:780 msgid "Transparent Checkout PSE" msgstr "Checkout Transparente PSE" -#: ../../src/Translations/AdminTranslations.php:785 +#: ../../src/Translations/AdminTranslations.php:786 msgid "" "By deactivating it, you will disable PSE payments from Mercado Pago " "Transparent Checkout." @@ -1269,49 +1279,49 @@ msgstr "" "Ao desativar, você desabilita pagamentos por PSE no Checkout Transparente " "Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:786 +#: ../../src/Translations/AdminTranslations.php:787 msgid "The transparent checkout for PSE is enabled." msgstr "O checkout transparente para PSE está ativo." -#: ../../src/Translations/AdminTranslations.php:787 +#: ../../src/Translations/AdminTranslations.php:788 msgid "The transparent checkout for PSE is disabled." msgstr "O checkout transparente para PSE está inativo." -#: ../../src/Translations/AdminTranslations.php:796 +#: ../../src/Translations/AdminTranslations.php:797 msgid "Advanced configuration of the PSE payment experience" msgstr "Configuração avançada da experiência de pagamento via PSE" -#: ../../src/Translations/AdminTranslations.php:824, -#: ../../src/Translations/AdminTranslations.php:830 +#: ../../src/Translations/AdminTranslations.php:825, +#: ../../src/Translations/AdminTranslations.php:831 msgid "The transparent checkout for Pix payment is" msgstr "O checkout transparente para pagamentos com Pix está" -#: ../../src/Translations/AdminTranslations.php:848 +#: ../../src/Translations/AdminTranslations.php:849 msgid "Go to the" msgstr "Acesse a área" -#: ../../src/Translations/AdminTranslations.php:849 +#: ../../src/Translations/AdminTranslations.php:850 msgid "Your Profile" msgstr "Seu Perfil" -#: ../../src/Translations/AdminTranslations.php:850 +#: ../../src/Translations/AdminTranslations.php:851 msgid "area and choose the" msgstr "e escolha a seção" -#: ../../src/Translations/AdminTranslations.php:851 +#: ../../src/Translations/AdminTranslations.php:852 msgid "Your Pix Keys section" msgstr "Suas chaves Pix" -#: ../../src/Translations/AdminTranslations.php:855, -#: ../../src/Translations/AdminTranslations.php:870 +#: ../../src/Translations/AdminTranslations.php:856, +#: ../../src/Translations/AdminTranslations.php:871 msgid "Pix" msgstr "Pix" -#: ../../src/Translations/AdminTranslations.php:859 +#: ../../src/Translations/AdminTranslations.php:860 msgid "Transparent Checkout | Pix" msgstr "Checkout Transparente | Pix" -#: ../../src/Translations/AdminTranslations.php:865 +#: ../../src/Translations/AdminTranslations.php:866 msgid "" "By disabling it, you will disable all Pix payments from Mercado Pago " "Transparent Checkout." @@ -1319,85 +1329,85 @@ msgstr "" "Ao desativar, você desabilita pagamentos por Pix no Checkout Transparente " "Mercado Pago." -#: ../../src/Translations/AdminTranslations.php:872 +#: ../../src/Translations/AdminTranslations.php:873 msgid "Expiration for payments via Pix" msgstr "Vencimento para pagamentos com Pix" -#: ../../src/Translations/AdminTranslations.php:873 +#: ../../src/Translations/AdminTranslations.php:874 msgid "Set the limit in minutes for your clients to pay via Pix." msgstr "Defina o limite de minutos para seus clientes poderem pagar com Pix." -#: ../../src/Translations/AdminTranslations.php:874 +#: ../../src/Translations/AdminTranslations.php:875 msgid "15 minutes" msgstr "15 minutos" -#: ../../src/Translations/AdminTranslations.php:875 +#: ../../src/Translations/AdminTranslations.php:876 msgid "30 minutes (recommended)" msgstr "30 minutos (recomendado)" -#: ../../src/Translations/AdminTranslations.php:876 +#: ../../src/Translations/AdminTranslations.php:877 msgid "60 minutes" msgstr "60 minutos" -#: ../../src/Translations/AdminTranslations.php:877 +#: ../../src/Translations/AdminTranslations.php:878 msgid "12 hours" msgstr "12 horas" -#: ../../src/Translations/AdminTranslations.php:878 +#: ../../src/Translations/AdminTranslations.php:879 msgid "24 hours" msgstr "24 horas" -#: ../../src/Translations/AdminTranslations.php:879 +#: ../../src/Translations/AdminTranslations.php:880 msgid "2 days" msgstr "2 dias" -#: ../../src/Translations/AdminTranslations.php:880 +#: ../../src/Translations/AdminTranslations.php:881 msgid "3 days" msgstr "3 dias" -#: ../../src/Translations/AdminTranslations.php:881 +#: ../../src/Translations/AdminTranslations.php:882 msgid "4 days" msgstr "4 dias" -#: ../../src/Translations/AdminTranslations.php:882 +#: ../../src/Translations/AdminTranslations.php:883 msgid "5 days" msgstr "5 dias" -#: ../../src/Translations/AdminTranslations.php:883 +#: ../../src/Translations/AdminTranslations.php:884 msgid "6 days" msgstr "6 dias" -#: ../../src/Translations/AdminTranslations.php:884 +#: ../../src/Translations/AdminTranslations.php:885 msgid "7 days" msgstr "7 dias" -#: ../../src/Translations/AdminTranslations.php:889 +#: ../../src/Translations/AdminTranslations.php:890 msgid "Would you like to know how Pix works?" msgstr "Quer saber como funciona o Pix?" -#: ../../src/Translations/AdminTranslations.php:890 +#: ../../src/Translations/AdminTranslations.php:891 msgid "" "We have a dedicated page where we explain how it works and its advantages." msgstr "Criamos uma página que explica seu funcionamento e vantagens." -#: ../../src/Translations/AdminTranslations.php:891 +#: ../../src/Translations/AdminTranslations.php:892 msgid "Find out more about Pix" msgstr "Saber mais sobre o Pix" -#: ../../src/Translations/AdminTranslations.php:892 +#: ../../src/Translations/AdminTranslations.php:893 msgid "Advanced configuration of the Pix experience" msgstr "Configurações avançadas da experiência de pagamento via Pix" -#: ../../src/Translations/AdminTranslations.php:900 +#: ../../src/Translations/AdminTranslations.php:901 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." -#: ../../src/Translations/AdminTranslations.php:901 +#: ../../src/Translations/AdminTranslations.php:902 msgid "Download the Mercado Pago app on your cell phone." msgstr "Baixe o app do Mercado Pago no seu celular." -#: ../../src/Translations/AdminTranslations.php:903 +#: ../../src/Translations/AdminTranslations.php:904 msgid "" "Choose which data to register as Pix keys. After registering, you can set up " "Pix in your checkout." @@ -1405,7 +1415,7 @@ msgstr "" "Escolha quais dados cadastrar como chaves Pix. Após fazer esse cadastro, " "você poderá configurar o Pix no seu checkout." -#: ../../src/Translations/AdminTranslations.php:904 +#: ../../src/Translations/AdminTranslations.php:905 msgid "" "Remember that, for the time being, the Central Bank of Brazil is open Monday " "through Friday, from 9am to 6pm." @@ -1413,7 +1423,7 @@ msgstr "" "Lembre-se de que, por enquanto, o Banco Central do Brasil funciona de " "segunda a sexta-feira, das 9h às 18h." -#: ../../src/Translations/AdminTranslations.php:905 +#: ../../src/Translations/AdminTranslations.php:906 msgid "" "If you requested your registration outside these hours, we will confirm it " "within the next business day." @@ -1421,11 +1431,11 @@ msgstr "" "Se você solicitou seu cadastro fora desse horário, vamos confirmar no " "próximo dia útil." -#: ../../src/Translations/AdminTranslations.php:906 +#: ../../src/Translations/AdminTranslations.php:907 msgid "Learn more about Pix" msgstr "Saber mais sobre o Pix" -#: ../../src/Translations/AdminTranslations.php:907 +#: ../../src/Translations/AdminTranslations.php:908 msgid "" "If you have already registered a Pix key at Mercado Pago and cannot activate " "Pix in the checkout, " @@ -1433,82 +1443,82 @@ msgstr "" "Caso já tenha cadastrado uma chave PIX no Mercado Pago e não consiga ativar " "o PIX no checkout, " -#: ../../src/Translations/AdminTranslations.php:908 +#: ../../src/Translations/AdminTranslations.php:909 msgid "click here." msgstr "clique aqui." -#: ../../src/Translations/AdminTranslations.php:921 +#: ../../src/Translations/AdminTranslations.php:922 msgid "To enable test mode" msgstr "Para habilitar o modo teste" -#: ../../src/Translations/AdminTranslations.php:923 +#: ../../src/Translations/AdminTranslations.php:924 msgid "copy your test credentials" msgstr "copie suas credenciais de teste" -#: ../../src/Translations/AdminTranslations.php:924 +#: ../../src/Translations/AdminTranslations.php:925 msgid "and paste them above in section 1 of this page" msgstr "e cole acima na seção 1 desta página" -#: ../../src/Translations/AdminTranslations.php:929 +#: ../../src/Translations/AdminTranslations.php:930 msgid "Create your" msgstr "Crie seu" -#: ../../src/Translations/AdminTranslations.php:931 +#: ../../src/Translations/AdminTranslations.php:932 msgid "test user" msgstr "usuário de teste" -#: ../../src/Translations/AdminTranslations.php:932 +#: ../../src/Translations/AdminTranslations.php:933 msgid "" "(Optional. Can be used in Production Mode and Test Mode, to test payments)" msgstr "" "(Opcional. Pode ser usado no Modo Produção e Modo teste, para testar " "pagamentos)" -#: ../../src/Translations/AdminTranslations.php:938 +#: ../../src/Translations/AdminTranslations.php:939 msgid "Use our test cards" msgstr "Use nossos cartões de teste" -#: ../../src/Translations/AdminTranslations.php:939 +#: ../../src/Translations/AdminTranslations.php:940 msgid "never use real cards" msgstr "nunca use cartões reais" -#: ../../src/Translations/AdminTranslations.php:945 +#: ../../src/Translations/AdminTranslations.php:946 msgid "Visit your store" msgstr "Visite sua loja" -#: ../../src/Translations/AdminTranslations.php:946 +#: ../../src/Translations/AdminTranslations.php:947 msgid "to test purchases" msgstr "para testar compras" -#: ../../src/Translations/AdminTranslations.php:950 +#: ../../src/Translations/AdminTranslations.php:951 msgid "4. Test your store before you sell" msgstr "4. Teste sua loja antes de vender" -#: ../../src/Translations/AdminTranslations.php:951 +#: ../../src/Translations/AdminTranslations.php:952 msgid "Choose how you want to operate your store:" msgstr "Escolha como você quer operar sua loja:" -#: ../../src/Translations/AdminTranslations.php:952 +#: ../../src/Translations/AdminTranslations.php:953 msgid "Test Mode" msgstr "Modo Teste" -#: ../../src/Translations/AdminTranslations.php:953 +#: ../../src/Translations/AdminTranslations.php:954 msgid "Sale Mode (Production)" msgstr "Modo Vendas (Produção)" -#: ../../src/Translations/AdminTranslations.php:954 +#: ../../src/Translations/AdminTranslations.php:955 msgid "Mercado Pago payment methods in Production Mode" msgstr "Meios de pagamento Mercado Pago em Modo Produção" -#: ../../src/Translations/AdminTranslations.php:955 +#: ../../src/Translations/AdminTranslations.php:956 msgid "Mercado Pago payment methods in Test Mode" msgstr "Meios de pagamento Mercado Pago em Modo Teste" -#: ../../src/Translations/AdminTranslations.php:956 +#: ../../src/Translations/AdminTranslations.php:957 msgid "Enter test credentials" msgstr "Insira as credenciais de teste" -#: ../../src/Translations/AdminTranslations.php:957 +#: ../../src/Translations/AdminTranslations.php:958 msgid "" "Test the experience in Test Mode and then enable the Sale Mode (Production) " "to sell." @@ -1516,113 +1526,113 @@ msgstr "" "Teste a experiência no Modo Teste. Depois ative o Modo Vendas (Produção) " "para fazer vendas." -#: ../../src/Translations/AdminTranslations.php:958 +#: ../../src/Translations/AdminTranslations.php:959 msgid "Mercado Pago Checkouts disabled for real collections." msgstr "Checkouts Mercado Pago inativos para cobranças reais." -#: ../../src/Translations/AdminTranslations.php:959 +#: ../../src/Translations/AdminTranslations.php:960 msgid "Test Mode rules." msgstr "Consulte as regras do modo teste." -#: ../../src/Translations/AdminTranslations.php:960 +#: ../../src/Translations/AdminTranslations.php:961 msgid "Mercado Pago Checkouts enabled for real collections." msgstr "Checkouts Mercado Pago ativos para cobranças reais." -#: ../../src/Translations/AdminTranslations.php:961 +#: ../../src/Translations/AdminTranslations.php:962 msgid "The clients can make real purchases in your store." msgstr "Clientes podem fazer compras reais na sua loja." -#: ../../src/Translations/AdminTranslations.php:966 +#: ../../src/Translations/AdminTranslations.php:967 msgid "Store in sale mode (Production)" msgstr "Loja em Modo Vendas (Produção)" -#: ../../src/Translations/AdminTranslations.php:967 +#: ../../src/Translations/AdminTranslations.php:968 msgid "Store under test" msgstr "Loja em Modo Teste" -#: ../../src/Translations/AdminTranslations.php:968 +#: ../../src/Translations/AdminTranslations.php:969 msgid "Save changes" msgstr "Salvar mudanças" -#: ../../src/Translations/AdminTranslations.php:980 +#: ../../src/Translations/AdminTranslations.php:981 msgid "Store business fields are valid" msgstr "Os campos de negócio são válidos" -#: ../../src/Translations/AdminTranslations.php:981 +#: ../../src/Translations/AdminTranslations.php:982 msgid "Store business fields could not be validated" msgstr "Os campos de negócio não puderam ser validados" -#: ../../src/Translations/AdminTranslations.php:982 +#: ../../src/Translations/AdminTranslations.php:983 msgid "At least one payment method is enabled" msgstr "Pelo menos um meio de pagamento está ativado" -#: ../../src/Translations/AdminTranslations.php:983 +#: ../../src/Translations/AdminTranslations.php:984 msgid "No payment method enabled" msgstr "Nenhum meio de pagamento ativada" -#: ../../src/Translations/AdminTranslations.php:984 +#: ../../src/Translations/AdminTranslations.php:985 msgid "Credentials fields are valid" msgstr "Os campos de credenciais são válidos" -#: ../../src/Translations/AdminTranslations.php:985 +#: ../../src/Translations/AdminTranslations.php:986 msgid "Credentials fields could not be validated" msgstr "Os campos de credenciais não puderam ser validados" -#: ../../src/Translations/AdminTranslations.php:997 +#: ../../src/Translations/AdminTranslations.php:998 msgid "Valid Public Key" msgstr "Public key válida" -#: ../../src/Translations/AdminTranslations.php:998 +#: ../../src/Translations/AdminTranslations.php:999 msgid "Invalid Public Key" msgstr "Public key inválida" -#: ../../src/Translations/AdminTranslations.php:999 +#: ../../src/Translations/AdminTranslations.php:1000 msgid "Valid Access Token" msgstr "Access token válido" -#: ../../src/Translations/AdminTranslations.php:1000 +#: ../../src/Translations/AdminTranslations.php:1001 msgid "Invalid Access Token" msgstr "Access token inválido" -#: ../../src/Translations/AdminTranslations.php:1012 +#: ../../src/Translations/AdminTranslations.php:1013 msgid "Credentials were updated" msgstr "As credenciais foram atualizadas" -#: ../../src/Translations/AdminTranslations.php:1013 +#: ../../src/Translations/AdminTranslations.php:1014 msgid "" "Your store has exited Test Mode and is making real sales in Production Mode." msgstr "" "Sua loja saiu do Modo Teste e está fazendo vendas reais no Modo Produção." -#: ../../src/Translations/AdminTranslations.php:1014 +#: ../../src/Translations/AdminTranslations.php:1015 msgid "To test the store, re-enter both test credentials." msgstr "Para testar a loja, insira novamente as duas credenciais de teste." -#: ../../src/Translations/AdminTranslations.php:1015 +#: ../../src/Translations/AdminTranslations.php:1016 msgid "Invalid credentials" msgstr "Credenciais inválidas" -#: ../../src/Translations/AdminTranslations.php:1016 +#: ../../src/Translations/AdminTranslations.php:1017 msgid "See our manual to learn" msgstr "Consulte nosso manual para saber" -#: ../../src/Translations/AdminTranslations.php:1017 +#: ../../src/Translations/AdminTranslations.php:1018 msgid "how to enter the credentials the right way." msgstr "como inserir as credenciais da maneira correta." -#: ../../src/Translations/AdminTranslations.php:1018 +#: ../../src/Translations/AdminTranslations.php:1019 msgid " for test mode" msgstr " para o modo teste" -#: ../../src/Translations/AdminTranslations.php:1030 +#: ../../src/Translations/AdminTranslations.php:1031 msgid "Store information is valid" msgstr "As informações sobre a loja são válidas" -#: ../../src/Translations/AdminTranslations.php:1043 +#: ../../src/Translations/AdminTranslations.php:1044 msgid "Attention:" msgstr "Atenção:" -#: ../../src/Translations/AdminTranslations.php:1044 +#: ../../src/Translations/AdminTranslations.php:1045 msgid "" "The currency settings you have in WooCommerce are not compatible with the " "currency you use in your Mercado Pago account. Please activate the currency " @@ -1632,19 +1642,19 @@ msgstr "" "moeda que você usa na sua conta do Mercado Pago. Por favor, ative a " "conversão de moeda." -#: ../../src/Translations/AdminTranslations.php:1047 +#: ../../src/Translations/AdminTranslations.php:1048 msgid "We are converting your currency from: " msgstr "Agora convertemos sua moeda de: " -#: ../../src/Translations/AdminTranslations.php:1063 +#: ../../src/Translations/AdminTranslations.php:1064 msgid "to " msgstr "para" -#: ../../src/Translations/AdminTranslations.php:1074 +#: ../../src/Translations/AdminTranslations.php:1075 msgid "Payment status on Mercado Pago" msgstr "Status de pagamento no Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1075 +#: ../../src/Translations/AdminTranslations.php:1076 msgid "" "This is the payment status of your Mercado Pago Activities. To check the " "order status, please refer to Order details." @@ -1652,51 +1662,51 @@ msgstr "" "Este é o status de pagamento das suas Atividades no Mercado Pago. Para " "verificar o status do pedido, consulte Detalhes do pedido." -#: ../../src/Translations/AdminTranslations.php:1076, -#: ../../src/Translations/AdminTranslations.php:1078 +#: ../../src/Translations/AdminTranslations.php:1077, +#: ../../src/Translations/AdminTranslations.php:1079 msgid "View purchase details at Mercado Pago" msgstr "Ver detalhes da compra no Mercado Pago" -#: ../../src/Translations/AdminTranslations.php:1077, -#: ../../src/Translations/AdminTranslations.php:1079, -#: ../../src/Translations/AdminTranslations.php:1081 +#: ../../src/Translations/AdminTranslations.php:1078, +#: ../../src/Translations/AdminTranslations.php:1080, +#: ../../src/Translations/AdminTranslations.php:1082 msgid "Sync order status" msgstr "Sincronizar status do pedido" -#: ../../src/Translations/AdminTranslations.php:1080 +#: ../../src/Translations/AdminTranslations.php:1081 msgid "Consult the reasons for refusal" msgstr "Consultar motivos de recusa" -#: ../../src/Translations/AdminTranslations.php:1082 +#: ../../src/Translations/AdminTranslations.php:1083 msgid "Order update successfully. This page will be reloaded..." msgstr "Pedido atualizado com sucesso. Esta página será recarregada…" -#: ../../src/Translations/AdminTranslations.php:1083 +#: ../../src/Translations/AdminTranslations.php:1084 msgid "Unable to update order:" msgstr "Não foi possível atualizar o pedido:" -#: ../../src/Translations/AdminTranslations.php:1084 +#: ../../src/Translations/AdminTranslations.php:1085 msgid "Payment made" msgstr "Pagamento realizado" -#: ../../src/Translations/AdminTranslations.php:1085 +#: ../../src/Translations/AdminTranslations.php:1086 msgid "Payment made by the buyer and already credited in the account." msgstr "Pagamento realizado pelo comprador e já creditado na conta." -#: ../../src/Translations/AdminTranslations.php:1086 +#: ../../src/Translations/AdminTranslations.php:1087 msgid "Call resolved" msgstr "Chamado resolvido" -#: ../../src/Translations/AdminTranslations.php:1087, -#: ../../src/Translations/AdminTranslations.php:1137 +#: ../../src/Translations/AdminTranslations.php:1088, +#: ../../src/Translations/AdminTranslations.php:1138 msgid "Please contact Mercado Pago for further details." msgstr "Entre em contato com o Mercado Pago para consultar mais detalhes." -#: ../../src/Translations/AdminTranslations.php:1088 +#: ../../src/Translations/AdminTranslations.php:1089 msgid "Payment refunded" msgstr "Pagamento devolvido" -#: ../../src/Translations/AdminTranslations.php:1089 +#: ../../src/Translations/AdminTranslations.php:1090 msgid "" "Your refund request has been made. Please contact Mercado Pago for further " "details." @@ -1704,59 +1714,59 @@ msgstr "" "Sua solicitação de reembolso foi feita. Entre em contato com o Mercado Pago " "para mais detalhes." -#: ../../src/Translations/AdminTranslations.php:1090, -#: ../../src/Translations/AdminTranslations.php:1092 +#: ../../src/Translations/AdminTranslations.php:1091, +#: ../../src/Translations/AdminTranslations.php:1093 msgid "Payment returned" msgstr "Pagamento devolvido" -#: ../../src/Translations/AdminTranslations.php:1091 +#: ../../src/Translations/AdminTranslations.php:1092 msgid "The payment has been returned to the client." msgstr "O pagamento já foi devolvido ao cliente." -#: ../../src/Translations/AdminTranslations.php:1093 +#: ../../src/Translations/AdminTranslations.php:1094 msgid "The payment has been partially returned to the client." msgstr "O pagamento já foi devolvido parcialmente ao cliente." -#: ../../src/Translations/AdminTranslations.php:1094 +#: ../../src/Translations/AdminTranslations.php:1095 msgid "Payment canceled" msgstr "Pagamento cancelado" -#: ../../src/Translations/AdminTranslations.php:1095 +#: ../../src/Translations/AdminTranslations.php:1096 msgid "The payment has been successfully canceled." msgstr "O pagamento foi cancelado com sucesso." -#: ../../src/Translations/AdminTranslations.php:1096 +#: ../../src/Translations/AdminTranslations.php:1097 msgid "Purchase canceled" msgstr "Compra cancelada" -#: ../../src/Translations/AdminTranslations.php:1097 +#: ../../src/Translations/AdminTranslations.php:1098 msgid "The payment has been canceled by the customer." msgstr "O pagamento foi cancelado pelo cliente." -#: ../../src/Translations/AdminTranslations.php:1098, -#: ../../src/Translations/AdminTranslations.php:1100, -#: ../../src/Translations/AdminTranslations.php:1102, -#: ../../src/Translations/AdminTranslations.php:1104, -#: ../../src/Translations/AdminTranslations.php:1106, -#: ../../src/Translations/AdminTranslations.php:1114, -#: ../../src/Translations/AdminTranslations.php:1116, -#: ../../src/Translations/AdminTranslations.php:1118, -#: ../../src/Translations/AdminTranslations.php:1120, -#: ../../src/Translations/AdminTranslations.php:1122, -#: ../../src/Translations/AdminTranslations.php:1124, -#: ../../src/Translations/AdminTranslations.php:1126, -#: ../../src/Translations/AdminTranslations.php:1181 -msgid "Pending payment" -msgstr "Pagamento pendente" - #: ../../src/Translations/AdminTranslations.php:1099, #: ../../src/Translations/AdminTranslations.php:1101, #: ../../src/Translations/AdminTranslations.php:1103, -#: ../../src/Translations/AdminTranslations.php:1105 +#: ../../src/Translations/AdminTranslations.php:1105, +#: ../../src/Translations/AdminTranslations.php:1107, +#: ../../src/Translations/AdminTranslations.php:1115, +#: ../../src/Translations/AdminTranslations.php:1117, +#: ../../src/Translations/AdminTranslations.php:1119, +#: ../../src/Translations/AdminTranslations.php:1121, +#: ../../src/Translations/AdminTranslations.php:1123, +#: ../../src/Translations/AdminTranslations.php:1125, +#: ../../src/Translations/AdminTranslations.php:1127, +#: ../../src/Translations/AdminTranslations.php:1182 +msgid "Pending payment" +msgstr "Pagamento pendente" + +#: ../../src/Translations/AdminTranslations.php:1100, +#: ../../src/Translations/AdminTranslations.php:1102, +#: ../../src/Translations/AdminTranslations.php:1104, +#: ../../src/Translations/AdminTranslations.php:1106 msgid "Awaiting payment from the buyer." msgstr "Aguardando pagamento do comprador." -#: ../../src/Translations/AdminTranslations.php:1107 +#: ../../src/Translations/AdminTranslations.php:1108 msgid "" "We are veryfing the payment. We will notify you by email in up to 6 hours if " "everything is fine so that you can deliver the product or provide the " @@ -1765,19 +1775,19 @@ msgstr "" "Estamos verificando o pagamento. Avisaremos por e-mail em até 6 horas se " "estiver tudo bem para que você possa entregar o produto ou prestar o serviço." -#: ../../src/Translations/AdminTranslations.php:1108, -#: ../../src/Translations/AdminTranslations.php:1132, -#: ../../src/Translations/AdminTranslations.php:1148, -#: ../../src/Translations/AdminTranslations.php:1167, -#: ../../src/Translations/AdminTranslations.php:1171, -#: ../../src/Translations/AdminTranslations.php:1173, -#: ../../src/Translations/AdminTranslations.php:1175, -#: ../../src/Translations/AdminTranslations.php:1179 +#: ../../src/Translations/AdminTranslations.php:1109, +#: ../../src/Translations/AdminTranslations.php:1133, +#: ../../src/Translations/AdminTranslations.php:1149, +#: ../../src/Translations/AdminTranslations.php:1168, +#: ../../src/Translations/AdminTranslations.php:1172, +#: ../../src/Translations/AdminTranslations.php:1174, +#: ../../src/Translations/AdminTranslations.php:1176, +#: ../../src/Translations/AdminTranslations.php:1180 msgid "Declined payment" msgstr "Pagamento recusado" -#: ../../src/Translations/AdminTranslations.php:1109, -#: ../../src/Translations/AdminTranslations.php:1133 +#: ../../src/Translations/AdminTranslations.php:1110, +#: ../../src/Translations/AdminTranslations.php:1134 msgid "" "The card-issuing bank declined the payment. Please ask your client to use " "another card or to get in touch with the bank." @@ -1785,11 +1795,11 @@ msgstr "" "O banco emissor do cartão recusou o pagamento. Solicite ao seu cliente que " "utilize outro cartão ou entre em contato com o banco." -#: ../../src/Translations/AdminTranslations.php:1110 +#: ../../src/Translations/AdminTranslations.php:1111 msgid "Payment authorized. Awaiting capture." msgstr "Pagamento autorizado. Aguardando captura." -#: ../../src/Translations/AdminTranslations.php:1111 +#: ../../src/Translations/AdminTranslations.php:1112 msgid "" "The payment has been authorized on the client's card. Please capture the " "payment." @@ -1797,17 +1807,17 @@ msgstr "" "O pagamento foi autorizado no cartão do cliente. Por favor, confirme o " "pagamento." -#: ../../src/Translations/AdminTranslations.php:1112 +#: ../../src/Translations/AdminTranslations.php:1113 msgid "Payment in process" msgstr "Pagamento em processamento" -#: ../../src/Translations/AdminTranslations.php:1113, -#: ../../src/Translations/AdminTranslations.php:1123 +#: ../../src/Translations/AdminTranslations.php:1114, +#: ../../src/Translations/AdminTranslations.php:1124 msgid "Please wait or contact Mercado Pago for further details" msgstr "" "Aguarde ou entre em contato com o Mercado Pago para consultar mais detalhes" -#: ../../src/Translations/AdminTranslations.php:1115 +#: ../../src/Translations/AdminTranslations.php:1116 msgid "" "The bank is reviewing the payment. As soon as we have their confirmation, we " "will notify you via email so that you can deliver the product or provide the " @@ -1817,33 +1827,33 @@ msgstr "" "iremos notificá-lo por email para que possa entregar o produto ou prestar o " "serviço." -#: ../../src/Translations/AdminTranslations.php:1117, -#: ../../src/Translations/AdminTranslations.php:1119, -#: ../../src/Translations/AdminTranslations.php:1121 +#: ../../src/Translations/AdminTranslations.php:1118, +#: ../../src/Translations/AdminTranslations.php:1120, +#: ../../src/Translations/AdminTranslations.php:1122 msgid "Awaiting payment information validation." msgstr "Aguardando validação das informações de pagamento." -#: ../../src/Translations/AdminTranslations.php:1125 +#: ../../src/Translations/AdminTranslations.php:1126 msgid "Waiting for the buyer." msgstr "Aguardando o comprador." -#: ../../src/Translations/AdminTranslations.php:1127 +#: ../../src/Translations/AdminTranslations.php:1128 msgid "Waiting for the card issuer." msgstr "Aguardando o emissor do cartão." -#: ../../src/Translations/AdminTranslations.php:1128, -#: ../../src/Translations/AdminTranslations.php:1130, -#: ../../src/Translations/AdminTranslations.php:1134, -#: ../../src/Translations/AdminTranslations.php:1155, -#: ../../src/Translations/AdminTranslations.php:1177 -msgid "The card issuing bank declined the payment" -msgstr "O banco emissor do cartão recusou o pagamento" - #: ../../src/Translations/AdminTranslations.php:1129, #: ../../src/Translations/AdminTranslations.php:1131, #: ../../src/Translations/AdminTranslations.php:1135, #: ../../src/Translations/AdminTranslations.php:1156, #: ../../src/Translations/AdminTranslations.php:1178 +msgid "The card issuing bank declined the payment" +msgstr "O banco emissor do cartão recusou o pagamento" + +#: ../../src/Translations/AdminTranslations.php:1130, +#: ../../src/Translations/AdminTranslations.php:1132, +#: ../../src/Translations/AdminTranslations.php:1136, +#: ../../src/Translations/AdminTranslations.php:1157, +#: ../../src/Translations/AdminTranslations.php:1179 msgid "" "Please recommend your customer to pay with another payment method or to " "contact their bank." @@ -1851,32 +1861,32 @@ msgstr "" "Recomende a seu cliente que que pague com outro meio de pagamento ou entre " "em contato com o banco" -#: ../../src/Translations/AdminTranslations.php:1136 +#: ../../src/Translations/AdminTranslations.php:1137 msgid "Mercado Pago did not process the payment" msgstr "O Mercado Pago não processou o pagamento" -#: ../../src/Translations/AdminTranslations.php:1138, -#: ../../src/Translations/AdminTranslations.php:1183 -msgid "Expired payment deadline" -msgstr "Prazo expirado para pagamento" - #: ../../src/Translations/AdminTranslations.php:1139, #: ../../src/Translations/AdminTranslations.php:1184 -msgid "The client did not pay within the time limit." -msgstr "O cliente não pagou dentro do limite de tempo." +msgid "Expired payment deadline" +msgstr "Prazo expirado para pagamento" #: ../../src/Translations/AdminTranslations.php:1140, -#: ../../src/Translations/AdminTranslations.php:1142, -#: ../../src/Translations/AdminTranslations.php:1144, #: ../../src/Translations/AdminTranslations.php:1185 -msgid "Your customer entered one or more incorrect card details" -msgstr "Seu cliente inseriu um ou mais dados do cartão incorretamente" +msgid "The client did not pay within the time limit." +msgstr "O cliente não pagou dentro do limite de tempo." #: ../../src/Translations/AdminTranslations.php:1141, #: ../../src/Translations/AdminTranslations.php:1143, #: ../../src/Translations/AdminTranslations.php:1145, -#: ../../src/Translations/AdminTranslations.php:1186, -#: ../../src/Translations/AdminTranslations.php:1187 +#: ../../src/Translations/AdminTranslations.php:1186 +msgid "Your customer entered one or more incorrect card details" +msgstr "Seu cliente inseriu um ou mais dados do cartão incorretamente" + +#: ../../src/Translations/AdminTranslations.php:1142, +#: ../../src/Translations/AdminTranslations.php:1144, +#: ../../src/Translations/AdminTranslations.php:1146, +#: ../../src/Translations/AdminTranslations.php:1187, +#: ../../src/Translations/AdminTranslations.php:1188 msgid "" "Please ask them to enter to enter them again exactly as they appear on the " "card or on their bank app to complete the payment." @@ -1884,17 +1894,17 @@ msgstr "" "Peça para a pessoa inserir os dados da forma como aparecem no cartão ou no " "app do banco para concluir o pagamento." -#: ../../src/Translations/AdminTranslations.php:1146, -#: ../../src/Translations/AdminTranslations.php:1169 +#: ../../src/Translations/AdminTranslations.php:1147, +#: ../../src/Translations/AdminTranslations.php:1170 msgid "We protected you from a suspicious payment" msgstr "Protegemos você de um pagamento suspeito" -#: ../../src/Translations/AdminTranslations.php:1147 +#: ../../src/Translations/AdminTranslations.php:1148 msgid "For safety reasons, this transaction cannot be completed." msgstr "Por medidas de segurança, está transação não pode ser concluída." -#: ../../src/Translations/AdminTranslations.php:1149, -#: ../../src/Translations/AdminTranslations.php:1168 +#: ../../src/Translations/AdminTranslations.php:1150, +#: ../../src/Translations/AdminTranslations.php:1169 msgid "" "The buyer is suspended in our platform. Your client must contact us to check " "what happened." @@ -1902,12 +1912,12 @@ msgstr "" "O comprador está suspenso em nossa plataforma. Seu cliente deverá entrar em " "contato conosco para verificar o ocorrido." -#: ../../src/Translations/AdminTranslations.php:1150 +#: ../../src/Translations/AdminTranslations.php:1151 msgid "For safety reasons, the card issuing bank declined the payment" msgstr "O banco emissor do cartão recusou o pagamento" -#: ../../src/Translations/AdminTranslations.php:1151, -#: ../../src/Translations/AdminTranslations.php:1170 +#: ../../src/Translations/AdminTranslations.php:1152, +#: ../../src/Translations/AdminTranslations.php:1171 msgid "" "Recommend your customer to pay with their usual payment method and device " "for online purchases." @@ -1915,29 +1925,29 @@ msgstr "" "Recomende a seu cliente que pague com o meio de pagamento e dispositivo que " "costuma usar para compras on-line." -#: ../../src/Translations/AdminTranslations.php:1152 +#: ../../src/Translations/AdminTranslations.php:1153 msgid "Your customer's credit card has no available limit" msgstr "O banco emissor do cartão recusou o pagamento" -#: ../../src/Translations/AdminTranslations.php:1153, #: ../../src/Translations/AdminTranslations.php:1154, -#: ../../src/Translations/AdminTranslations.php:1158 +#: ../../src/Translations/AdminTranslations.php:1155, +#: ../../src/Translations/AdminTranslations.php:1159 msgid "" "Please ask them to pay with another card or to choose another payment method." msgstr "" "Peça para a pessoa pagar com outro cartão ou escolher outro meio de " "pagamento." -#: ../../src/Translations/AdminTranslations.php:1157 +#: ../../src/Translations/AdminTranslations.php:1158 msgid "Your customer reached the limit of payment attempts with this card" msgstr "O cliente alcançou o limite de tentativas de pagamento com o cartão" -#: ../../src/Translations/AdminTranslations.php:1159 +#: ../../src/Translations/AdminTranslations.php:1160 msgid "" "Your customer's card does not accept the number of installments selected" msgstr "O cartão do seu cliente não aceita o parcelamento selecionado" -#: ../../src/Translations/AdminTranslations.php:1160 +#: ../../src/Translations/AdminTranslations.php:1161 msgid "" "Please ask them to choose a different number of installments or to pay with " "another method." @@ -1945,13 +1955,13 @@ msgstr "" "Peça para ele escolher uma opção de parcelamento diferente ou usar outro " "meio de pagamento." -#: ../../src/Translations/AdminTranslations.php:1161, -#: ../../src/Translations/AdminTranslations.php:1188 +#: ../../src/Translations/AdminTranslations.php:1162, +#: ../../src/Translations/AdminTranslations.php:1189 msgid "Your customer needs to authorize the payment through their bank" msgstr "Seu cliente precisa autorizar o pagamento com o banco" -#: ../../src/Translations/AdminTranslations.php:1162, -#: ../../src/Translations/AdminTranslations.php:1189 +#: ../../src/Translations/AdminTranslations.php:1163, +#: ../../src/Translations/AdminTranslations.php:1190 msgid "" "Please ask them to call the telephone number on their card or to pay with " "another method." @@ -1959,20 +1969,20 @@ msgstr "" "Peça para a pessoa acessar o app do banco ou ligar para o telefone que está " "no cartão. Se preferir, ela também pode pagar com outro meio." -#: ../../src/Translations/AdminTranslations.php:1163 +#: ../../src/Translations/AdminTranslations.php:1164 msgid "" "The payment was declined because your customer already paid for this purchase" msgstr "O pagamento foi recusado porque o cliente já pagou esta compra" -#: ../../src/Translations/AdminTranslations.php:1164 +#: ../../src/Translations/AdminTranslations.php:1165 msgid "Check your approved payments to verify it." msgstr "Consulte seus pagamentos aprovados para confirmar a transação." -#: ../../src/Translations/AdminTranslations.php:1165 +#: ../../src/Translations/AdminTranslations.php:1166 msgid "Your customer's card was is not activated yet" msgstr "O cartão do cliente ainda não foi desbloqueado" -#: ../../src/Translations/AdminTranslations.php:1166 +#: ../../src/Translations/AdminTranslations.php:1167 msgid "" "Please ask them to contact their bank by calling the number on the back of " "their card or to pay with another method." @@ -1981,7 +1991,7 @@ msgstr "" "com o banco dele ligando para o número que está no verso do cartão. Se ele " "preferir, também pode usar outro meio de pagamento." -#: ../../src/Translations/AdminTranslations.php:1172 +#: ../../src/Translations/AdminTranslations.php:1173 msgid "" "This payment was declined because it did not pass Mercado Pago security " "controls. Please ask your client to use another card." @@ -1989,7 +1999,7 @@ msgstr "" "Este pagamento foi recusado porque não passou nos controles de segurança do " "Mercado Pago. Por favor, peça ao seu cliente para usar outro cartão." -#: ../../src/Translations/AdminTranslations.php:1174 +#: ../../src/Translations/AdminTranslations.php:1175 msgid "" "The amount exceeded the card limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -1997,8 +2007,8 @@ msgstr "" "O valor ultrapassou o limite do cartão. Solicite ao seu cliente que utilize " "outro cartão ou entre em contato com o banco." -#: ../../src/Translations/AdminTranslations.php:1176, -#: ../../src/Translations/AdminTranslations.php:1180 +#: ../../src/Translations/AdminTranslations.php:1177, +#: ../../src/Translations/AdminTranslations.php:1181 msgid "" "Please ask your client to use another card or to get in touch with the card " "issuer." @@ -2006,7 +2016,7 @@ msgstr "" "Peça ao seu cliente para usar outro cartão ou entre em contato com o emissor " "do cartão." -#: ../../src/Translations/AdminTranslations.php:1182 +#: ../../src/Translations/AdminTranslations.php:1183 msgid "" "The amount exceeded the card's limit. Please ask your client to use another " "card or to get in touch with the bank." @@ -2014,11 +2024,11 @@ msgstr "" "O valor ultrapassou o limite do cartão. Solicite ao seu cliente que utilize " "outro cartão ou entre em contato com o banco." -#: ../../src/Translations/AdminTranslations.php:1190 +#: ../../src/Translations/AdminTranslations.php:1191 msgid "Your customer's debit card has insufficient funds" msgstr "O banco emissor do cartão recusou o pagamento" -#: ../../src/Translations/AdminTranslations.php:1191 +#: ../../src/Translations/AdminTranslations.php:1192 msgid "" "Please recommend your customer to pay with another card or to choose another " "payment method." @@ -2026,11 +2036,11 @@ msgstr "" "Peça para a pessoa pagar com outro cartão ou escolher outro meio de " "pagamento." -#: ../../src/Translations/AdminTranslations.php:1192 +#: ../../src/Translations/AdminTranslations.php:1193 msgid "Something went wrong and the payment was declined" msgstr "O pagamento foi recusado devido a um erro." -#: ../../src/Translations/AdminTranslations.php:1193 +#: ../../src/Translations/AdminTranslations.php:1194 msgid "" "Please recommend you customer to try again or to pay with another payment " "method." @@ -2149,7 +2159,7 @@ msgstr "Pague com ou sem cartão de crédito." #: ../../src/Translations/StoreTranslations.php:140 msgid "Interest-free installments with selected banks." -msgstr "Parcelas sem juros em bancos selecionados." +msgstr "Parcelas sem acréscimos em bancos selecionados." #: ../../src/Translations/StoreTranslations.php:141 msgid "Blue phone installments image" @@ -2422,7 +2432,7 @@ msgstr "dígitos" #: ../../src/Translations/StoreTranslations.php:252 msgid "No fee" -msgstr "Sem juros" +msgstr "Sem acréscimos" #: ../../src/Translations/StoreTranslations.php:253 msgid "More options" @@ -2430,11 +2440,11 @@ msgstr "Mais opções" #: ../../src/Translations/StoreTranslations.php:254 msgid "If interest is applicable, it will be charged by your bank." -msgstr "Se houverem juros, eles serão aplicados pelo seu banco." +msgstr "Se houverem acréscimos, eles serão aplicados pelo seu banco." #: ../../src/Translations/StoreTranslations.php:255 msgid "Interest" -msgstr "Juros" +msgstr "Acréscimos" #: ../../src/Translations/StoreTranslations.php:256 msgid "Card number is required" diff --git a/i18n/languages/woocommerce-mercadopago.pot b/i18n/languages/woocommerce-mercadopago.pot index ed3b7f2d2..a7b48f989 100644 --- a/i18n/languages/woocommerce-mercadopago.pot +++ b/i18n/languages/woocommerce-mercadopago.pot @@ -7,7 +7,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Last-Translator: Mercado Pago Developers \n" -"POT-Creation-Date: 2024-02-01 11:32+0000\n" +"POT-Creation-Date: 2024-02-07 19:47+0000\n" "Project-Id-Version: undefined\n" "X-Poedit-Basepath: ..\n" "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n" @@ -16,19 +16,19 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../src/WoocommerceMercadoPago.php:426, ../../src/Translations/AdminTranslations.php:166 +#: ../../src/WoocommerceMercadoPago.php:449, ../../src/Translations/AdminTranslations.php:166 msgid "Activate WooCommerce" msgstr "" -#: ../../src/WoocommerceMercadoPago.php:427, ../../src/Translations/AdminTranslations.php:167 +#: ../../src/WoocommerceMercadoPago.php:450, ../../src/Translations/AdminTranslations.php:167 msgid "Install WooCommerce" msgstr "" -#: ../../src/WoocommerceMercadoPago.php:428, ../../src/Translations/AdminTranslations.php:168 +#: ../../src/WoocommerceMercadoPago.php:451, ../../src/Translations/AdminTranslations.php:168 msgid "See WooCommerce" msgstr "" -#: ../../src/WoocommerceMercadoPago.php:430, ../../src/Translations/AdminTranslations.php:157 +#: ../../src/WoocommerceMercadoPago.php:453, ../../src/Translations/AdminTranslations.php:157 msgid "The Mercado Pago module needs an active version of %s in order to work!" msgstr "" @@ -76,1455 +76,1459 @@ msgstr "" msgid "Activate" msgstr "" -#: ../../src/Translations/AdminTranslations.php:188 +#: ../../src/Translations/AdminTranslations.php:177 +msgid "Unfortunately, the language configured in your WordPress is not compatible with our plugin. For the best experience, please switch to a supported language." +msgstr "" + +#: ../../src/Translations/AdminTranslations.php:189 msgid "Set plugin" msgstr "" -#: ../../src/Translations/AdminTranslations.php:189, ../../src/Translations/AdminTranslations.php:743, ../../src/Translations/AdminTranslations.php:802 +#: ../../src/Translations/AdminTranslations.php:190, ../../src/Translations/AdminTranslations.php:744, ../../src/Translations/AdminTranslations.php:803 msgid "Payment methods" msgstr "" -#: ../../src/Translations/AdminTranslations.php:190, ../../src/Translations/AdminTranslations.php:261 +#: ../../src/Translations/AdminTranslations.php:191, ../../src/Translations/AdminTranslations.php:262 msgid "Plugin manual" msgstr "" -#: ../../src/Translations/AdminTranslations.php:202 +#: ../../src/Translations/AdminTranslations.php:203 msgid "Cancel order" msgstr "" -#: ../../src/Translations/AdminTranslations.php:203 +#: ../../src/Translations/AdminTranslations.php:204 msgid "Mercado Pago commission:" msgstr "" -#: ../../src/Translations/AdminTranslations.php:204 +#: ../../src/Translations/AdminTranslations.php:205 msgid "Represents the commission configured on plugin settings." msgstr "" -#: ../../src/Translations/AdminTranslations.php:205 +#: ../../src/Translations/AdminTranslations.php:206 msgid "Mercado Pago discount:" msgstr "" -#: ../../src/Translations/AdminTranslations.php:206 +#: ../../src/Translations/AdminTranslations.php:207 msgid "Represents the discount configured on plugin settings." msgstr "" -#: ../../src/Translations/AdminTranslations.php:207 +#: ../../src/Translations/AdminTranslations.php:208 msgid "Represents the installment fee charged by Mercado Pago." msgstr "" -#: ../../src/Translations/AdminTranslations.php:208 +#: ../../src/Translations/AdminTranslations.php:209 msgid "Mercado Pago Installment Fee:" msgstr "" -#: ../../src/Translations/AdminTranslations.php:209 +#: ../../src/Translations/AdminTranslations.php:210 msgid "Represents the total purchase plus the installment fee charged by Mercado Pago." msgstr "" -#: ../../src/Translations/AdminTranslations.php:210 +#: ../../src/Translations/AdminTranslations.php:211 msgid "Mercado Pago Total:" msgstr "" -#: ../../src/Translations/AdminTranslations.php:223 +#: ../../src/Translations/AdminTranslations.php:224 msgid "Accept" msgstr "" -#: ../../src/Translations/AdminTranslations.php:224 +#: ../../src/Translations/AdminTranslations.php:225 msgid "payments on the spot" msgstr "" -#: ../../src/Translations/AdminTranslations.php:225 +#: ../../src/Translations/AdminTranslations.php:226 msgid "with" msgstr "" -#: ../../src/Translations/AdminTranslations.php:226 +#: ../../src/Translations/AdminTranslations.php:227 msgid "the" msgstr "" -#: ../../src/Translations/AdminTranslations.php:227 +#: ../../src/Translations/AdminTranslations.php:228 msgid "security" msgstr "" -#: ../../src/Translations/AdminTranslations.php:228 +#: ../../src/Translations/AdminTranslations.php:229 msgid "from Mercado Pago" msgstr "" -#: ../../src/Translations/AdminTranslations.php:233 +#: ../../src/Translations/AdminTranslations.php:234 msgid "Choose" msgstr "" -#: ../../src/Translations/AdminTranslations.php:234 +#: ../../src/Translations/AdminTranslations.php:235 msgid "when you want to receive the money" msgstr "" -#: ../../src/Translations/AdminTranslations.php:235 +#: ../../src/Translations/AdminTranslations.php:236 msgid "from your sales and if you want to offer" msgstr "" -#: ../../src/Translations/AdminTranslations.php:236 +#: ../../src/Translations/AdminTranslations.php:237 msgid "interest-free installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:237 +#: ../../src/Translations/AdminTranslations.php:238 msgid "to your clients." msgstr "" -#: ../../src/Translations/AdminTranslations.php:242 +#: ../../src/Translations/AdminTranslations.php:243 msgid "Review the step-by-step of" msgstr "" -#: ../../src/Translations/AdminTranslations.php:243 +#: ../../src/Translations/AdminTranslations.php:244 msgid "how to integrate the Mercado Pago Plugin" msgstr "" -#: ../../src/Translations/AdminTranslations.php:244 +#: ../../src/Translations/AdminTranslations.php:245 msgid "on our website for developers." msgstr "" -#: ../../src/Translations/AdminTranslations.php:248 +#: ../../src/Translations/AdminTranslations.php:249 msgid "SSL" msgstr "" -#: ../../src/Translations/AdminTranslations.php:249 +#: ../../src/Translations/AdminTranslations.php:250 msgid "Curl" msgstr "" -#: ../../src/Translations/AdminTranslations.php:250 +#: ../../src/Translations/AdminTranslations.php:251 msgid "GD Extensions" msgstr "" -#: ../../src/Translations/AdminTranslations.php:252 +#: ../../src/Translations/AdminTranslations.php:253 msgid "Technical requirements" msgstr "" -#: ../../src/Translations/AdminTranslations.php:253 +#: ../../src/Translations/AdminTranslations.php:254 msgid "Collections and installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:254 +#: ../../src/Translations/AdminTranslations.php:255 msgid "Questions?" msgstr "" -#: ../../src/Translations/AdminTranslations.php:255 +#: ../../src/Translations/AdminTranslations.php:256 msgid "Implementation responsible for transmitting data to Mercado Pago in a secure and encrypted way." msgstr "" -#: ../../src/Translations/AdminTranslations.php:256 +#: ../../src/Translations/AdminTranslations.php:257 msgid "It is an extension responsible for making payments via requests from the plugin to Mercado Pago." msgstr "" -#: ../../src/Translations/AdminTranslations.php:257 +#: ../../src/Translations/AdminTranslations.php:258 msgid "These extensions are responsible for the implementation and operation of Pix in your store." msgstr "" -#: ../../src/Translations/AdminTranslations.php:260 +#: ../../src/Translations/AdminTranslations.php:261 msgid "Set deadlines and fees" msgstr "" -#: ../../src/Translations/AdminTranslations.php:274 +#: ../../src/Translations/AdminTranslations.php:275 msgid "To enable orders, you must create and activate production credentials in your Mercado Pago Account." msgstr "" -#: ../../src/Translations/AdminTranslations.php:275 +#: ../../src/Translations/AdminTranslations.php:276 msgid "Copy and paste the credentials below." msgstr "" -#: ../../src/Translations/AdminTranslations.php:280 +#: ../../src/Translations/AdminTranslations.php:281 msgid "You must enter" msgstr "" -#: ../../src/Translations/AdminTranslations.php:281 +#: ../../src/Translations/AdminTranslations.php:282 msgid "production credentials" msgstr "" -#: ../../src/Translations/AdminTranslations.php:285 +#: ../../src/Translations/AdminTranslations.php:286 msgid "Public Key" msgstr "" -#: ../../src/Translations/AdminTranslations.php:286 +#: ../../src/Translations/AdminTranslations.php:287 msgid "Access Token" msgstr "" -#: ../../src/Translations/AdminTranslations.php:287 +#: ../../src/Translations/AdminTranslations.php:288 msgid "1. Integrate your store with Mercado Pago" msgstr "" -#: ../../src/Translations/AdminTranslations.php:288 +#: ../../src/Translations/AdminTranslations.php:289 msgid "Production credentials" msgstr "" -#: ../../src/Translations/AdminTranslations.php:289 +#: ../../src/Translations/AdminTranslations.php:290 msgid "Test credentials" msgstr "" -#: ../../src/Translations/AdminTranslations.php:291 +#: ../../src/Translations/AdminTranslations.php:292 msgid "Enable Mercado Pago checkouts for test purchases in the store." msgstr "" -#: ../../src/Translations/AdminTranslations.php:292 +#: ../../src/Translations/AdminTranslations.php:293 msgid "Enable Mercado Pago checkouts to receive real payments in the store." msgstr "" -#: ../../src/Translations/AdminTranslations.php:293 +#: ../../src/Translations/AdminTranslations.php:294 msgid "Paste your Public Key here" msgstr "" -#: ../../src/Translations/AdminTranslations.php:294 +#: ../../src/Translations/AdminTranslations.php:295 msgid "Paste your Access Token here" msgstr "" -#: ../../src/Translations/AdminTranslations.php:295 +#: ../../src/Translations/AdminTranslations.php:296 msgid "Check credentials" msgstr "" -#: ../../src/Translations/AdminTranslations.php:296, ../../src/Translations/AdminTranslations.php:350 +#: ../../src/Translations/AdminTranslations.php:297, ../../src/Translations/AdminTranslations.php:351 msgid "Save and continue" msgstr "" -#: ../../src/Translations/AdminTranslations.php:297 +#: ../../src/Translations/AdminTranslations.php:298 msgid "Important! To sell you must enter your credentials." msgstr "" -#: ../../src/Translations/AdminTranslations.php:299 +#: ../../src/Translations/AdminTranslations.php:300 msgid "Enter credentials" msgstr "" -#: ../../src/Translations/AdminTranslations.php:300 +#: ../../src/Translations/AdminTranslations.php:301 msgid "Activate your credentials to be able to sell" msgstr "" -#: ../../src/Translations/AdminTranslations.php:301 +#: ../../src/Translations/AdminTranslations.php:302 msgid "Credentials are codes that you must enter to enable sales. Go below on Activate Credentials. On the next screen, use again the Activate Credentials button and fill in the fields with the requested information." msgstr "" -#: ../../src/Translations/AdminTranslations.php:302 +#: ../../src/Translations/AdminTranslations.php:303 msgid "Activate credentials" msgstr "" -#: ../../src/Translations/AdminTranslations.php:315 +#: ../../src/Translations/AdminTranslations.php:316 msgid "Add the URL to receive payments notifications." msgstr "" -#: ../../src/Translations/AdminTranslations.php:316 +#: ../../src/Translations/AdminTranslations.php:317 msgid "Find out more information in the" msgstr "" -#: ../../src/Translations/AdminTranslations.php:318 +#: ../../src/Translations/AdminTranslations.php:319 msgid "guides" msgstr "" -#: ../../src/Translations/AdminTranslations.php:323 +#: ../../src/Translations/AdminTranslations.php:324 msgid "If you are a Mercado Pago Certified Partner, make sure to add your integrator_id." msgstr "" -#: ../../src/Translations/AdminTranslations.php:324 +#: ../../src/Translations/AdminTranslations.php:325 msgid "If you do not have the code, please" msgstr "" -#: ../../src/Translations/AdminTranslations.php:326 +#: ../../src/Translations/AdminTranslations.php:327 msgid "request it now" msgstr "" -#: ../../src/Translations/AdminTranslations.php:330 +#: ../../src/Translations/AdminTranslations.php:331 msgid "2. Customize your business" msgstr "" -#: ../../src/Translations/AdminTranslations.php:331 +#: ../../src/Translations/AdminTranslations.php:332 msgid "Your store information" msgstr "" -#: ../../src/Translations/AdminTranslations.php:332 +#: ../../src/Translations/AdminTranslations.php:333 msgid "Advanced integration options (optional)" msgstr "" -#: ../../src/Translations/AdminTranslations.php:333 +#: ../../src/Translations/AdminTranslations.php:334 msgid "Debug and Log Mode" msgstr "" -#: ../../src/Translations/AdminTranslations.php:334 +#: ../../src/Translations/AdminTranslations.php:335 msgid "Fill out the following information to have a better experience and offer more information to your clients." msgstr "" -#: ../../src/Translations/AdminTranslations.php:335 +#: ../../src/Translations/AdminTranslations.php:336 msgid "Name of your store in your client's invoice" msgstr "" -#: ../../src/Translations/AdminTranslations.php:336 +#: ../../src/Translations/AdminTranslations.php:337 msgid "Identification in Activities of Mercado Pago" msgstr "" -#: ../../src/Translations/AdminTranslations.php:337 +#: ../../src/Translations/AdminTranslations.php:338 msgid "For further integration of your store with Mercado Pago (IPN, Certified Partners, Debug Mode)" msgstr "" -#: ../../src/Translations/AdminTranslations.php:338 +#: ../../src/Translations/AdminTranslations.php:339 msgid "Store category" msgstr "" -#: ../../src/Translations/AdminTranslations.php:339 +#: ../../src/Translations/AdminTranslations.php:340 msgid "URL for IPN" msgstr "" -#: ../../src/Translations/AdminTranslations.php:340 +#: ../../src/Translations/AdminTranslations.php:341 msgid "Integrator ID" msgstr "" -#: ../../src/Translations/AdminTranslations.php:341 +#: ../../src/Translations/AdminTranslations.php:342 msgid "We record your store's actions in order to provide a better assistance." msgstr "" -#: ../../src/Translations/AdminTranslations.php:342 +#: ../../src/Translations/AdminTranslations.php:343 msgid "Ex: Mary's Store" msgstr "" -#: ../../src/Translations/AdminTranslations.php:343 +#: ../../src/Translations/AdminTranslations.php:344 msgid "Ex: Mary Store" msgstr "" -#: ../../src/Translations/AdminTranslations.php:344 +#: ../../src/Translations/AdminTranslations.php:345 msgid "Select" msgstr "" -#: ../../src/Translations/AdminTranslations.php:345 +#: ../../src/Translations/AdminTranslations.php:346 msgid "Ex: https://examples.com/my-custom-ipn-url" msgstr "" -#: ../../src/Translations/AdminTranslations.php:346 +#: ../../src/Translations/AdminTranslations.php:347 msgid "Add plugin default params" msgstr "" -#: ../../src/Translations/AdminTranslations.php:347 +#: ../../src/Translations/AdminTranslations.php:348 msgid "Ex: 14987126498" msgstr "" -#: ../../src/Translations/AdminTranslations.php:348 +#: ../../src/Translations/AdminTranslations.php:349 msgid "Show advanced options" msgstr "" -#: ../../src/Translations/AdminTranslations.php:349 +#: ../../src/Translations/AdminTranslations.php:350 msgid "Hide advanced options" msgstr "" -#: ../../src/Translations/AdminTranslations.php:351 +#: ../../src/Translations/AdminTranslations.php:352 msgid "If this field is empty, the purchase will be identified as Mercado Pago." msgstr "" -#: ../../src/Translations/AdminTranslations.php:352 +#: ../../src/Translations/AdminTranslations.php:353 msgid "In Activities, you will view this term before the order number" msgstr "" -#: ../../src/Translations/AdminTranslations.php:353 +#: ../../src/Translations/AdminTranslations.php:354 msgid "Select \"Other categories\" if you do not find the appropriate category." msgstr "" -#: ../../src/Translations/AdminTranslations.php:354 +#: ../../src/Translations/AdminTranslations.php:355 msgid "request it now." msgstr "" -#: ../../src/Translations/AdminTranslations.php:368 +#: ../../src/Translations/AdminTranslations.php:369 msgid "3. Set payment methods" msgstr "" -#: ../../src/Translations/AdminTranslations.php:369 +#: ../../src/Translations/AdminTranslations.php:370 msgid "To view more options, please select a payment method below" msgstr "" -#: ../../src/Translations/AdminTranslations.php:370 +#: ../../src/Translations/AdminTranslations.php:371 msgid "Settings" msgstr "" -#: ../../src/Translations/AdminTranslations.php:371 +#: ../../src/Translations/AdminTranslations.php:372 msgid "Continue" msgstr "" -#: ../../src/Translations/AdminTranslations.php:372 +#: ../../src/Translations/AdminTranslations.php:373 msgid "Enabled" msgstr "" -#: ../../src/Translations/AdminTranslations.php:373 +#: ../../src/Translations/AdminTranslations.php:374 msgid "Disabled" msgstr "" -#: ../../src/Translations/AdminTranslations.php:374 +#: ../../src/Translations/AdminTranslations.php:375 msgid "Configure your credentials to enable Mercado Pago payment methods." msgstr "" -#: ../../src/Translations/AdminTranslations.php:387, ../../src/Translations/AdminTranslations.php:393 +#: ../../src/Translations/AdminTranslations.php:388, ../../src/Translations/AdminTranslations.php:394 msgid "The checkout is" msgstr "" -#: ../../src/Translations/AdminTranslations.php:388, ../../src/Translations/AdminTranslations.php:400, ../../src/Translations/AdminTranslations.php:515, ../../src/Translations/AdminTranslations.php:527, ../../src/Translations/AdminTranslations.php:539, ../../src/Translations/AdminTranslations.php:605, ../../src/Translations/AdminTranslations.php:617, ../../src/Translations/AdminTranslations.php:629, ../../src/Translations/AdminTranslations.php:705, ../../src/Translations/AdminTranslations.php:766, ../../src/Translations/AdminTranslations.php:825, ../../src/Translations/AdminTranslations.php:837 +#: ../../src/Translations/AdminTranslations.php:389, ../../src/Translations/AdminTranslations.php:401, ../../src/Translations/AdminTranslations.php:516, ../../src/Translations/AdminTranslations.php:528, ../../src/Translations/AdminTranslations.php:540, ../../src/Translations/AdminTranslations.php:606, ../../src/Translations/AdminTranslations.php:618, ../../src/Translations/AdminTranslations.php:630, ../../src/Translations/AdminTranslations.php:706, ../../src/Translations/AdminTranslations.php:767, ../../src/Translations/AdminTranslations.php:826, ../../src/Translations/AdminTranslations.php:838 msgid "enabled" msgstr "" -#: ../../src/Translations/AdminTranslations.php:394, ../../src/Translations/AdminTranslations.php:406, ../../src/Translations/AdminTranslations.php:521, ../../src/Translations/AdminTranslations.php:533, ../../src/Translations/AdminTranslations.php:545, ../../src/Translations/AdminTranslations.php:611, ../../src/Translations/AdminTranslations.php:623, ../../src/Translations/AdminTranslations.php:635, ../../src/Translations/AdminTranslations.php:711, ../../src/Translations/AdminTranslations.php:772, ../../src/Translations/AdminTranslations.php:831, ../../src/Translations/AdminTranslations.php:843 +#: ../../src/Translations/AdminTranslations.php:395, ../../src/Translations/AdminTranslations.php:407, ../../src/Translations/AdminTranslations.php:522, ../../src/Translations/AdminTranslations.php:534, ../../src/Translations/AdminTranslations.php:546, ../../src/Translations/AdminTranslations.php:612, ../../src/Translations/AdminTranslations.php:624, ../../src/Translations/AdminTranslations.php:636, ../../src/Translations/AdminTranslations.php:712, ../../src/Translations/AdminTranslations.php:773, ../../src/Translations/AdminTranslations.php:832, ../../src/Translations/AdminTranslations.php:844 msgid "disabled" msgstr "" -#: ../../src/Translations/AdminTranslations.php:399, ../../src/Translations/AdminTranslations.php:405, ../../src/Translations/AdminTranslations.php:526, ../../src/Translations/AdminTranslations.php:532, ../../src/Translations/AdminTranslations.php:616, ../../src/Translations/AdminTranslations.php:622, ../../src/Translations/AdminTranslations.php:704, ../../src/Translations/AdminTranslations.php:710, ../../src/Translations/AdminTranslations.php:765, ../../src/Translations/AdminTranslations.php:771, ../../src/Translations/AdminTranslations.php:836, ../../src/Translations/AdminTranslations.php:842 +#: ../../src/Translations/AdminTranslations.php:400, ../../src/Translations/AdminTranslations.php:406, ../../src/Translations/AdminTranslations.php:527, ../../src/Translations/AdminTranslations.php:533, ../../src/Translations/AdminTranslations.php:617, ../../src/Translations/AdminTranslations.php:623, ../../src/Translations/AdminTranslations.php:705, ../../src/Translations/AdminTranslations.php:711, ../../src/Translations/AdminTranslations.php:766, ../../src/Translations/AdminTranslations.php:772, ../../src/Translations/AdminTranslations.php:837, ../../src/Translations/AdminTranslations.php:843 msgid "Currency conversion is" msgstr "" -#: ../../src/Translations/AdminTranslations.php:411, ../../src/Translations/AdminTranslations.php:417 +#: ../../src/Translations/AdminTranslations.php:412, ../../src/Translations/AdminTranslations.php:418 msgid "The buyer" msgstr "" -#: ../../src/Translations/AdminTranslations.php:412 +#: ../../src/Translations/AdminTranslations.php:413 msgid "will be automatically redirected to the store" msgstr "" -#: ../../src/Translations/AdminTranslations.php:418 +#: ../../src/Translations/AdminTranslations.php:419 msgid "will not be automatically redirected to the store" msgstr "" -#: ../../src/Translations/AdminTranslations.php:424, ../../src/Translations/AdminTranslations.php:430, ../../src/Translations/AdminTranslations.php:640, ../../src/Translations/AdminTranslations.php:646 +#: ../../src/Translations/AdminTranslations.php:425, ../../src/Translations/AdminTranslations.php:431, ../../src/Translations/AdminTranslations.php:641, ../../src/Translations/AdminTranslations.php:647 msgid "Pending payments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:425, ../../src/Translations/AdminTranslations.php:641 +#: ../../src/Translations/AdminTranslations.php:426, ../../src/Translations/AdminTranslations.php:642 msgid "will be automatically declined" msgstr "" -#: ../../src/Translations/AdminTranslations.php:431, ../../src/Translations/AdminTranslations.php:647 +#: ../../src/Translations/AdminTranslations.php:432, ../../src/Translations/AdminTranslations.php:648 msgid "will not be automatically declined" msgstr "" -#: ../../src/Translations/AdminTranslations.php:435, ../../src/Translations/AdminTranslations.php:450 +#: ../../src/Translations/AdminTranslations.php:436, ../../src/Translations/AdminTranslations.php:451 msgid "Your saved cards or money in Mercado Pago" msgstr "" -#: ../../src/Translations/AdminTranslations.php:436, ../../src/Translations/AdminTranslations.php:438 +#: ../../src/Translations/AdminTranslations.php:437, ../../src/Translations/AdminTranslations.php:439 msgid "Debit, Credit and invoice in Mercado Pago environment" msgstr "" -#: ../../src/Translations/AdminTranslations.php:437 +#: ../../src/Translations/AdminTranslations.php:438 msgid "Mercado Pago - Checkout Pro" msgstr "" -#: ../../src/Translations/AdminTranslations.php:439 +#: ../../src/Translations/AdminTranslations.php:440 msgid "Checkout Pro" msgstr "" -#: ../../src/Translations/AdminTranslations.php:440 +#: ../../src/Translations/AdminTranslations.php:441 msgid "With Checkout Pro you sell with all the safety inside Mercado Pago environment." msgstr "" -#: ../../src/Translations/AdminTranslations.php:441, ../../src/Translations/AdminTranslations.php:555, ../../src/Translations/AdminTranslations.php:720, ../../src/Translations/AdminTranslations.php:781, ../../src/Translations/AdminTranslations.php:861 +#: ../../src/Translations/AdminTranslations.php:442, ../../src/Translations/AdminTranslations.php:556, ../../src/Translations/AdminTranslations.php:721, ../../src/Translations/AdminTranslations.php:782, ../../src/Translations/AdminTranslations.php:862 msgid "Mercado Pago plugin general settings" msgstr "" -#: ../../src/Translations/AdminTranslations.php:442, ../../src/Translations/AdminTranslations.php:556, ../../src/Translations/AdminTranslations.php:658, ../../src/Translations/AdminTranslations.php:721, ../../src/Translations/AdminTranslations.php:782, ../../src/Translations/AdminTranslations.php:862 +#: ../../src/Translations/AdminTranslations.php:443, ../../src/Translations/AdminTranslations.php:557, ../../src/Translations/AdminTranslations.php:659, ../../src/Translations/AdminTranslations.php:722, ../../src/Translations/AdminTranslations.php:783, ../../src/Translations/AdminTranslations.php:863 msgid "Set the deadlines and fees, test your store or access the Plugin manual." msgstr "" -#: ../../src/Translations/AdminTranslations.php:443, ../../src/Translations/AdminTranslations.php:557, ../../src/Translations/AdminTranslations.php:659, ../../src/Translations/AdminTranslations.php:722, ../../src/Translations/AdminTranslations.php:783, ../../src/Translations/AdminTranslations.php:863 +#: ../../src/Translations/AdminTranslations.php:444, ../../src/Translations/AdminTranslations.php:558, ../../src/Translations/AdminTranslations.php:660, ../../src/Translations/AdminTranslations.php:723, ../../src/Translations/AdminTranslations.php:784, ../../src/Translations/AdminTranslations.php:864 msgid "Go to Settings" msgstr "" -#: ../../src/Translations/AdminTranslations.php:444, ../../src/Translations/AdminTranslations.php:660, ../../src/Translations/AdminTranslations.php:864 +#: ../../src/Translations/AdminTranslations.php:445, ../../src/Translations/AdminTranslations.php:661, ../../src/Translations/AdminTranslations.php:865 msgid "Enable the checkout" msgstr "" -#: ../../src/Translations/AdminTranslations.php:445 +#: ../../src/Translations/AdminTranslations.php:446 msgid "By disabling it, you will disable all payments from Mercado Pago Checkout at Mercado Pago website by redirect." msgstr "" -#: ../../src/Translations/AdminTranslations.php:448, ../../src/Translations/AdminTranslations.php:566, ../../src/Translations/AdminTranslations.php:664, ../../src/Translations/AdminTranslations.php:727, ../../src/Translations/AdminTranslations.php:788, ../../src/Translations/AdminTranslations.php:868 +#: ../../src/Translations/AdminTranslations.php:449, ../../src/Translations/AdminTranslations.php:567, ../../src/Translations/AdminTranslations.php:665, ../../src/Translations/AdminTranslations.php:728, ../../src/Translations/AdminTranslations.php:789, ../../src/Translations/AdminTranslations.php:869 msgid "Title in the store Checkout" msgstr "" -#: ../../src/Translations/AdminTranslations.php:449, ../../src/Translations/AdminTranslations.php:665, ../../src/Translations/AdminTranslations.php:728, ../../src/Translations/AdminTranslations.php:789, ../../src/Translations/AdminTranslations.php:869 +#: ../../src/Translations/AdminTranslations.php:450, ../../src/Translations/AdminTranslations.php:666, ../../src/Translations/AdminTranslations.php:729, ../../src/Translations/AdminTranslations.php:790, ../../src/Translations/AdminTranslations.php:870 msgid "Change the display text in Checkout, maximum characters: 85" msgstr "" -#: ../../src/Translations/AdminTranslations.php:451, ../../src/Translations/AdminTranslations.php:569, ../../src/Translations/AdminTranslations.php:667, ../../src/Translations/AdminTranslations.php:730, ../../src/Translations/AdminTranslations.php:791, ../../src/Translations/AdminTranslations.php:871 +#: ../../src/Translations/AdminTranslations.php:452, ../../src/Translations/AdminTranslations.php:570, ../../src/Translations/AdminTranslations.php:668, ../../src/Translations/AdminTranslations.php:731, ../../src/Translations/AdminTranslations.php:792, ../../src/Translations/AdminTranslations.php:872 msgid "The text inserted here will not be translated to other languages" msgstr "" -#: ../../src/Translations/AdminTranslations.php:452, ../../src/Translations/AdminTranslations.php:570, ../../src/Translations/AdminTranslations.php:671, ../../src/Translations/AdminTranslations.php:731, ../../src/Translations/AdminTranslations.php:792, ../../src/Translations/AdminTranslations.php:885 +#: ../../src/Translations/AdminTranslations.php:453, ../../src/Translations/AdminTranslations.php:571, ../../src/Translations/AdminTranslations.php:672, ../../src/Translations/AdminTranslations.php:732, ../../src/Translations/AdminTranslations.php:793, ../../src/Translations/AdminTranslations.php:886 msgid "Convert Currency" msgstr "" -#: ../../src/Translations/AdminTranslations.php:453, ../../src/Translations/AdminTranslations.php:571, ../../src/Translations/AdminTranslations.php:672, ../../src/Translations/AdminTranslations.php:732, ../../src/Translations/AdminTranslations.php:793, ../../src/Translations/AdminTranslations.php:886 +#: ../../src/Translations/AdminTranslations.php:454, ../../src/Translations/AdminTranslations.php:572, ../../src/Translations/AdminTranslations.php:673, ../../src/Translations/AdminTranslations.php:733, ../../src/Translations/AdminTranslations.php:794, ../../src/Translations/AdminTranslations.php:887 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 "" -#: ../../src/Translations/AdminTranslations.php:456 +#: ../../src/Translations/AdminTranslations.php:457 msgid "Choose the payment methods you accept in your store" msgstr "" -#: ../../src/Translations/AdminTranslations.php:457 +#: ../../src/Translations/AdminTranslations.php:458 msgid "Enable the payment methods available to your clients." msgstr "" -#: ../../src/Translations/AdminTranslations.php:458 +#: ../../src/Translations/AdminTranslations.php:459 msgid "Credit Cards" msgstr "" -#: ../../src/Translations/AdminTranslations.php:459 +#: ../../src/Translations/AdminTranslations.php:460 msgid "Debit Cards" msgstr "" -#: ../../src/Translations/AdminTranslations.php:460 +#: ../../src/Translations/AdminTranslations.php:461 msgid "Other Payment Methods" msgstr "" -#: ../../src/Translations/AdminTranslations.php:461 +#: ../../src/Translations/AdminTranslations.php:462 msgid "Maximum number of installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:462 +#: ../../src/Translations/AdminTranslations.php:463 msgid "What is the maximum quota with which a customer can buy?" msgstr "" -#: ../../src/Translations/AdminTranslations.php:463 +#: ../../src/Translations/AdminTranslations.php:464 msgid "1 installment" msgstr "" -#: ../../src/Translations/AdminTranslations.php:464 +#: ../../src/Translations/AdminTranslations.php:465 msgid "2 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:465 +#: ../../src/Translations/AdminTranslations.php:466 msgid "3 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:466 +#: ../../src/Translations/AdminTranslations.php:467 msgid "4 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:467 +#: ../../src/Translations/AdminTranslations.php:468 msgid "5 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:468 +#: ../../src/Translations/AdminTranslations.php:469 msgid "6 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:469 +#: ../../src/Translations/AdminTranslations.php:470 msgid "10 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:470 +#: ../../src/Translations/AdminTranslations.php:471 msgid "12 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:471 +#: ../../src/Translations/AdminTranslations.php:472 msgid "15 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:472 +#: ../../src/Translations/AdminTranslations.php:473 msgid "18 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:473 +#: ../../src/Translations/AdminTranslations.php:474 msgid "24 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:474, ../../src/Translations/AdminTranslations.php:584 +#: ../../src/Translations/AdminTranslations.php:475, ../../src/Translations/AdminTranslations.php:585 msgid "Advanced settings" msgstr "" -#: ../../src/Translations/AdminTranslations.php:475, ../../src/Translations/AdminTranslations.php:585, ../../src/Translations/AdminTranslations.php:681, ../../src/Translations/AdminTranslations.php:738, ../../src/Translations/AdminTranslations.php:797, ../../src/Translations/AdminTranslations.php:893 +#: ../../src/Translations/AdminTranslations.php:476, ../../src/Translations/AdminTranslations.php:586, ../../src/Translations/AdminTranslations.php:682, ../../src/Translations/AdminTranslations.php:739, ../../src/Translations/AdminTranslations.php:798, ../../src/Translations/AdminTranslations.php:894 msgid "Edit these advanced fields only when you want to modify the preset values." msgstr "" -#: ../../src/Translations/AdminTranslations.php:476 +#: ../../src/Translations/AdminTranslations.php:477 msgid "Payment experience" msgstr "" -#: ../../src/Translations/AdminTranslations.php:477 +#: ../../src/Translations/AdminTranslations.php:478 msgid "Define what payment experience your customers will have, whether inside or outside your store." msgstr "" -#: ../../src/Translations/AdminTranslations.php:478 +#: ../../src/Translations/AdminTranslations.php:479 msgid "Redirect" msgstr "" -#: ../../src/Translations/AdminTranslations.php:479 +#: ../../src/Translations/AdminTranslations.php:480 msgid "Modal" msgstr "" -#: ../../src/Translations/AdminTranslations.php:480 +#: ../../src/Translations/AdminTranslations.php:481 msgid "Return to the store" msgstr "" -#: ../../src/Translations/AdminTranslations.php:481 +#: ../../src/Translations/AdminTranslations.php:482 msgid "Do you want your customer to automatically return to the store after payment?" msgstr "" -#: ../../src/Translations/AdminTranslations.php:484 +#: ../../src/Translations/AdminTranslations.php:485 msgid "Success URL" msgstr "" -#: ../../src/Translations/AdminTranslations.php:485 +#: ../../src/Translations/AdminTranslations.php:486 msgid "Choose the URL that we will show your customers when they finish their purchase." msgstr "" -#: ../../src/Translations/AdminTranslations.php:486 +#: ../../src/Translations/AdminTranslations.php:487 msgid "Payment URL rejected" msgstr "" -#: ../../src/Translations/AdminTranslations.php:487 +#: ../../src/Translations/AdminTranslations.php:488 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 "" -#: ../../src/Translations/AdminTranslations.php:488 +#: ../../src/Translations/AdminTranslations.php:489 msgid "Payment URL pending" msgstr "" -#: ../../src/Translations/AdminTranslations.php:489 +#: ../../src/Translations/AdminTranslations.php:490 msgid "Choose the URL that we will show to your customers when they have a payment pending approval." msgstr "" -#: ../../src/Translations/AdminTranslations.php:490, ../../src/Translations/AdminTranslations.php:682 +#: ../../src/Translations/AdminTranslations.php:491, ../../src/Translations/AdminTranslations.php:683 msgid "Automatic decline of payments without instant approval" msgstr "" -#: ../../src/Translations/AdminTranslations.php:491, ../../src/Translations/AdminTranslations.php:683 +#: ../../src/Translations/AdminTranslations.php:492, ../../src/Translations/AdminTranslations.php:684 msgid "Enable it if you want to automatically decline payments that are not instantly approved by banks or other institutions." msgstr "" -#: ../../src/Translations/AdminTranslations.php:492 +#: ../../src/Translations/AdminTranslations.php:493 msgid "Debit, Credit and Invoice in Mercado Pago environment." msgstr "" -#: ../../src/Translations/AdminTranslations.php:495, ../../src/Translations/AdminTranslations.php:586, ../../src/Translations/AdminTranslations.php:686, ../../src/Translations/AdminTranslations.php:747, ../../src/Translations/AdminTranslations.php:806, ../../src/Translations/AdminTranslations.php:894 +#: ../../src/Translations/AdminTranslations.php:496, ../../src/Translations/AdminTranslations.php:587, ../../src/Translations/AdminTranslations.php:687, ../../src/Translations/AdminTranslations.php:748, ../../src/Translations/AdminTranslations.php:807, ../../src/Translations/AdminTranslations.php:895 msgid "Discount in Mercado Pago Checkouts" msgstr "" -#: ../../src/Translations/AdminTranslations.php:496, ../../src/Translations/AdminTranslations.php:587, ../../src/Translations/AdminTranslations.php:687, ../../src/Translations/AdminTranslations.php:748, ../../src/Translations/AdminTranslations.php:807, ../../src/Translations/AdminTranslations.php:895 +#: ../../src/Translations/AdminTranslations.php:497, ../../src/Translations/AdminTranslations.php:588, ../../src/Translations/AdminTranslations.php:688, ../../src/Translations/AdminTranslations.php:749, ../../src/Translations/AdminTranslations.php:808, ../../src/Translations/AdminTranslations.php:896 msgid "Choose a percentage value that you want to discount your customers for paying with Mercado Pago." msgstr "" -#: ../../src/Translations/AdminTranslations.php:497, ../../src/Translations/AdminTranslations.php:500, ../../src/Translations/AdminTranslations.php:588, ../../src/Translations/AdminTranslations.php:591, ../../src/Translations/AdminTranslations.php:688, ../../src/Translations/AdminTranslations.php:691, ../../src/Translations/AdminTranslations.php:749, ../../src/Translations/AdminTranslations.php:752, ../../src/Translations/AdminTranslations.php:808, ../../src/Translations/AdminTranslations.php:811, ../../src/Translations/AdminTranslations.php:896, ../../src/Translations/AdminTranslations.php:899 +#: ../../src/Translations/AdminTranslations.php:498, ../../src/Translations/AdminTranslations.php:501, ../../src/Translations/AdminTranslations.php:589, ../../src/Translations/AdminTranslations.php:592, ../../src/Translations/AdminTranslations.php:689, ../../src/Translations/AdminTranslations.php:692, ../../src/Translations/AdminTranslations.php:750, ../../src/Translations/AdminTranslations.php:753, ../../src/Translations/AdminTranslations.php:809, ../../src/Translations/AdminTranslations.php:812, ../../src/Translations/AdminTranslations.php:897, ../../src/Translations/AdminTranslations.php:900 msgid "Activate and show this information on Mercado Pago Checkout" msgstr "" -#: ../../src/Translations/AdminTranslations.php:498, ../../src/Translations/AdminTranslations.php:589, ../../src/Translations/AdminTranslations.php:689, ../../src/Translations/AdminTranslations.php:750, ../../src/Translations/AdminTranslations.php:809, ../../src/Translations/AdminTranslations.php:897 +#: ../../src/Translations/AdminTranslations.php:499, ../../src/Translations/AdminTranslations.php:590, ../../src/Translations/AdminTranslations.php:690, ../../src/Translations/AdminTranslations.php:751, ../../src/Translations/AdminTranslations.php:810, ../../src/Translations/AdminTranslations.php:898 msgid "Commission in Mercado Pago Checkouts" msgstr "" -#: ../../src/Translations/AdminTranslations.php:499, ../../src/Translations/AdminTranslations.php:590, ../../src/Translations/AdminTranslations.php:690, ../../src/Translations/AdminTranslations.php:751, ../../src/Translations/AdminTranslations.php:810, ../../src/Translations/AdminTranslations.php:898 +#: ../../src/Translations/AdminTranslations.php:500, ../../src/Translations/AdminTranslations.php:591, ../../src/Translations/AdminTranslations.php:691, ../../src/Translations/AdminTranslations.php:752, ../../src/Translations/AdminTranslations.php:811, ../../src/Translations/AdminTranslations.php:899 msgid "Choose an additional percentage value that you want to charge as commission to your customers for paying with Mercado Pago." msgstr "" -#: ../../src/Translations/AdminTranslations.php:501 +#: ../../src/Translations/AdminTranslations.php:502 msgid "This seems to be an invalid URL" msgstr "" -#: ../../src/Translations/AdminTranslations.php:514, ../../src/Translations/AdminTranslations.php:520 +#: ../../src/Translations/AdminTranslations.php:515, ../../src/Translations/AdminTranslations.php:521 msgid "Payment in installments without card in the store checkout is" msgstr "" -#: ../../src/Translations/AdminTranslations.php:538, ../../src/Translations/AdminTranslations.php:544 +#: ../../src/Translations/AdminTranslations.php:539, ../../src/Translations/AdminTranslations.php:545 msgid "The installments without card component is" msgstr "" -#: ../../src/Translations/AdminTranslations.php:549, ../../src/Translations/AdminTranslations.php:553 +#: ../../src/Translations/AdminTranslations.php:550, ../../src/Translations/AdminTranslations.php:554 msgid "Installments without card" msgstr "" -#: ../../src/Translations/AdminTranslations.php:550, ../../src/Translations/AdminTranslations.php:552 +#: ../../src/Translations/AdminTranslations.php:551, ../../src/Translations/AdminTranslations.php:553 msgid "Customers who buy on spot and pay later in up to 12 installments" msgstr "" -#: ../../src/Translations/AdminTranslations.php:551 +#: ../../src/Translations/AdminTranslations.php:552 msgid "Mercado Pago - Installments without card" msgstr "" -#: ../../src/Translations/AdminTranslations.php:554 +#: ../../src/Translations/AdminTranslations.php:555 msgid "Reach millions of buyers by offering Mercado Credito as a payment method. Our flexible payment options give your customers the possibility to buy today whatever they want in up to 12 installments without the need to use a credit card. For your business, the approval of the purchase is immediate and guaranteed." msgstr "" -#: ../../src/Translations/AdminTranslations.php:558 +#: ../../src/Translations/AdminTranslations.php:559 msgid "Activate installments without card in your store checkout" msgstr "" -#: ../../src/Translations/AdminTranslations.php:559 +#: ../../src/Translations/AdminTranslations.php:560 msgid "Offer the option to pay in installments without card directly from your store's checkout." msgstr "" -#: ../../src/Translations/AdminTranslations.php:562 +#: ../../src/Translations/AdminTranslations.php:563 msgid "Checkout visualization" msgstr "" -#: ../../src/Translations/AdminTranslations.php:563, ../../src/Translations/AdminTranslations.php:583 +#: ../../src/Translations/AdminTranslations.php:564, ../../src/Translations/AdminTranslations.php:584 msgid "Check below how this feature will be displayed to your customers:" msgstr "" -#: ../../src/Translations/AdminTranslations.php:564 +#: ../../src/Translations/AdminTranslations.php:565 msgid "Checkout Preview" msgstr "" -#: ../../src/Translations/AdminTranslations.php:565 +#: ../../src/Translations/AdminTranslations.php:566 msgid "PREVIEW" msgstr "" -#: ../../src/Translations/AdminTranslations.php:567 +#: ../../src/Translations/AdminTranslations.php:568 msgid "It is possible to edit the title. Maximum of 85 characters." msgstr "" -#: ../../src/Translations/AdminTranslations.php:568 +#: ../../src/Translations/AdminTranslations.php:569 msgid "Checkout without card" msgstr "" -#: ../../src/Translations/AdminTranslations.php:574 +#: ../../src/Translations/AdminTranslations.php:575 msgid "Inform your customers about the option of paying in installments without card" msgstr "" -#: ../../src/Translations/AdminTranslations.php:575 +#: ../../src/Translations/AdminTranslations.php:576 msgid "By activating the installments without card component, you increase your chances of selling." msgstr "" -#: ../../src/Translations/AdminTranslations.php:578 +#: ../../src/Translations/AdminTranslations.php:579 msgid "Banner on the product page | Computer version" msgstr "" -#: ../../src/Translations/AdminTranslations.php:579 +#: ../../src/Translations/AdminTranslations.php:580 msgid "Banner on the product page | Cellphone version" msgstr "" -#: ../../src/Translations/AdminTranslations.php:580 +#: ../../src/Translations/AdminTranslations.php:581 msgid "Computer" msgstr "" -#: ../../src/Translations/AdminTranslations.php:581 +#: ../../src/Translations/AdminTranslations.php:582 msgid "Mobile" msgstr "" -#: ../../src/Translations/AdminTranslations.php:582 +#: ../../src/Translations/AdminTranslations.php:583 msgid "Component visualization" msgstr "" -#: ../../src/Translations/AdminTranslations.php:604, ../../src/Translations/AdminTranslations.php:610 +#: ../../src/Translations/AdminTranslations.php:605, ../../src/Translations/AdminTranslations.php:611 msgid "Transparent Checkout for credit cards is" msgstr "" -#: ../../src/Translations/AdminTranslations.php:628, ../../src/Translations/AdminTranslations.php:634 +#: ../../src/Translations/AdminTranslations.php:629, ../../src/Translations/AdminTranslations.php:635 msgid "Payments via Mercado Pago accounts are" msgstr "" -#: ../../src/Translations/AdminTranslations.php:651, ../../src/Translations/AdminTranslations.php:666 +#: ../../src/Translations/AdminTranslations.php:652, ../../src/Translations/AdminTranslations.php:667 msgid "Debit and Credit" msgstr "" -#: ../../src/Translations/AdminTranslations.php:652, ../../src/Translations/AdminTranslations.php:654, ../../src/Translations/AdminTranslations.php:716, ../../src/Translations/AdminTranslations.php:777, ../../src/Translations/AdminTranslations.php:856, ../../src/Translations/AdminTranslations.php:858 +#: ../../src/Translations/AdminTranslations.php:653, ../../src/Translations/AdminTranslations.php:655, ../../src/Translations/AdminTranslations.php:717, ../../src/Translations/AdminTranslations.php:778, ../../src/Translations/AdminTranslations.php:857, ../../src/Translations/AdminTranslations.php:859 msgid "Transparent Checkout in your store environment" msgstr "" -#: ../../src/Translations/AdminTranslations.php:653, ../../src/Translations/AdminTranslations.php:717, ../../src/Translations/AdminTranslations.php:778, ../../src/Translations/AdminTranslations.php:857 +#: ../../src/Translations/AdminTranslations.php:654, ../../src/Translations/AdminTranslations.php:718, ../../src/Translations/AdminTranslations.php:779, ../../src/Translations/AdminTranslations.php:858 msgid "Mercado pago - Customized Checkout" msgstr "" -#: ../../src/Translations/AdminTranslations.php:655 +#: ../../src/Translations/AdminTranslations.php:656 msgid "Transparent Checkout | Credit card" msgstr "" -#: ../../src/Translations/AdminTranslations.php:656 +#: ../../src/Translations/AdminTranslations.php:657 msgid "With the Transparent Checkout, you can sell inside your store environment, without redirection and with the security from Mercado Pago." msgstr "" -#: ../../src/Translations/AdminTranslations.php:657 +#: ../../src/Translations/AdminTranslations.php:658 msgid "Mercado Pago Plugin general settings" msgstr "" -#: ../../src/Translations/AdminTranslations.php:661 +#: ../../src/Translations/AdminTranslations.php:662 msgid "By disabling it, you will disable all credit cards payments from Mercado Pago Transparent Checkout." msgstr "" -#: ../../src/Translations/AdminTranslations.php:668 +#: ../../src/Translations/AdminTranslations.php:669 msgid "Installments Fees" msgstr "" -#: ../../src/Translations/AdminTranslations.php:669 +#: ../../src/Translations/AdminTranslations.php:670 msgid "Set installment fees and whether they will be charged from the store or from the buyer." msgstr "" -#: ../../src/Translations/AdminTranslations.php:670 +#: ../../src/Translations/AdminTranslations.php:671 msgid "Set fees" msgstr "" -#: ../../src/Translations/AdminTranslations.php:675 +#: ../../src/Translations/AdminTranslations.php:676 msgid "Payments via Mercado Pago account" msgstr "" -#: ../../src/Translations/AdminTranslations.php:676 +#: ../../src/Translations/AdminTranslations.php:677 msgid "Your customers pay faster with saved cards, money balance or other available methods in their Mercado Pago accounts." msgstr "" -#: ../../src/Translations/AdminTranslations.php:679 +#: ../../src/Translations/AdminTranslations.php:680 msgid "Check an example of how it will appear in your store:" msgstr "" -#: ../../src/Translations/AdminTranslations.php:680 +#: ../../src/Translations/AdminTranslations.php:681 msgid "Advanced configuration of the personalized payment experience" msgstr "" -#: ../../src/Translations/AdminTranslations.php:715, ../../src/Translations/AdminTranslations.php:729 +#: ../../src/Translations/AdminTranslations.php:716, ../../src/Translations/AdminTranslations.php:730 msgid "Invoice" msgstr "" -#: ../../src/Translations/AdminTranslations.php:718 +#: ../../src/Translations/AdminTranslations.php:719 msgid "Transparent Checkout | Invoice or Loterica" msgstr "" -#: ../../src/Translations/AdminTranslations.php:719, ../../src/Translations/AdminTranslations.php:780, ../../src/Translations/AdminTranslations.php:860 +#: ../../src/Translations/AdminTranslations.php:720, ../../src/Translations/AdminTranslations.php:781, ../../src/Translations/AdminTranslations.php:861 msgid "With the Transparent Checkout, you can sell inside your store environment, without redirection and all the safety from Mercado Pago." msgstr "" -#: ../../src/Translations/AdminTranslations.php:723, ../../src/Translations/AdminTranslations.php:784 +#: ../../src/Translations/AdminTranslations.php:724, ../../src/Translations/AdminTranslations.php:785 msgid "Enable the Checkout" msgstr "" -#: ../../src/Translations/AdminTranslations.php:724 +#: ../../src/Translations/AdminTranslations.php:725 msgid "By disabling it, you will disable all invoice payments from Mercado Pago Transparent Checkout." msgstr "" -#: ../../src/Translations/AdminTranslations.php:725 +#: ../../src/Translations/AdminTranslations.php:726 msgid "The transparent checkout for tickets is enabled." msgstr "" -#: ../../src/Translations/AdminTranslations.php:726 +#: ../../src/Translations/AdminTranslations.php:727 msgid "The transparent checkout for tickets is disabled." msgstr "" -#: ../../src/Translations/AdminTranslations.php:735 +#: ../../src/Translations/AdminTranslations.php:736 msgid "Payment Due" msgstr "" -#: ../../src/Translations/AdminTranslations.php:736 +#: ../../src/Translations/AdminTranslations.php:737 msgid "In how many days will cash payments expire." msgstr "" -#: ../../src/Translations/AdminTranslations.php:737 +#: ../../src/Translations/AdminTranslations.php:738 msgid "Advanced configuration of the cash payment experience" msgstr "" -#: ../../src/Translations/AdminTranslations.php:739, ../../src/Translations/AdminTranslations.php:798 +#: ../../src/Translations/AdminTranslations.php:740, ../../src/Translations/AdminTranslations.php:799 msgid "Reduce inventory" msgstr "" -#: ../../src/Translations/AdminTranslations.php:740, ../../src/Translations/AdminTranslations.php:799 +#: ../../src/Translations/AdminTranslations.php:741, ../../src/Translations/AdminTranslations.php:800 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 "" -#: ../../src/Translations/AdminTranslations.php:741, ../../src/Translations/AdminTranslations.php:800 +#: ../../src/Translations/AdminTranslations.php:742, ../../src/Translations/AdminTranslations.php:801 msgid "Reduce inventory is enabled." msgstr "" -#: ../../src/Translations/AdminTranslations.php:742, ../../src/Translations/AdminTranslations.php:801 +#: ../../src/Translations/AdminTranslations.php:743, ../../src/Translations/AdminTranslations.php:802 msgid "Reduce inventory is disabled." msgstr "" -#: ../../src/Translations/AdminTranslations.php:744, ../../src/Translations/AdminTranslations.php:803 +#: ../../src/Translations/AdminTranslations.php:745, ../../src/Translations/AdminTranslations.php:804 msgid "Enable the available payment methods" msgstr "" -#: ../../src/Translations/AdminTranslations.php:745, ../../src/Translations/AdminTranslations.php:804 +#: ../../src/Translations/AdminTranslations.php:746, ../../src/Translations/AdminTranslations.php:805 msgid "Choose the available payment methods in your store." msgstr "" -#: ../../src/Translations/AdminTranslations.php:746, ../../src/Translations/AdminTranslations.php:805 +#: ../../src/Translations/AdminTranslations.php:747, ../../src/Translations/AdminTranslations.php:806 msgid "All payment methods" msgstr "" -#: ../../src/Translations/AdminTranslations.php:776, ../../src/Translations/AdminTranslations.php:790 +#: ../../src/Translations/AdminTranslations.php:777, ../../src/Translations/AdminTranslations.php:791 msgid "PSE" msgstr "" -#: ../../src/Translations/AdminTranslations.php:779 +#: ../../src/Translations/AdminTranslations.php:780 msgid "Transparent Checkout PSE" msgstr "" -#: ../../src/Translations/AdminTranslations.php:785 +#: ../../src/Translations/AdminTranslations.php:786 msgid "By deactivating it, you will disable PSE payments from Mercado Pago Transparent Checkout." msgstr "" -#: ../../src/Translations/AdminTranslations.php:786 +#: ../../src/Translations/AdminTranslations.php:787 msgid "The transparent checkout for PSE is enabled." msgstr "" -#: ../../src/Translations/AdminTranslations.php:787 +#: ../../src/Translations/AdminTranslations.php:788 msgid "The transparent checkout for PSE is disabled." msgstr "" -#: ../../src/Translations/AdminTranslations.php:796 +#: ../../src/Translations/AdminTranslations.php:797 msgid "Advanced configuration of the PSE payment experience" msgstr "" -#: ../../src/Translations/AdminTranslations.php:824, ../../src/Translations/AdminTranslations.php:830 +#: ../../src/Translations/AdminTranslations.php:825, ../../src/Translations/AdminTranslations.php:831 msgid "The transparent checkout for Pix payment is" msgstr "" -#: ../../src/Translations/AdminTranslations.php:848 +#: ../../src/Translations/AdminTranslations.php:849 msgid "Go to the" msgstr "" -#: ../../src/Translations/AdminTranslations.php:849 +#: ../../src/Translations/AdminTranslations.php:850 msgid "Your Profile" msgstr "" -#: ../../src/Translations/AdminTranslations.php:850 +#: ../../src/Translations/AdminTranslations.php:851 msgid "area and choose the" msgstr "" -#: ../../src/Translations/AdminTranslations.php:851 +#: ../../src/Translations/AdminTranslations.php:852 msgid "Your Pix Keys section" msgstr "" -#: ../../src/Translations/AdminTranslations.php:855, ../../src/Translations/AdminTranslations.php:870 +#: ../../src/Translations/AdminTranslations.php:856, ../../src/Translations/AdminTranslations.php:871 msgid "Pix" msgstr "" -#: ../../src/Translations/AdminTranslations.php:859 +#: ../../src/Translations/AdminTranslations.php:860 msgid "Transparent Checkout | Pix" msgstr "" -#: ../../src/Translations/AdminTranslations.php:865 +#: ../../src/Translations/AdminTranslations.php:866 msgid "By disabling it, you will disable all Pix payments from Mercado Pago Transparent Checkout." msgstr "" -#: ../../src/Translations/AdminTranslations.php:872 +#: ../../src/Translations/AdminTranslations.php:873 msgid "Expiration for payments via Pix" msgstr "" -#: ../../src/Translations/AdminTranslations.php:873 +#: ../../src/Translations/AdminTranslations.php:874 msgid "Set the limit in minutes for your clients to pay via Pix." msgstr "" -#: ../../src/Translations/AdminTranslations.php:874 +#: ../../src/Translations/AdminTranslations.php:875 msgid "15 minutes" msgstr "" -#: ../../src/Translations/AdminTranslations.php:875 +#: ../../src/Translations/AdminTranslations.php:876 msgid "30 minutes (recommended)" msgstr "" -#: ../../src/Translations/AdminTranslations.php:876 +#: ../../src/Translations/AdminTranslations.php:877 msgid "60 minutes" msgstr "" -#: ../../src/Translations/AdminTranslations.php:877 +#: ../../src/Translations/AdminTranslations.php:878 msgid "12 hours" msgstr "" -#: ../../src/Translations/AdminTranslations.php:878 +#: ../../src/Translations/AdminTranslations.php:879 msgid "24 hours" msgstr "" -#: ../../src/Translations/AdminTranslations.php:879 +#: ../../src/Translations/AdminTranslations.php:880 msgid "2 days" msgstr "" -#: ../../src/Translations/AdminTranslations.php:880 +#: ../../src/Translations/AdminTranslations.php:881 msgid "3 days" msgstr "" -#: ../../src/Translations/AdminTranslations.php:881 +#: ../../src/Translations/AdminTranslations.php:882 msgid "4 days" msgstr "" -#: ../../src/Translations/AdminTranslations.php:882 +#: ../../src/Translations/AdminTranslations.php:883 msgid "5 days" msgstr "" -#: ../../src/Translations/AdminTranslations.php:883 +#: ../../src/Translations/AdminTranslations.php:884 msgid "6 days" msgstr "" -#: ../../src/Translations/AdminTranslations.php:884 +#: ../../src/Translations/AdminTranslations.php:885 msgid "7 days" msgstr "" -#: ../../src/Translations/AdminTranslations.php:889 +#: ../../src/Translations/AdminTranslations.php:890 msgid "Would you like to know how Pix works?" msgstr "" -#: ../../src/Translations/AdminTranslations.php:890 +#: ../../src/Translations/AdminTranslations.php:891 msgid "We have a dedicated page where we explain how it works and its advantages." msgstr "" -#: ../../src/Translations/AdminTranslations.php:891 +#: ../../src/Translations/AdminTranslations.php:892 msgid "Find out more about Pix" msgstr "" -#: ../../src/Translations/AdminTranslations.php:892 +#: ../../src/Translations/AdminTranslations.php:893 msgid "Advanced configuration of the Pix experience" msgstr "" -#: ../../src/Translations/AdminTranslations.php:900 +#: ../../src/Translations/AdminTranslations.php:901 msgid "To activate Pix, you must have a key registered in Mercado Pago." msgstr "" -#: ../../src/Translations/AdminTranslations.php:901 +#: ../../src/Translations/AdminTranslations.php:902 msgid "Download the Mercado Pago app on your cell phone." msgstr "" -#: ../../src/Translations/AdminTranslations.php:903 +#: ../../src/Translations/AdminTranslations.php:904 msgid "Choose which data to register as Pix keys. After registering, you can set up Pix in your checkout." msgstr "" -#: ../../src/Translations/AdminTranslations.php:904 +#: ../../src/Translations/AdminTranslations.php:905 msgid "Remember that, for the time being, the Central Bank of Brazil is open Monday through Friday, from 9am to 6pm." msgstr "" -#: ../../src/Translations/AdminTranslations.php:905 +#: ../../src/Translations/AdminTranslations.php:906 msgid "If you requested your registration outside these hours, we will confirm it within the next business day." msgstr "" -#: ../../src/Translations/AdminTranslations.php:906 +#: ../../src/Translations/AdminTranslations.php:907 msgid "Learn more about Pix" msgstr "" -#: ../../src/Translations/AdminTranslations.php:907 +#: ../../src/Translations/AdminTranslations.php:908 msgid "If you have already registered a Pix key at Mercado Pago and cannot activate Pix in the checkout, " msgstr "" -#: ../../src/Translations/AdminTranslations.php:908 +#: ../../src/Translations/AdminTranslations.php:909 msgid "click here." msgstr "" -#: ../../src/Translations/AdminTranslations.php:921 +#: ../../src/Translations/AdminTranslations.php:922 msgid "To enable test mode" msgstr "" -#: ../../src/Translations/AdminTranslations.php:923 +#: ../../src/Translations/AdminTranslations.php:924 msgid "copy your test credentials" msgstr "" -#: ../../src/Translations/AdminTranslations.php:924 +#: ../../src/Translations/AdminTranslations.php:925 msgid "and paste them above in section 1 of this page" msgstr "" -#: ../../src/Translations/AdminTranslations.php:929 +#: ../../src/Translations/AdminTranslations.php:930 msgid "Create your" msgstr "" -#: ../../src/Translations/AdminTranslations.php:931 +#: ../../src/Translations/AdminTranslations.php:932 msgid "test user" msgstr "" -#: ../../src/Translations/AdminTranslations.php:932 +#: ../../src/Translations/AdminTranslations.php:933 msgid "(Optional. Can be used in Production Mode and Test Mode, to test payments)" msgstr "" -#: ../../src/Translations/AdminTranslations.php:938 +#: ../../src/Translations/AdminTranslations.php:939 msgid "Use our test cards" msgstr "" -#: ../../src/Translations/AdminTranslations.php:939 +#: ../../src/Translations/AdminTranslations.php:940 msgid "never use real cards" msgstr "" -#: ../../src/Translations/AdminTranslations.php:945 +#: ../../src/Translations/AdminTranslations.php:946 msgid "Visit your store" msgstr "" -#: ../../src/Translations/AdminTranslations.php:946 +#: ../../src/Translations/AdminTranslations.php:947 msgid "to test purchases" msgstr "" -#: ../../src/Translations/AdminTranslations.php:950 +#: ../../src/Translations/AdminTranslations.php:951 msgid "4. Test your store before you sell" msgstr "" -#: ../../src/Translations/AdminTranslations.php:951 +#: ../../src/Translations/AdminTranslations.php:952 msgid "Choose how you want to operate your store:" msgstr "" -#: ../../src/Translations/AdminTranslations.php:952 +#: ../../src/Translations/AdminTranslations.php:953 msgid "Test Mode" msgstr "" -#: ../../src/Translations/AdminTranslations.php:953 +#: ../../src/Translations/AdminTranslations.php:954 msgid "Sale Mode (Production)" msgstr "" -#: ../../src/Translations/AdminTranslations.php:954 +#: ../../src/Translations/AdminTranslations.php:955 msgid "Mercado Pago payment methods in Production Mode" msgstr "" -#: ../../src/Translations/AdminTranslations.php:955 +#: ../../src/Translations/AdminTranslations.php:956 msgid "Mercado Pago payment methods in Test Mode" msgstr "" -#: ../../src/Translations/AdminTranslations.php:956 +#: ../../src/Translations/AdminTranslations.php:957 msgid "Enter test credentials" msgstr "" -#: ../../src/Translations/AdminTranslations.php:957 +#: ../../src/Translations/AdminTranslations.php:958 msgid "Test the experience in Test Mode and then enable the Sale Mode (Production) to sell." msgstr "" -#: ../../src/Translations/AdminTranslations.php:958 +#: ../../src/Translations/AdminTranslations.php:959 msgid "Mercado Pago Checkouts disabled for real collections." msgstr "" -#: ../../src/Translations/AdminTranslations.php:959 +#: ../../src/Translations/AdminTranslations.php:960 msgid "Test Mode rules." msgstr "" -#: ../../src/Translations/AdminTranslations.php:960 +#: ../../src/Translations/AdminTranslations.php:961 msgid "Mercado Pago Checkouts enabled for real collections." msgstr "" -#: ../../src/Translations/AdminTranslations.php:961 +#: ../../src/Translations/AdminTranslations.php:962 msgid "The clients can make real purchases in your store." msgstr "" -#: ../../src/Translations/AdminTranslations.php:966 +#: ../../src/Translations/AdminTranslations.php:967 msgid "Store in sale mode (Production)" msgstr "" -#: ../../src/Translations/AdminTranslations.php:967 +#: ../../src/Translations/AdminTranslations.php:968 msgid "Store under test" msgstr "" -#: ../../src/Translations/AdminTranslations.php:968 +#: ../../src/Translations/AdminTranslations.php:969 msgid "Save changes" msgstr "" -#: ../../src/Translations/AdminTranslations.php:980 +#: ../../src/Translations/AdminTranslations.php:981 msgid "Store business fields are valid" msgstr "" -#: ../../src/Translations/AdminTranslations.php:981 +#: ../../src/Translations/AdminTranslations.php:982 msgid "Store business fields could not be validated" msgstr "" -#: ../../src/Translations/AdminTranslations.php:982 +#: ../../src/Translations/AdminTranslations.php:983 msgid "At least one payment method is enabled" msgstr "" -#: ../../src/Translations/AdminTranslations.php:983 +#: ../../src/Translations/AdminTranslations.php:984 msgid "No payment method enabled" msgstr "" -#: ../../src/Translations/AdminTranslations.php:984 +#: ../../src/Translations/AdminTranslations.php:985 msgid "Credentials fields are valid" msgstr "" -#: ../../src/Translations/AdminTranslations.php:985 +#: ../../src/Translations/AdminTranslations.php:986 msgid "Credentials fields could not be validated" msgstr "" -#: ../../src/Translations/AdminTranslations.php:997 +#: ../../src/Translations/AdminTranslations.php:998 msgid "Valid Public Key" msgstr "" -#: ../../src/Translations/AdminTranslations.php:998 +#: ../../src/Translations/AdminTranslations.php:999 msgid "Invalid Public Key" msgstr "" -#: ../../src/Translations/AdminTranslations.php:999 +#: ../../src/Translations/AdminTranslations.php:1000 msgid "Valid Access Token" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1000 +#: ../../src/Translations/AdminTranslations.php:1001 msgid "Invalid Access Token" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1012 +#: ../../src/Translations/AdminTranslations.php:1013 msgid "Credentials were updated" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1013 +#: ../../src/Translations/AdminTranslations.php:1014 msgid "Your store has exited Test Mode and is making real sales in Production Mode." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1014 +#: ../../src/Translations/AdminTranslations.php:1015 msgid "To test the store, re-enter both test credentials." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1015 +#: ../../src/Translations/AdminTranslations.php:1016 msgid "Invalid credentials" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1016 +#: ../../src/Translations/AdminTranslations.php:1017 msgid "See our manual to learn" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1017 +#: ../../src/Translations/AdminTranslations.php:1018 msgid "how to enter the credentials the right way." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1018 +#: ../../src/Translations/AdminTranslations.php:1019 msgid " for test mode" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1030 +#: ../../src/Translations/AdminTranslations.php:1031 msgid "Store information is valid" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1043 +#: ../../src/Translations/AdminTranslations.php:1044 msgid "Attention:" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1044 +#: ../../src/Translations/AdminTranslations.php:1045 msgid "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 "" -#: ../../src/Translations/AdminTranslations.php:1047 +#: ../../src/Translations/AdminTranslations.php:1048 msgid "We are converting your currency from: " msgstr "" -#: ../../src/Translations/AdminTranslations.php:1063 +#: ../../src/Translations/AdminTranslations.php:1064 msgid "to " msgstr "" -#: ../../src/Translations/AdminTranslations.php:1074 +#: ../../src/Translations/AdminTranslations.php:1075 msgid "Payment status on Mercado Pago" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1075 +#: ../../src/Translations/AdminTranslations.php:1076 msgid "This is the payment status of your Mercado Pago Activities. To check the order status, please refer to Order details." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1076, ../../src/Translations/AdminTranslations.php:1078 +#: ../../src/Translations/AdminTranslations.php:1077, ../../src/Translations/AdminTranslations.php:1079 msgid "View purchase details at Mercado Pago" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1077, ../../src/Translations/AdminTranslations.php:1079, ../../src/Translations/AdminTranslations.php:1081 +#: ../../src/Translations/AdminTranslations.php:1078, ../../src/Translations/AdminTranslations.php:1080, ../../src/Translations/AdminTranslations.php:1082 msgid "Sync order status" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1080 +#: ../../src/Translations/AdminTranslations.php:1081 msgid "Consult the reasons for refusal" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1082 +#: ../../src/Translations/AdminTranslations.php:1083 msgid "Order update successfully. This page will be reloaded..." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1083 +#: ../../src/Translations/AdminTranslations.php:1084 msgid "Unable to update order:" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1084 +#: ../../src/Translations/AdminTranslations.php:1085 msgid "Payment made" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1085 +#: ../../src/Translations/AdminTranslations.php:1086 msgid "Payment made by the buyer and already credited in the account." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1086 +#: ../../src/Translations/AdminTranslations.php:1087 msgid "Call resolved" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1087, ../../src/Translations/AdminTranslations.php:1137 +#: ../../src/Translations/AdminTranslations.php:1088, ../../src/Translations/AdminTranslations.php:1138 msgid "Please contact Mercado Pago for further details." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1088 +#: ../../src/Translations/AdminTranslations.php:1089 msgid "Payment refunded" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1089 +#: ../../src/Translations/AdminTranslations.php:1090 msgid "Your refund request has been made. Please contact Mercado Pago for further details." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1090, ../../src/Translations/AdminTranslations.php:1092 +#: ../../src/Translations/AdminTranslations.php:1091, ../../src/Translations/AdminTranslations.php:1093 msgid "Payment returned" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1091 +#: ../../src/Translations/AdminTranslations.php:1092 msgid "The payment has been returned to the client." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1093 +#: ../../src/Translations/AdminTranslations.php:1094 msgid "The payment has been partially returned to the client." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1094 +#: ../../src/Translations/AdminTranslations.php:1095 msgid "Payment canceled" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1095 +#: ../../src/Translations/AdminTranslations.php:1096 msgid "The payment has been successfully canceled." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1096 +#: ../../src/Translations/AdminTranslations.php:1097 msgid "Purchase canceled" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1097 +#: ../../src/Translations/AdminTranslations.php:1098 msgid "The payment has been canceled by the customer." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1098, ../../src/Translations/AdminTranslations.php:1100, ../../src/Translations/AdminTranslations.php:1102, ../../src/Translations/AdminTranslations.php:1104, ../../src/Translations/AdminTranslations.php:1106, ../../src/Translations/AdminTranslations.php:1114, ../../src/Translations/AdminTranslations.php:1116, ../../src/Translations/AdminTranslations.php:1118, ../../src/Translations/AdminTranslations.php:1120, ../../src/Translations/AdminTranslations.php:1122, ../../src/Translations/AdminTranslations.php:1124, ../../src/Translations/AdminTranslations.php:1126, ../../src/Translations/AdminTranslations.php:1181 +#: ../../src/Translations/AdminTranslations.php:1099, ../../src/Translations/AdminTranslations.php:1101, ../../src/Translations/AdminTranslations.php:1103, ../../src/Translations/AdminTranslations.php:1105, ../../src/Translations/AdminTranslations.php:1107, ../../src/Translations/AdminTranslations.php:1115, ../../src/Translations/AdminTranslations.php:1117, ../../src/Translations/AdminTranslations.php:1119, ../../src/Translations/AdminTranslations.php:1121, ../../src/Translations/AdminTranslations.php:1123, ../../src/Translations/AdminTranslations.php:1125, ../../src/Translations/AdminTranslations.php:1127, ../../src/Translations/AdminTranslations.php:1182 msgid "Pending payment" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1099, ../../src/Translations/AdminTranslations.php:1101, ../../src/Translations/AdminTranslations.php:1103, ../../src/Translations/AdminTranslations.php:1105 +#: ../../src/Translations/AdminTranslations.php:1100, ../../src/Translations/AdminTranslations.php:1102, ../../src/Translations/AdminTranslations.php:1104, ../../src/Translations/AdminTranslations.php:1106 msgid "Awaiting payment from the buyer." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1107 +#: ../../src/Translations/AdminTranslations.php:1108 msgid "We are veryfing the payment. We will notify you by email in up to 6 hours if everything is fine so that you can deliver the product or provide the service." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1108, ../../src/Translations/AdminTranslations.php:1132, ../../src/Translations/AdminTranslations.php:1148, ../../src/Translations/AdminTranslations.php:1167, ../../src/Translations/AdminTranslations.php:1171, ../../src/Translations/AdminTranslations.php:1173, ../../src/Translations/AdminTranslations.php:1175, ../../src/Translations/AdminTranslations.php:1179 +#: ../../src/Translations/AdminTranslations.php:1109, ../../src/Translations/AdminTranslations.php:1133, ../../src/Translations/AdminTranslations.php:1149, ../../src/Translations/AdminTranslations.php:1168, ../../src/Translations/AdminTranslations.php:1172, ../../src/Translations/AdminTranslations.php:1174, ../../src/Translations/AdminTranslations.php:1176, ../../src/Translations/AdminTranslations.php:1180 msgid "Declined payment" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1109, ../../src/Translations/AdminTranslations.php:1133 +#: ../../src/Translations/AdminTranslations.php:1110, ../../src/Translations/AdminTranslations.php:1134 msgid "The card-issuing bank declined the payment. Please ask your client to use another card or to get in touch with the bank." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1110 +#: ../../src/Translations/AdminTranslations.php:1111 msgid "Payment authorized. Awaiting capture." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1111 +#: ../../src/Translations/AdminTranslations.php:1112 msgid "The payment has been authorized on the client's card. Please capture the payment." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1112 +#: ../../src/Translations/AdminTranslations.php:1113 msgid "Payment in process" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1113, ../../src/Translations/AdminTranslations.php:1123 +#: ../../src/Translations/AdminTranslations.php:1114, ../../src/Translations/AdminTranslations.php:1124 msgid "Please wait or contact Mercado Pago for further details" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1115 +#: ../../src/Translations/AdminTranslations.php:1116 msgid "The bank is reviewing the payment. As soon as we have their confirmation, we will notify you via email so that you can deliver the product or provide the service." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1117, ../../src/Translations/AdminTranslations.php:1119, ../../src/Translations/AdminTranslations.php:1121 +#: ../../src/Translations/AdminTranslations.php:1118, ../../src/Translations/AdminTranslations.php:1120, ../../src/Translations/AdminTranslations.php:1122 msgid "Awaiting payment information validation." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1125 +#: ../../src/Translations/AdminTranslations.php:1126 msgid "Waiting for the buyer." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1127 +#: ../../src/Translations/AdminTranslations.php:1128 msgid "Waiting for the card issuer." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1128, ../../src/Translations/AdminTranslations.php:1130, ../../src/Translations/AdminTranslations.php:1134, ../../src/Translations/AdminTranslations.php:1155, ../../src/Translations/AdminTranslations.php:1177 +#: ../../src/Translations/AdminTranslations.php:1129, ../../src/Translations/AdminTranslations.php:1131, ../../src/Translations/AdminTranslations.php:1135, ../../src/Translations/AdminTranslations.php:1156, ../../src/Translations/AdminTranslations.php:1178 msgid "The card issuing bank declined the payment" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1129, ../../src/Translations/AdminTranslations.php:1131, ../../src/Translations/AdminTranslations.php:1135, ../../src/Translations/AdminTranslations.php:1156, ../../src/Translations/AdminTranslations.php:1178 +#: ../../src/Translations/AdminTranslations.php:1130, ../../src/Translations/AdminTranslations.php:1132, ../../src/Translations/AdminTranslations.php:1136, ../../src/Translations/AdminTranslations.php:1157, ../../src/Translations/AdminTranslations.php:1179 msgid "Please recommend your customer to pay with another payment method or to contact their bank." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1136 +#: ../../src/Translations/AdminTranslations.php:1137 msgid "Mercado Pago did not process the payment" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1138, ../../src/Translations/AdminTranslations.php:1183 +#: ../../src/Translations/AdminTranslations.php:1139, ../../src/Translations/AdminTranslations.php:1184 msgid "Expired payment deadline" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1139, ../../src/Translations/AdminTranslations.php:1184 +#: ../../src/Translations/AdminTranslations.php:1140, ../../src/Translations/AdminTranslations.php:1185 msgid "The client did not pay within the time limit." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1140, ../../src/Translations/AdminTranslations.php:1142, ../../src/Translations/AdminTranslations.php:1144, ../../src/Translations/AdminTranslations.php:1185 +#: ../../src/Translations/AdminTranslations.php:1141, ../../src/Translations/AdminTranslations.php:1143, ../../src/Translations/AdminTranslations.php:1145, ../../src/Translations/AdminTranslations.php:1186 msgid "Your customer entered one or more incorrect card details" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1141, ../../src/Translations/AdminTranslations.php:1143, ../../src/Translations/AdminTranslations.php:1145, ../../src/Translations/AdminTranslations.php:1186, ../../src/Translations/AdminTranslations.php:1187 +#: ../../src/Translations/AdminTranslations.php:1142, ../../src/Translations/AdminTranslations.php:1144, ../../src/Translations/AdminTranslations.php:1146, ../../src/Translations/AdminTranslations.php:1187, ../../src/Translations/AdminTranslations.php:1188 msgid "Please ask them to enter to enter them again exactly as they appear on the card or on their bank app to complete the payment." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1146, ../../src/Translations/AdminTranslations.php:1169 +#: ../../src/Translations/AdminTranslations.php:1147, ../../src/Translations/AdminTranslations.php:1170 msgid "We protected you from a suspicious payment" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1147 +#: ../../src/Translations/AdminTranslations.php:1148 msgid "For safety reasons, this transaction cannot be completed." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1149, ../../src/Translations/AdminTranslations.php:1168 +#: ../../src/Translations/AdminTranslations.php:1150, ../../src/Translations/AdminTranslations.php:1169 msgid "The buyer is suspended in our platform. Your client must contact us to check what happened." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1150 +#: ../../src/Translations/AdminTranslations.php:1151 msgid "For safety reasons, the card issuing bank declined the payment" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1151, ../../src/Translations/AdminTranslations.php:1170 +#: ../../src/Translations/AdminTranslations.php:1152, ../../src/Translations/AdminTranslations.php:1171 msgid "Recommend your customer to pay with their usual payment method and device for online purchases." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1152 +#: ../../src/Translations/AdminTranslations.php:1153 msgid "Your customer's credit card has no available limit" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1153, ../../src/Translations/AdminTranslations.php:1154, ../../src/Translations/AdminTranslations.php:1158 +#: ../../src/Translations/AdminTranslations.php:1154, ../../src/Translations/AdminTranslations.php:1155, ../../src/Translations/AdminTranslations.php:1159 msgid "Please ask them to pay with another card or to choose another payment method." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1157 +#: ../../src/Translations/AdminTranslations.php:1158 msgid "Your customer reached the limit of payment attempts with this card" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1159 +#: ../../src/Translations/AdminTranslations.php:1160 msgid "Your customer's card does not accept the number of installments selected" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1160 +#: ../../src/Translations/AdminTranslations.php:1161 msgid "Please ask them to choose a different number of installments or to pay with another method." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1161, ../../src/Translations/AdminTranslations.php:1188 +#: ../../src/Translations/AdminTranslations.php:1162, ../../src/Translations/AdminTranslations.php:1189 msgid "Your customer needs to authorize the payment through their bank" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1162, ../../src/Translations/AdminTranslations.php:1189 +#: ../../src/Translations/AdminTranslations.php:1163, ../../src/Translations/AdminTranslations.php:1190 msgid "Please ask them to call the telephone number on their card or to pay with another method." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1163 +#: ../../src/Translations/AdminTranslations.php:1164 msgid "The payment was declined because your customer already paid for this purchase" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1164 +#: ../../src/Translations/AdminTranslations.php:1165 msgid "Check your approved payments to verify it." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1165 +#: ../../src/Translations/AdminTranslations.php:1166 msgid "Your customer's card was is not activated yet" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1166 +#: ../../src/Translations/AdminTranslations.php:1167 msgid "Please ask them to contact their bank by calling the number on the back of their card or to pay with another method." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1172 +#: ../../src/Translations/AdminTranslations.php:1173 msgid "This payment was declined because it did not pass Mercado Pago security controls. Please ask your client to use another card." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1174 +#: ../../src/Translations/AdminTranslations.php:1175 msgid "The amount exceeded the card limit. Please ask your client to use another card or to get in touch with the bank." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1176, ../../src/Translations/AdminTranslations.php:1180 +#: ../../src/Translations/AdminTranslations.php:1177, ../../src/Translations/AdminTranslations.php:1181 msgid "Please ask your client to use another card or to get in touch with the card issuer." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1182 +#: ../../src/Translations/AdminTranslations.php:1183 msgid "The amount exceeded the card's limit. Please ask your client to use another card or to get in touch with the bank." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1190 +#: ../../src/Translations/AdminTranslations.php:1191 msgid "Your customer's debit card has insufficient funds" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1191 +#: ../../src/Translations/AdminTranslations.php:1192 msgid "Please recommend your customer to pay with another card or to choose another payment method." msgstr "" -#: ../../src/Translations/AdminTranslations.php:1192 +#: ../../src/Translations/AdminTranslations.php:1193 msgid "Something went wrong and the payment was declined" msgstr "" -#: ../../src/Translations/AdminTranslations.php:1193 +#: ../../src/Translations/AdminTranslations.php:1194 msgid "Please recommend you customer to try again or to pay with another payment method." msgstr "" diff --git a/package-lock.json b/package-lock.json index 5aecb902c..c6d2fbaa6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,1752 +1,1212 @@ { "name": "woocommerce-mercadopago", - "version": "7.1.0", - "lockfileVersion": 3, + "version": "7.2.1", + "lockfileVersion": 1, "requires": true, - "packages": { - "": { - "name": "woocommerce-mercadopago", - "version": "7.1.0", - "devDependencies": { - "@woocommerce/dependency-extraction-webpack-plugin": "^2.2.0", - "@woocommerce/eslint-plugin": "^2.2.0", - "@wordpress/scripts": "^26.16.0", - "css-minimizer-webpack-plugin": "^5.0.1", - "jshint": "^2.13.5", - "minify": "^7.2.2", - "webpack-cli": "^5.1.4", - "wp-pot": "^1.10.2" - } - }, - "node_modules/@aashutoshrathi/word-wrap": { + "dependencies": { + "@aashutoshrathi/word-wrap": { "version": "1.2.6", "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/@ampproject/remapping": { + "@ampproject/remapping": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", "dev": true, - "dependencies": { + "requires": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" } }, - "node_modules/@babel/code-frame": { - "version": "7.22.13", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz", - "integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==", + "@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", "dev": true, - "dependencies": { - "@babel/highlight": "^7.22.13", + "requires": { + "@babel/highlight": "^7.23.4", "chalk": "^2.4.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/code-frame/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" } }, - "node_modules/@babel/compat-data": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.3.tgz", - "integrity": "sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } + "@babel/compat-data": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "dev": true }, - "node_modules/@babel/core": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.3.tgz", - "integrity": "sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==", + "@babel/core": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz", + "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==", "dev": true, - "dependencies": { + "requires": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.3", - "@babel/helper-compilation-targets": "^7.22.15", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.2", - "@babel/parser": "^7.23.3", - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.3", - "@babel/types": "^7.23.3", + "@babel/helpers": "^7.23.9", + "@babel/parser": "^7.23.9", + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/@babel/eslint-parser": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.3.tgz", - "integrity": "sha512-9bTuNlyx7oSstodm1cR1bECj4fkiknsDa1YniISkJemMY3DGhJNYBECbe6QD/q54mp2J8VO66jW3/7uP//iFCw==", + "@babel/eslint-parser": { + "version": "7.23.10", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.23.10.tgz", + "integrity": "sha512-3wSYDPZVnhseRnxRJH6ZVTNknBz76AEnyC+AYYhasjP3Yy23qz0ERR7Fcd2SHmYuSFJ2kY9gaaDd3vyqU09eSw==", "dev": true, - "dependencies": { + "requires": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", "semver": "^6.3.1" }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || >=14.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.11.0", - "eslint": "^7.5.0 || ^8.0.0" - } - }, - "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/@babel/generator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.3.tgz", - "integrity": "sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==", + "@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", "dev": true, - "dependencies": { - "@babel/types": "^7.23.3", + "requires": { + "@babel/types": "^7.23.6", "@jridgewell/gen-mapping": "^0.3.2", "@jridgewell/trace-mapping": "^0.3.17", "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-annotate-as-pure": { + "@babel/helper-annotate-as-pure": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "@babel/helper-builder-binary-assignment-operator-visitor": { "version": "7.22.15", "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", - "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", "dev": true, - "dependencies": { - "@babel/compat-data": "^7.22.9", - "@babel/helper-validator-option": "^7.22.15", - "browserslist": "^4.21.9", + "requires": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, - "engines": { - "node": ">=6.9.0" + "dependencies": { + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "^3.0.2" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + } } }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.22.15.tgz", - "integrity": "sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==", + "@babel/helper-create-class-features-plugin": { + "version": "7.23.10", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.10.tgz", + "integrity": "sha512-2XpP2XhkXzgxecPNEEK8Vz8Asj9aRxt08oKOqtiZoqV2UGZ5T+EkyP9sXQ9nwMxBIG34a7jmasVqoMop7VdPUw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.5", - "@babel/helper-function-name": "^7.22.5", - "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.9", + "@babel/helper-replace-supers": "^7.22.20", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "semver": "^6.3.1" }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/@babel/helper-create-regexp-features-plugin": { + "@babel/helper-create-regexp-features-plugin": { "version": "7.22.15", "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-annotate-as-pure": "^7.22.5", "regexpu-core": "^5.3.1", "semver": "^6.3.1" }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.3.tgz", - "integrity": "sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==", + "@babel/helper-define-polyfill-provider": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz", + "integrity": "sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@babel/helper-environment-visitor": { + "@babel/helper-environment-visitor": { "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } + "dev": true }, - "node_modules/@babel/helper-function-name": { + "@babel/helper-function-name": { "version": "7.23.0", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dev": true, - "dependencies": { + "requires": { "@babel/template": "^7.22.15", "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-hoist-variables": { + "@babel/helper-hoist-variables": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-member-expression-to-functions": { + "@babel/helper-member-expression-to-functions": { "version": "7.23.0", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-module-imports": { + "@babel/helper-module-imports": { "version": "7.22.15", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-module-transforms": { + "@babel/helper-module-transforms": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-module-imports": "^7.22.15", "@babel/helper-simple-access": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", "@babel/helper-validator-identifier": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-optimise-call-expression": { + "@babel/helper-optimise-call-expression": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-plugin-utils": { + "@babel/helper-plugin-utils": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } + "dev": true }, - "node_modules/@babel/helper-remap-async-to-generator": { + "@babel/helper-remap-async-to-generator": { "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-wrap-function": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-replace-supers": { + "@babel/helper-replace-supers": { "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-member-expression-to-functions": "^7.22.15", "@babel/helper-optimise-call-expression": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-simple-access": { + "@babel/helper-simple-access": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "@babel/helper-skip-transparent-expression-wrappers": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-split-export-declaration": { + "@babel/helper-split-export-declaration": { "version": "7.22.6", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helper-string-parser": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz", - "integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } + "@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true }, - "node_modules/@babel/helper-validator-identifier": { + "@babel/helper-validator-identifier": { "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } + "dev": true }, - "node_modules/@babel/helper-validator-option": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", - "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } + "@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "dev": true }, - "node_modules/@babel/helper-wrap-function": { + "@babel/helper-wrap-function": { "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-function-name": "^7.22.5", "@babel/template": "^7.22.15", "@babel/types": "^7.22.19" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/helpers": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.2.tgz", - "integrity": "sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==", + "@babel/helpers": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz", + "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==", "dev": true, - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/traverse": "^7.23.2", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" + "requires": { + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9" } }, - "node_modules/@babel/highlight": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.22.20.tgz", - "integrity": "sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==", + "@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", "js-tokens": "^4.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" } }, - "node_modules/@babel/parser": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.3.tgz", - "integrity": "sha512-uVsWNvlVsIninV2prNz/3lHCb+5CJ+e+IUBfbjToAHODtfGYLfCFuY4AU7TskI+dAKk+njsPiBjq1gKTvZOBaw==", - "dev": true, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } + "@babel/parser": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", + "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==", + "dev": true }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/plugin-transform-optional-chaining": "^7.23.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" } }, - "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz", - "integrity": "sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz", + "integrity": "sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { + "@babel/plugin-proposal-private-property-in-object": { "version": "7.21.0-placeholder-for-preset-env.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "dev": true, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "dev": true }, - "node_modules/@babel/plugin-syntax-async-generators": { + "@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-bigint": { + "@babel/plugin-syntax-bigint": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-class-properties": { + "@babel/plugin-syntax-class-properties": { "version": "7.12.13", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-class-static-block": { + "@babel/plugin-syntax-class-static-block": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-dynamic-import": { + "@babel/plugin-syntax-dynamic-import": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { + "@babel/plugin-syntax-export-namespace-from": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-import-assertions": { + "@babel/plugin-syntax-import-assertions": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-import-attributes": { + "@babel/plugin-syntax-import-attributes": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-import-meta": { + "@babel/plugin-syntax-import-meta": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-json-strings": { + "@babel/plugin-syntax-json-strings": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-jsx": { + "@babel/plugin-syntax-jsx": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-numeric-separator": { + "@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { + "@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-optional-chaining": { + "@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { + "@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-top-level-await": { + "@babel/plugin-syntax-top-level-await": { "version": "7.14.5", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-typescript": { + "@babel/plugin-syntax-typescript": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "@babel/plugin-syntax-unicode-sets-regex": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-transform-arrow-functions": { + "@babel/plugin-transform-arrow-functions": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.3.tgz", - "integrity": "sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==", + "@babel/plugin-transform-async-generator-functions": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz", + "integrity": "sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-remap-async-to-generator": "^7.22.20", "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-async-to-generator": { + "@babel/plugin-transform-async-to-generator": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-module-imports": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-remap-async-to-generator": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { + "@babel/plugin-transform-block-scoped-functions": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.3.tgz", - "integrity": "sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==", + "@babel/plugin-transform-block-scoping": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", + "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-class-properties": { + "@babel/plugin-transform-class-properties": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-create-class-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.3.tgz", - "integrity": "sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==", + "@babel/plugin-transform-class-static-block": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", + "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-create-class-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" } }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.3.tgz", - "integrity": "sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==", + "@babel/plugin-transform-classes": { + "version": "7.23.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz", + "integrity": "sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-replace-supers": "^7.22.20", "@babel/helper-split-export-declaration": "^7.22.6", "globals": "^11.1.0" }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "dependencies": { + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + } } }, - "node_modules/@babel/plugin-transform-computed-properties": { + "@babel/plugin-transform-computed-properties": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/template": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-destructuring": { + "@babel/plugin-transform-destructuring": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-dotall-regex": { + "@babel/plugin-transform-dotall-regex": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-duplicate-keys": { + "@babel/plugin-transform-duplicate-keys": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.3.tgz", - "integrity": "sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==", + "@babel/plugin-transform-dynamic-import": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz", + "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { + "@babel/plugin-transform-exponentiation-operator": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.3.tgz", - "integrity": "sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==", + "@babel/plugin-transform-export-namespace-from": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz", + "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.3.tgz", - "integrity": "sha512-X8jSm8X1CMwxmK878qsUGJRmbysKNbdpTv/O1/v0LuY/ZkZrng5WYiekYSdg9m09OTmDDUWeEDsTE+17WYbAZw==", + "@babel/plugin-transform-for-of": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", + "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "requires": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" } }, - "node_modules/@babel/plugin-transform-function-name": { + "@babel/plugin-transform-function-name": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-compilation-targets": "^7.22.15", "@babel/helper-function-name": "^7.23.0", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.3.tgz", - "integrity": "sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==", + "@babel/plugin-transform-json-strings": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz", + "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-literals": { + "@babel/plugin-transform-literals": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.3.tgz", - "integrity": "sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==", + "@babel/plugin-transform-logical-assignment-operators": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz", + "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-member-expression-literals": { + "@babel/plugin-transform-member-expression-literals": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-amd": { + "@babel/plugin-transform-modules-amd": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-commonjs": { + "@babel/plugin-transform-modules-commonjs": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-simple-access": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", - "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", + "@babel/plugin-transform-modules-systemjs": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz", + "integrity": "sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-validator-identifier": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-modules-umd": { + "@babel/plugin-transform-modules-umd": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-module-transforms": "^7.23.3", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "@babel/plugin-transform-named-capturing-groups-regex": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-create-regexp-features-plugin": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-transform-new-target": { + "@babel/plugin-transform-new-target": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.3.tgz", - "integrity": "sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==", + "@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz", + "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.3.tgz", - "integrity": "sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==", + "@babel/plugin-transform-numeric-separator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz", + "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.3.tgz", - "integrity": "sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==", + "@babel/plugin-transform-object-rest-spread": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz", + "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==", "dev": true, - "dependencies": { + "requires": { "@babel/compat-data": "^7.23.3", "@babel/helper-compilation-targets": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-object-rest-spread": "^7.8.3", "@babel/plugin-transform-parameters": "^7.23.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-object-super": { + "@babel/plugin-transform-object-super": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-replace-supers": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.3.tgz", - "integrity": "sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==", + "@babel/plugin-transform-optional-catch-binding": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz", + "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.3.tgz", - "integrity": "sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==", + "@babel/plugin-transform-optional-chaining": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz", + "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-parameters": { + "@babel/plugin-transform-parameters": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-private-methods": { + "@babel/plugin-transform-private-methods": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-create-class-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.3.tgz", - "integrity": "sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==", + "@babel/plugin-transform-private-property-in-object": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz", + "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-create-class-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-property-literals": { + "@babel/plugin-transform-property-literals": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-constant-elements": { + "@babel/plugin-transform-react-constant-elements": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.23.3.tgz", "integrity": "sha512-zP0QKq/p6O42OL94udMgSfKXyse4RyJ0JqbQ34zDAONWjyrEsghYEyTSK5FIpmXmCpB55SHokL1cRRKHv8L2Qw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-display-name": { + "@babel/plugin-transform-react-display-name": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.23.3.tgz", "integrity": "sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz", - "integrity": "sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==", + "@babel/plugin-transform-react-jsx": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", + "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-module-imports": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-jsx": "^7.22.5", - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/types": "^7.23.4" } }, - "node_modules/@babel/plugin-transform-react-jsx-development": { + "@babel/plugin-transform-react-jsx-development": { "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", "dev": true, - "dependencies": { + "requires": { "@babel/plugin-transform-react-jsx": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-react-pure-annotations": { + "@babel/plugin-transform-react-pure-annotations": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.23.3.tgz", "integrity": "sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-regenerator": { + "@babel/plugin-transform-regenerator": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "regenerator-transform": "^0.15.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-reserved-words": { + "@babel/plugin-transform-reserved-words": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-runtime": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.3.tgz", - "integrity": "sha512-XcQ3X58CKBdBnnZpPaQjgVMePsXtSZzHoku70q9tUAQp02ggPQNM04BF3RvlW1GSM/McbSOQAzEK4MXbS7/JFg==", + "@babel/plugin-transform-runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.9.tgz", + "integrity": "sha512-A7clW3a0aSjm3ONU9o2HAILSegJCYlEZmOhmBRReVtIpY/Z/p7yIZ+wR41Z+UipwdGuqwtID/V/dOdZXjwi9gQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-module-imports": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", + "babel-plugin-polyfill-corejs2": "^0.4.8", + "babel-plugin-polyfill-corejs3": "^0.9.0", + "babel-plugin-polyfill-regenerator": "^0.5.5", "semver": "^6.3.1" }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/@babel/plugin-transform-shorthand-properties": { + "@babel/plugin-transform-shorthand-properties": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-spread": { + "@babel/plugin-transform-spread": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-sticky-regex": { + "@babel/plugin-transform-sticky-regex": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-template-literals": { + "@babel/plugin-transform-template-literals": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-typeof-symbol": { + "@babel/plugin-transform-typeof-symbol": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.3.tgz", - "integrity": "sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==", + "@babel/plugin-transform-typescript": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz", + "integrity": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-create-class-features-plugin": "^7.23.6", "@babel/helper-plugin-utils": "^7.22.5", "@babel/plugin-syntax-typescript": "^7.23.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-unicode-escapes": { + "@babel/plugin-transform-unicode-escapes": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-unicode-property-regex": { + "@babel/plugin-transform-unicode-property-regex": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-unicode-regex": { + "@babel/plugin-transform-unicode-regex": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "@babel/plugin-transform-unicode-sets-regex": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-create-regexp-features-plugin": "^7.22.15", "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, - "node_modules/@babel/preset-env": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.3.tgz", - "integrity": "sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==", + "@babel/preset-env": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.9.tgz", + "integrity": "sha512-3kBGTNBBk9DQiPoXYS0g0BYlwTQYUTifqgKTjxUwEUkduRT2QOa0FPGBJ+NROQhGyYO5BuTJwGvBnqKDykac6A==", "dev": true, - "dependencies": { - "@babel/compat-data": "^7.23.3", - "@babel/helper-compilation-targets": "^7.22.15", + "requires": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-compilation-targets": "^7.23.6", "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.22.15", + "@babel/helper-validator-option": "^7.23.5", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.3", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.7", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", @@ -1767,41 +1227,41 @@ "@babel/plugin-syntax-top-level-await": "^7.14.5", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.23.3", - "@babel/plugin-transform-async-generator-functions": "^7.23.3", + "@babel/plugin-transform-async-generator-functions": "^7.23.9", "@babel/plugin-transform-async-to-generator": "^7.23.3", "@babel/plugin-transform-block-scoped-functions": "^7.23.3", - "@babel/plugin-transform-block-scoping": "^7.23.3", + "@babel/plugin-transform-block-scoping": "^7.23.4", "@babel/plugin-transform-class-properties": "^7.23.3", - "@babel/plugin-transform-class-static-block": "^7.23.3", - "@babel/plugin-transform-classes": "^7.23.3", + "@babel/plugin-transform-class-static-block": "^7.23.4", + "@babel/plugin-transform-classes": "^7.23.8", "@babel/plugin-transform-computed-properties": "^7.23.3", "@babel/plugin-transform-destructuring": "^7.23.3", "@babel/plugin-transform-dotall-regex": "^7.23.3", "@babel/plugin-transform-duplicate-keys": "^7.23.3", - "@babel/plugin-transform-dynamic-import": "^7.23.3", + "@babel/plugin-transform-dynamic-import": "^7.23.4", "@babel/plugin-transform-exponentiation-operator": "^7.23.3", - "@babel/plugin-transform-export-namespace-from": "^7.23.3", - "@babel/plugin-transform-for-of": "^7.23.3", + "@babel/plugin-transform-export-namespace-from": "^7.23.4", + "@babel/plugin-transform-for-of": "^7.23.6", "@babel/plugin-transform-function-name": "^7.23.3", - "@babel/plugin-transform-json-strings": "^7.23.3", + "@babel/plugin-transform-json-strings": "^7.23.4", "@babel/plugin-transform-literals": "^7.23.3", - "@babel/plugin-transform-logical-assignment-operators": "^7.23.3", + "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", "@babel/plugin-transform-member-expression-literals": "^7.23.3", "@babel/plugin-transform-modules-amd": "^7.23.3", "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-modules-systemjs": "^7.23.3", + "@babel/plugin-transform-modules-systemjs": "^7.23.9", "@babel/plugin-transform-modules-umd": "^7.23.3", "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", "@babel/plugin-transform-new-target": "^7.23.3", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.3", - "@babel/plugin-transform-numeric-separator": "^7.23.3", - "@babel/plugin-transform-object-rest-spread": "^7.23.3", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", + "@babel/plugin-transform-numeric-separator": "^7.23.4", + "@babel/plugin-transform-object-rest-spread": "^7.23.4", "@babel/plugin-transform-object-super": "^7.23.3", - "@babel/plugin-transform-optional-catch-binding": "^7.23.3", - "@babel/plugin-transform-optional-chaining": "^7.23.3", + "@babel/plugin-transform-optional-catch-binding": "^7.23.4", + "@babel/plugin-transform-optional-chaining": "^7.23.4", "@babel/plugin-transform-parameters": "^7.23.3", "@babel/plugin-transform-private-methods": "^7.23.3", - "@babel/plugin-transform-private-property-in-object": "^7.23.3", + "@babel/plugin-transform-private-property-in-object": "^7.23.4", "@babel/plugin-transform-property-literals": "^7.23.3", "@babel/plugin-transform-regenerator": "^7.23.3", "@babel/plugin-transform-reserved-words": "^7.23.3", @@ -1815,214 +1275,172 @@ "@babel/plugin-transform-unicode-regex": "^7.23.3", "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", + "babel-plugin-polyfill-corejs2": "^0.4.8", + "babel-plugin-polyfill-corejs3": "^0.9.0", + "babel-plugin-polyfill-regenerator": "^0.5.5", "core-js-compat": "^3.31.0", "semver": "^6.3.1" }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/@babel/preset-modules": { + "@babel/preset-modules": { "version": "0.1.6-no-external-plugins", "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@babel/preset-react": { + "@babel/preset-react": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.23.3.tgz", "integrity": "sha512-tbkHOS9axH6Ysf2OUEqoSZ6T3Fa2SrNH6WTWSPBboxKzdxNc9qOICeLXkNG0ZEwbQ1HY8liwOce4aN/Ceyuq6w==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-validator-option": "^7.22.15", "@babel/plugin-transform-react-display-name": "^7.23.3", "@babel/plugin-transform-react-jsx": "^7.22.15", "@babel/plugin-transform-react-jsx-development": "^7.22.5", "@babel/plugin-transform-react-pure-annotations": "^7.23.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/preset-typescript": { + "@babel/preset-typescript": { "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz", "integrity": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==", "dev": true, - "dependencies": { + "requires": { "@babel/helper-plugin-utils": "^7.22.5", "@babel/helper-validator-option": "^7.22.15", "@babel/plugin-syntax-jsx": "^7.23.3", "@babel/plugin-transform-modules-commonjs": "^7.23.3", "@babel/plugin-transform-typescript": "^7.23.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/regjsgen": { + "@babel/regjsgen": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==", "dev": true }, - "node_modules/@babel/runtime": { - "version": "7.23.2", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", - "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", + "@babel/runtime": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", + "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", "dev": true, - "dependencies": { + "requires": { "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "@babel/template": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz", + "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==", "dev": true, - "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" + "requires": { + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9" } }, - "node_modules/@babel/traverse": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.3.tgz", - "integrity": "sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==", + "@babel/traverse": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz", + "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==", "dev": true, - "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/generator": "^7.23.3", + "requires": { + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.3", - "@babel/types": "^7.23.3", - "debug": "^4.1.0", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9", + "debug": "^4.3.1", "globals": "^11.1.0" }, - "engines": { - "node": ">=6.9.0" + "dependencies": { + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + } } }, - "node_modules/@babel/types": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.3.tgz", - "integrity": "sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==", + "@babel/types": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", + "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", "dev": true, - "dependencies": { - "@babel/helper-string-parser": "^7.22.5", + "requires": { + "@babel/helper-string-parser": "^7.23.4", "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" } }, - "node_modules/@bcoe/v8-coverage": { + "@bcoe/v8-coverage": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true }, - "node_modules/@csstools/selector-specificity": { + "@csstools/selector-specificity": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-2.2.0.tgz", "integrity": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==", - "dev": true, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss-selector-parser": "^6.0.10" - } + "dev": true }, - "node_modules/@discoveryjs/json-ext": { + "@discoveryjs/json-ext": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } + "dev": true }, - "node_modules/@es-joy/jsdoccomment": { + "@es-joy/jsdoccomment": { "version": "0.20.1", "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.20.1.tgz", "integrity": "sha512-oeJK41dcdqkvdZy/HctKklJNkt/jh+av3PZARrZEl+fs/8HaHeeYoAvEwOV0u5I6bArTF17JEsTZMY359e/nfQ==", "dev": true, - "dependencies": { + "requires": { "comment-parser": "1.3.0", "esquery": "^1.4.0", "jsdoc-type-pratt-parser": "~2.2.3" - }, - "engines": { - "node": "^12 || ^14 || ^16 || ^17" } }, - "node_modules/@eslint-community/eslint-utils": { + "@eslint-community/eslint-utils": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", "dev": true, - "dependencies": { + "requires": { "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, - "node_modules/@eslint-community/regexpp": { + "@eslint-community/regexpp": { "version": "4.10.0", "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", - "dev": true, - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } + "dev": true }, - "node_modules/@eslint/eslintrc": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", - "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", + "@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, - "dependencies": { + "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.6.0", @@ -2032,277 +1450,153 @@ "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/@eslint/eslintrc/node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@eslint/eslintrc/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/@eslint/eslintrc/node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@eslint/js": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", - "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - } + "@eslint/js": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", + "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", + "dev": true }, - "node_modules/@hapi/hoek": { + "@hapi/hoek": { "version": "9.3.0", "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.3.0.tgz", "integrity": "sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==", "dev": true }, - "node_modules/@hapi/topo": { + "@hapi/topo": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz", "integrity": "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==", "dev": true, - "dependencies": { + "requires": { "@hapi/hoek": "^9.0.0" } }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.13", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", - "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", + "@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", "dev": true, - "dependencies": { - "@humanwhocodes/object-schema": "^2.0.1", - "debug": "^4.1.1", + "requires": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", "minimatch": "^3.0.5" - }, - "engines": { - "node": ">=10.10.0" } }, - "node_modules/@humanwhocodes/module-importer": { + "@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } + "dev": true }, - "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", - "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", + "@humanwhocodes/object-schema": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", + "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", "dev": true }, - "node_modules/@istanbuljs/load-nyc-config": { + "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, - "dependencies": { + "requires": { "camelcase": "^5.3.1", "find-up": "^4.1.0", "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, - "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + } } }, - "node_modules/@istanbuljs/load-nyc-config/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/@istanbuljs/schema": { + "@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/@jest/console": { + "@jest/console": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, - "dependencies": { + "requires": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -2310,16 +1604,64 @@ "jest-util": "^29.7.0", "slash": "^3.0.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/@jest/core": { + "@jest/core": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", "dev": true, - "dependencies": { + "requires": { "@jest/console": "^29.7.0", "@jest/reporters": "^29.7.0", "@jest/test-result": "^29.7.0", @@ -2349,96 +1691,121 @@ "slash": "^3.0.0", "strip-ansi": "^6.0.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "node_modules/@jest/environment": { + "@jest/environment": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", "dev": true, - "dependencies": { + "requires": { "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "jest-mock": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/expect": { + "@jest/expect": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", "dev": true, - "dependencies": { + "requires": { "expect": "^29.7.0", "jest-snapshot": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/expect-utils": { + "@jest/expect-utils": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", "dev": true, - "dependencies": { + "requires": { "jest-get-type": "^29.6.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/fake-timers": { + "@jest/fake-timers": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", "dev": true, - "dependencies": { + "requires": { "@jest/types": "^29.6.3", "@sinonjs/fake-timers": "^10.0.2", "@types/node": "*", "jest-message-util": "^29.7.0", "jest-mock": "^29.7.0", "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/globals": { + "@jest/globals": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", "dev": true, - "dependencies": { + "requires": { "@jest/environment": "^29.7.0", "@jest/expect": "^29.7.0", "@jest/types": "^29.6.3", "jest-mock": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/reporters": { + "@jest/reporters": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", "dev": true, - "dependencies": { + "requires": { "@bcoe/v8-coverage": "^0.2.3", "@jest/console": "^29.7.0", "@jest/test-result": "^29.7.0", @@ -2464,129 +1831,121 @@ "strip-ansi": "^6.0.0", "v8-to-istanbul": "^9.0.1" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/reporters/node_modules/istanbul-lib-instrument": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", - "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", - "dev": true, - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^7.5.4" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@jest/reporters/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@jest/reporters/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.1.tgz", + "integrity": "sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/@jest/reporters/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@jest/schemas": { + "@jest/schemas": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, - "dependencies": { + "requires": { "@sinclair/typebox": "^0.27.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/source-map": { + "@jest/source-map": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", "dev": true, - "dependencies": { + "requires": { "@jridgewell/trace-mapping": "^0.3.18", "callsites": "^3.0.0", "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/test-result": { + "@jest/test-result": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", "dev": true, - "dependencies": { + "requires": { "@jest/console": "^29.7.0", "@jest/types": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "collect-v8-coverage": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/test-sequencer": { + "@jest/test-sequencer": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", "dev": true, - "dependencies": { + "requires": { "@jest/test-result": "^29.7.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^29.7.0", "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@jest/transform": { + "@jest/transform": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", "dev": true, - "dependencies": { + "requires": { "@babel/core": "^7.11.6", "@jest/types": "^29.6.3", "@jridgewell/trace-mapping": "^0.3.18", @@ -2603,29 +1962,74 @@ "slash": "^3.0.0", "write-file-atomic": "^4.0.2" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/@jest/transform/node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + } + } } }, - "node_modules/@jest/types": { + "@jest/types": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", "dev": true, - "dependencies": { + "requires": { "@jest/schemas": "^29.6.3", "@types/istanbul-lib-coverage": "^2.0.0", "@types/istanbul-reports": "^3.0.0", @@ -2633,194 +2037,160 @@ "@types/yargs": "^17.0.8", "chalk": "^4.0.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", "dev": true, - "dependencies": { + "requires": { "@jridgewell/set-array": "^1.0.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" } }, - "node_modules/@jridgewell/resolve-uri": { + "@jridgewell/resolve-uri": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } + "dev": true }, - "node_modules/@jridgewell/set-array": { + "@jridgewell/set-array": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } + "dev": true }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", + "@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", "dev": true, - "dependencies": { + "requires": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" } }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", "dev": true }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "@jridgewell/trace-mapping": { + "version": "0.3.22", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.22.tgz", + "integrity": "sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==", "dev": true, - "dependencies": { + "requires": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@leichtgewicht/ip-codec": { + "@leichtgewicht/ip-codec": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz", "integrity": "sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==", "dev": true }, - "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "@nicolo-ribaudo/eslint-scope-5-internals": { "version": "5.1.1-v1", "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", "dev": true, - "dependencies": { + "requires": { "eslint-scope": "5.1.1" } }, - "node_modules/@nodelib/fs.scandir": { + "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, - "dependencies": { + "requires": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" } }, - "node_modules/@nodelib/fs.stat": { + "@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } + "dev": true }, - "node_modules/@nodelib/fs.walk": { + "@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, - "dependencies": { + "requires": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pkgr/utils": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz", - "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "fast-glob": "^3.3.0", - "is-glob": "^4.0.3", - "open": "^9.1.0", - "picocolors": "^1.0.0", - "tslib": "^2.6.0" - }, - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" - } - }, - "node_modules/@pkgr/utils/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pkgr/utils/node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@pkgr/utils/node_modules/open": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", - "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", - "dev": true, - "dependencies": { - "default-browser": "^4.0.0", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@pkgr/utils/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", "dev": true }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "@pmmmwh/react-refresh-webpack-plugin": { "version": "0.5.11", "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz", "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==", "dev": true, - "dependencies": { + "requires": { "ansi-html-community": "^0.0.8", "common-path-prefix": "^3.0.0", "core-js-pure": "^3.23.3", @@ -2830,253 +2200,87 @@ "loader-utils": "^2.0.4", "schema-utils": "^3.0.0", "source-map": "^0.7.3" - }, - "engines": { - "node": ">= 10.13" - }, - "peerDependencies": { - "@types/webpack": "4.x || 5.x", - "react-refresh": ">=0.10.0 <1.0.0", - "sockjs-client": "^1.4.0", - "type-fest": ">=0.17.0 <5.0.0", - "webpack": ">=4.43.0 <6.0.0", - "webpack-dev-server": "3.x || 4.x", - "webpack-hot-middleware": "2.x", - "webpack-plugin-serve": "0.x || 1.x" - }, - "peerDependenciesMeta": { - "@types/webpack": { - "optional": true - }, - "sockjs-client": { - "optional": true - }, - "type-fest": { - "optional": true - }, - "webpack-dev-server": { - "optional": true - }, - "webpack-hot-middleware": { - "optional": true - }, - "webpack-plugin-serve": { - "optional": true - } } }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "@polka/url": { + "version": "1.0.0-next.24", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.24.tgz", + "integrity": "sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==", + "dev": true + }, + "@puppeteer/browsers": { + "version": "1.4.6", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.4.6.tgz", + "integrity": "sha512-x4BEjr2SjOPowNeiguzjozQbsc6h437ovD/wu+JpaenxVLm3jkgzHY2xOslMTp50HoTvQreMjiexiGQw1sqZlQ==", "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" + "requires": { + "debug": "4.3.4", + "extract-zip": "2.0.1", + "progress": "2.0.3", + "proxy-agent": "6.3.0", + "tar-fs": "3.0.4", + "unbzip2-stream": "1.4.3", + "yargs": "17.7.1" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "yargs": { + "version": "17.7.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", + "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", + "dev": true, + "requires": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + } + } } }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@polka/url": { - "version": "1.0.0-next.23", - "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.23.tgz", - "integrity": "sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==", - "dev": true - }, - "node_modules/@puppeteer/browsers": { - "version": "1.4.6", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-1.4.6.tgz", - "integrity": "sha512-x4BEjr2SjOPowNeiguzjozQbsc6h437ovD/wu+JpaenxVLm3jkgzHY2xOslMTp50HoTvQreMjiexiGQw1sqZlQ==", - "dev": true, - "dependencies": { - "debug": "4.3.4", - "extract-zip": "2.0.1", - "progress": "2.0.3", - "proxy-agent": "6.3.0", - "tar-fs": "3.0.4", - "unbzip2-stream": "1.4.3", - "yargs": "17.7.1" - }, - "bin": { - "browsers": "lib/cjs/main-cli.js" - }, - "engines": { - "node": ">=16.3.0" - }, - "peerDependencies": { - "typescript": ">= 4.7.4" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@puppeteer/browsers/node_modules/yargs": { - "version": "17.7.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.1.tgz", - "integrity": "sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw==", - "dev": true, - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@sentry/core": { + "@sentry/core": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/core/-/core-6.19.7.tgz", "integrity": "sha512-tOfZ/umqB2AcHPGbIrsFLcvApdTm9ggpi/kQZFkej7kMphjT+SGBiQfYtjyg9jcRW+ilAR4JXC9BGKsdEQ+8Vw==", "dev": true, - "dependencies": { + "requires": { "@sentry/hub": "6.19.7", "@sentry/minimal": "6.19.7", "@sentry/types": "6.19.7", "@sentry/utils": "6.19.7", "tslib": "^1.9.3" - }, - "engines": { - "node": ">=6" } }, - "node_modules/@sentry/core/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/@sentry/hub": { + "@sentry/hub": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-6.19.7.tgz", "integrity": "sha512-y3OtbYFAqKHCWezF0EGGr5lcyI2KbaXW2Ik7Xp8Mu9TxbSTuwTe4rTntwg8ngPjUQU3SUHzgjqVB8qjiGqFXCA==", "dev": true, - "dependencies": { + "requires": { "@sentry/types": "6.19.7", "@sentry/utils": "6.19.7", "tslib": "^1.9.3" - }, - "engines": { - "node": ">=6" } }, - "node_modules/@sentry/hub/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/@sentry/minimal": { + "@sentry/minimal": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-6.19.7.tgz", "integrity": "sha512-wcYmSJOdvk6VAPx8IcmZgN08XTXRwRtB1aOLZm+MVHjIZIhHoBGZJYTVQS/BWjldsamj2cX3YGbGXNunaCfYJQ==", "dev": true, - "dependencies": { + "requires": { "@sentry/hub": "6.19.7", "@sentry/types": "6.19.7", "tslib": "^1.9.3" - }, - "engines": { - "node": ">=6" } }, - "node_modules/@sentry/minimal/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/@sentry/node": { + "@sentry/node": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/node/-/node-6.19.7.tgz", "integrity": "sha512-gtmRC4dAXKODMpHXKfrkfvyBL3cI8y64vEi3fDD046uqYcrWdgoQsffuBbxMAizc6Ez1ia+f0Flue6p15Qaltg==", "dev": true, - "dependencies": { + "requires": { "@sentry/core": "6.19.7", "@sentry/hub": "6.19.7", "@sentry/types": "6.19.7", @@ -3085,224 +2289,123 @@ "https-proxy-agent": "^5.0.0", "lru_map": "^0.3.3", "tslib": "^1.9.3" - }, - "engines": { - "node": ">=6" } }, - "node_modules/@sentry/node/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/@sentry/types": { + "@sentry/types": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/types/-/types-6.19.7.tgz", "integrity": "sha512-jH84pDYE+hHIbVnab3Hr+ZXr1v8QABfhx39KknxqKWr2l0oEItzepV0URvbEhB446lk/S/59230dlUUIBGsXbg==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/@sentry/utils": { + "@sentry/utils": { "version": "6.19.7", "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-6.19.7.tgz", "integrity": "sha512-z95ECmE3i9pbWoXQrD/7PgkBAzJYR+iXtPuTkpBjDKs86O3mT+PXOT3BAn79w2wkn7/i3vOGD2xVr1uiMl26dA==", "dev": true, - "dependencies": { + "requires": { "@sentry/types": "6.19.7", "tslib": "^1.9.3" - }, - "engines": { - "node": ">=6" } }, - "node_modules/@sentry/utils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/@sideway/address": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.4.tgz", - "integrity": "sha512-7vwq+rOHVWjyXxVlR76Agnvhy8I9rpzjosTESvmhNeXOXdZZB15Fl+TI9x1SiHZH5Jv2wTGduSxFDIaq0m3DUw==", + "@sideway/address": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@sideway/address/-/address-4.1.5.tgz", + "integrity": "sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==", "dev": true, - "dependencies": { + "requires": { "@hapi/hoek": "^9.0.0" } }, - "node_modules/@sideway/formula": { + "@sideway/formula": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/@sideway/formula/-/formula-3.0.1.tgz", "integrity": "sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==", "dev": true }, - "node_modules/@sideway/pinpoint": { + "@sideway/pinpoint": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@sideway/pinpoint/-/pinpoint-2.0.0.tgz", "integrity": "sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==", "dev": true }, - "node_modules/@sinclair/typebox": { + "@sinclair/typebox": { "version": "0.27.8", "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, - "node_modules/@sinonjs/commons": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", - "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "@sinonjs/commons": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", + "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", "dev": true, - "dependencies": { + "requires": { "type-detect": "4.0.8" } }, - "node_modules/@sinonjs/fake-timers": { + "@sinonjs/fake-timers": { "version": "10.3.0", "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", "dev": true, - "dependencies": { + "requires": { "@sinonjs/commons": "^3.0.0" } }, - "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "@svgr/babel-plugin-add-jsx-attribute": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "dev": true }, - "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "@svgr/babel-plugin-remove-jsx-attribute": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "dev": true }, - "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "@svgr/babel-plugin-remove-jsx-empty-expression": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "dev": true }, - "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "@svgr/babel-plugin-replace-jsx-attribute-value": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "dev": true }, - "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "@svgr/babel-plugin-svg-dynamic-title": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "dev": true }, - "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "@svgr/babel-plugin-svg-em-dimensions": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "dev": true }, - "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "@svgr/babel-plugin-transform-react-native-svg": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "dev": true }, - "node_modules/@svgr/babel-plugin-transform-svg-component": { + "@svgr/babel-plugin-transform-svg-component": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } + "dev": true }, - "node_modules/@svgr/babel-preset": { + "@svgr/babel-preset": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", "dev": true, - "dependencies": { + "requires": { "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", @@ -3311,116 +2414,88 @@ "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", "@svgr/babel-plugin-transform-svg-component": "8.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@svgr/core": { + "@svgr/core": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", "dev": true, - "dependencies": { + "requires": { "@babel/core": "^7.21.3", "@svgr/babel-preset": "8.1.0", "camelcase": "^6.2.0", "cosmiconfig": "^8.1.3", "snake-case": "^3.0.4" }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" + "dependencies": { + "cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "requires": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + } + } } }, - "node_modules/@svgr/hast-util-to-babel-ast": { + "@svgr/hast-util-to-babel-ast": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.21.3", "entities": "^4.4.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/hast-util-to-babel-ast/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/@svgr/plugin-jsx": { + "@svgr/plugin-jsx": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", "dev": true, - "dependencies": { + "requires": { "@babel/core": "^7.21.3", "@svgr/babel-preset": "8.1.0", "@svgr/hast-util-to-babel-ast": "8.0.0", "svg-parser": "^2.0.4" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "*" } }, - "node_modules/@svgr/plugin-svgo": { + "@svgr/plugin-svgo": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", "dev": true, - "dependencies": { + "requires": { "cosmiconfig": "^8.1.3", "deepmerge": "^4.3.1", "svgo": "^3.0.2" }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "*" + "dependencies": { + "cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "requires": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + } + } } }, - "node_modules/@svgr/webpack": { + "@svgr/webpack": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-8.1.0.tgz", "integrity": "sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==", "dev": true, - "dependencies": { + "requires": { "@babel/core": "^7.21.3", "@babel/plugin-transform-react-constant-elements": "^7.21.3", "@babel/preset-env": "^7.20.2", @@ -3429,76 +2504,63 @@ "@svgr/core": "8.1.0", "@svgr/plugin-jsx": "8.1.0", "@svgr/plugin-svgo": "8.1.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@tannin/compile": { + "@tannin/compile": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@tannin/compile/-/compile-1.1.0.tgz", "integrity": "sha512-n8m9eNDfoNZoxdvWiTfW/hSPhehzLJ3zW7f8E7oT6mCROoMNWCB4TYtv041+2FMAxweiE0j7i1jubQU4MEC/Gg==", "dev": true, - "dependencies": { + "requires": { "@tannin/evaluate": "^1.2.0", "@tannin/postfix": "^1.1.0" } }, - "node_modules/@tannin/evaluate": { + "@tannin/evaluate": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@tannin/evaluate/-/evaluate-1.2.0.tgz", "integrity": "sha512-3ioXvNowbO/wSrxsDG5DKIMxC81P0QrQTYai8zFNY+umuoHWRPbQ/TuuDEOju9E+jQDXmj6yI5GyejNuh8I+eg==", "dev": true }, - "node_modules/@tannin/plural-forms": { + "@tannin/plural-forms": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@tannin/plural-forms/-/plural-forms-1.1.0.tgz", "integrity": "sha512-xl9R2mDZO/qiHam1AgMnAES6IKIg7OBhcXqy6eDsRCdXuxAFPcjrej9HMjyCLE0DJ/8cHf0i5OQTstuBRhpbHw==", "dev": true, - "dependencies": { + "requires": { "@tannin/compile": "^1.1.0" } }, - "node_modules/@tannin/postfix": { + "@tannin/postfix": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@tannin/postfix/-/postfix-1.1.0.tgz", "integrity": "sha512-oocsqY7g0cR+Gur5jRQLSrX2OtpMLMse1I10JQBm8CdGMrDkh1Mg2gjsiquMHRtBs4Qwu5wgEp5GgIYHk4SNPw==", "dev": true }, - "node_modules/@tootallnate/once": { + "@tootallnate/once": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", - "dev": true, - "engines": { - "node": ">= 10" - } + "dev": true }, - "node_modules/@tootallnate/quickjs-emscripten": { + "@tootallnate/quickjs-emscripten": { "version": "0.23.0", "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", "dev": true }, - "node_modules/@trysound/sax": { + "@trysound/sax": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "dev": true, - "engines": { - "node": ">=10.13.0" - } + "dev": true }, - "node_modules/@types/babel__core": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.4.tgz", - "integrity": "sha512-mLnSC22IC4vcWiuObSRjrLd9XcBTGf59vUSoq2jkQDJ/QQ8PMI9rSuzE+aEV8karUMbskw07bKYoUJCKTUaygg==", + "@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, - "dependencies": { + "requires": { "@babel/parser": "^7.20.7", "@babel/types": "^7.20.7", "@types/babel__generator": "*", @@ -3506,453 +2568,460 @@ "@types/babel__traverse": "*" } }, - "node_modules/@types/babel__generator": { - "version": "7.6.7", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.7.tgz", - "integrity": "sha512-6Sfsq+EaaLrw4RmdFWE9Onp63TOUue71AWb4Gpa6JxzgTYtimbM086WnYTy2U67AofR++QKCo08ZP6pwx8YFHQ==", + "@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.0.0" } }, - "node_modules/@types/babel__template": { + "@types/babel__template": { "version": "7.4.4", "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, - "dependencies": { + "requires": { "@babel/parser": "^7.1.0", "@babel/types": "^7.0.0" } }, - "node_modules/@types/babel__traverse": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", - "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", + "@types/babel__traverse": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", + "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", "dev": true, - "dependencies": { + "requires": { "@babel/types": "^7.20.7" } }, - "node_modules/@types/body-parser": { + "@types/body-parser": { "version": "1.19.5", "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "dev": true, - "dependencies": { + "requires": { "@types/connect": "*", "@types/node": "*" } }, - "node_modules/@types/bonjour": { + "@types/bonjour": { "version": "3.5.13", "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*" } }, - "node_modules/@types/connect": { + "@types/connect": { "version": "3.4.38", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*" } }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.3.tgz", - "integrity": "sha512-6mfQ6iNvhSKCZJoY6sIG3m0pKkdUcweVNOLuBBKvoWGzl2yRxOJcYOTRyLKt3nxXvBLJWa6QkW//tgbIwJehmA==", + "@types/connect-history-api-fallback": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", + "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", "dev": true, - "dependencies": { + "requires": { "@types/express-serve-static-core": "*", "@types/node": "*" } }, - "node_modules/@types/eslint": { - "version": "8.44.7", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.7.tgz", - "integrity": "sha512-f5ORu2hcBbKei97U73mf+l9t4zTGl74IqZ0GQk4oVea/VS8tQZYkUveSYojk+frraAVYId0V2WC9O4PTNru2FQ==", + "@types/eslint": { + "version": "8.56.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.56.2.tgz", + "integrity": "sha512-uQDwm1wFHmbBbCZCqAlq6Do9LYwByNZHWzXppSnay9SuwJ+VRbjkbLABer54kcPnMSlG6Fdiy2yaFXm/z9Z5gw==", "dev": true, - "dependencies": { + "requires": { "@types/estree": "*", "@types/json-schema": "*" } }, - "node_modules/@types/eslint-scope": { + "@types/eslint-scope": { "version": "3.7.7", "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "dev": true, - "dependencies": { + "requires": { "@types/eslint": "*", "@types/estree": "*" } }, - "node_modules/@types/estree": { + "@types/estree": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", "dev": true }, - "node_modules/@types/express": { + "@types/express": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "dev": true, - "dependencies": { + "requires": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.41", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.41.tgz", - "integrity": "sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==", + "@types/express-serve-static-core": { + "version": "4.17.43", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.43.tgz", + "integrity": "sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*", "@types/send": "*" } }, - "node_modules/@types/glob": { + "@types/glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==", "dev": true, - "dependencies": { + "requires": { "@types/minimatch": "*", "@types/node": "*" } }, - "node_modules/@types/graceful-fs": { + "@types/graceful-fs": { "version": "4.1.9", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*" } }, - "node_modules/@types/http-errors": { + "@types/http-errors": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", "dev": true }, - "node_modules/@types/http-proxy": { + "@types/http-proxy": { "version": "1.17.14", "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*" } }, - "node_modules/@types/istanbul-lib-coverage": { + "@types/istanbul-lib-coverage": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", "dev": true }, - "node_modules/@types/istanbul-lib-report": { + "@types/istanbul-lib-report": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "dev": true, - "dependencies": { + "requires": { "@types/istanbul-lib-coverage": "*" } }, - "node_modules/@types/istanbul-reports": { + "@types/istanbul-reports": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dev": true, - "dependencies": { + "requires": { "@types/istanbul-lib-report": "*" } }, - "node_modules/@types/jsdom": { + "@types/jsdom": { "version": "20.0.1", "resolved": "https://registry.npmjs.org/@types/jsdom/-/jsdom-20.0.1.tgz", "integrity": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*", "@types/tough-cookie": "*", "parse5": "^7.0.0" } }, - "node_modules/@types/json-schema": { + "@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true }, - "node_modules/@types/json5": { + "@types/json5": { "version": "0.0.29", "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", "dev": true }, - "node_modules/@types/mime": { + "@types/mime": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true }, - "node_modules/@types/minimatch": { + "@types/minimatch": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", "dev": true }, - "node_modules/@types/minimist": { + "@types/minimist": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", "dev": true }, - "node_modules/@types/node": { - "version": "20.9.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz", - "integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==", + "@types/node": { + "version": "20.11.16", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.16.tgz", + "integrity": "sha512-gKb0enTmRCzXSSUJDq6/sPcqrfCv2mkkG6Jt/clpn5eiCbKTY+SgZUxo+p8ZKMof5dCp9vHQUAB7wOUTod22wQ==", "dev": true, - "dependencies": { + "requires": { "undici-types": "~5.26.4" } }, - "node_modules/@types/node-forge": { - "version": "1.3.9", - "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.9.tgz", - "integrity": "sha512-meK88cx/sTalPSLSoCzkiUB4VPIFHmxtXm5FaaqRDqBX2i/Sy8bJ4odsan0b20RBjPh06dAQ+OTTdnyQyhJZyQ==", + "@types/node-forge": { + "version": "1.3.11", + "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", + "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*" } }, - "node_modules/@types/normalize-package-data": { + "@types/normalize-package-data": { "version": "2.4.4", "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", "dev": true }, - "node_modules/@types/parse-json": { + "@types/parse-json": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", "dev": true }, - "node_modules/@types/prop-types": { - "version": "15.7.10", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.10.tgz", - "integrity": "sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==", + "@types/prop-types": { + "version": "15.7.11", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.11.tgz", + "integrity": "sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==", "dev": true }, - "node_modules/@types/qs": { - "version": "6.9.10", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.10.tgz", - "integrity": "sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==", + "@types/qs": { + "version": "6.9.11", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.11.tgz", + "integrity": "sha512-oGk0gmhnEJK4Yyk+oI7EfXsLayXatCWPHary1MtcmbAifkobT9cM9yutG/hZKIseOU0MqbIwQ/u2nn/Gb+ltuQ==", "dev": true }, - "node_modules/@types/range-parser": { + "@types/range-parser": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", "dev": true }, - "node_modules/@types/react": { - "version": "17.0.70", - "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.70.tgz", - "integrity": "sha512-yqYMK49/cnqw+T8R9/C+RNjRddYmPDGI5lKHi3bOYceQCBAh8X2ngSbZP0gnVeyvHr0T7wEgIIGKT1usNol08w==", + "@types/react": { + "version": "17.0.75", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.75.tgz", + "integrity": "sha512-MSA+NzEzXnQKrqpO63CYqNstFjsESgvJAdAyyJ1n6ZQq/GLgf6nOfIKwk+Twuz0L1N6xPe+qz5xRCJrbhMaLsw==", "dev": true, - "dependencies": { + "requires": { "@types/prop-types": "*", "@types/scheduler": "*", "csstype": "^3.0.2" } }, - "node_modules/@types/react-dom": { - "version": "17.0.23", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.23.tgz", - "integrity": "sha512-lnJAZfMEDxfvELeeT24w4rnUYwpzUzQAOTfJQbWYnLcx8AEfz+fXJDCbowIBqNK/Bi4D6j8ovT8Qsda2OtDApA==", + "@types/react-dom": { + "version": "17.0.25", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.25.tgz", + "integrity": "sha512-urx7A7UxkZQmThYA4So0NelOVjx3V4rNFVJwp0WZlbIK5eM4rNJDiN3R/E9ix0MBh6kAEojk/9YL+Te6D9zHNA==", "dev": true, - "dependencies": { + "requires": { "@types/react": "^17" } }, - "node_modules/@types/retry": { + "@types/retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", "dev": true }, - "node_modules/@types/scheduler": { - "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.6.tgz", - "integrity": "sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==", + "@types/scheduler": { + "version": "0.16.8", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.8.tgz", + "integrity": "sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==", "dev": true }, - "node_modules/@types/semver": { - "version": "7.5.5", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.5.tgz", - "integrity": "sha512-+d+WYC1BxJ6yVOgUgzK8gWvp5qF8ssV5r4nsDcZWKRWcDQLQ619tvWAxJQYGgBrO1MnLJC7a5GtiYsAoQ47dJg==", + "@types/semver": { + "version": "7.5.6", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.6.tgz", + "integrity": "sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==", "dev": true }, - "node_modules/@types/send": { + "@types/send": { "version": "0.17.4", "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", "dev": true, - "dependencies": { + "requires": { "@types/mime": "^1", "@types/node": "*" } }, - "node_modules/@types/serve-index": { + "@types/serve-index": { "version": "1.9.4", "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "dev": true, - "dependencies": { + "requires": { "@types/express": "*" } }, - "node_modules/@types/serve-static": { + "@types/serve-static": { "version": "1.15.5", "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.5.tgz", "integrity": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==", "dev": true, - "dependencies": { + "requires": { "@types/http-errors": "*", "@types/mime": "*", "@types/node": "*" } }, - "node_modules/@types/sockjs": { + "@types/sockjs": { "version": "0.3.36", "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*" } }, - "node_modules/@types/source-list-map": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.5.tgz", - "integrity": "sha512-cHBTLeIGIREJx839cDfMLKWao+FaJOlaPz4mnFHXUzShS8sXhzw6irhvIpYvp28TbTmTeAt3v+QgHMANsGbQtA==", + "@types/source-list-map": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.6.tgz", + "integrity": "sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==", "dev": true }, - "node_modules/@types/stack-utils": { + "@types/stack-utils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true }, - "node_modules/@types/tapable": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.11.tgz", - "integrity": "sha512-R3ltemSqZ/TKOBeyy+GBfZCLX3AYpxqarIbUMNe7+lxdazJp4iWLFpmjgBeZoRiKrWNImer1oWOlG2sDR6vGaw==", + "@types/tapable": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.12.tgz", + "integrity": "sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==", "dev": true }, - "node_modules/@types/tough-cookie": { + "@types/tough-cookie": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.5.tgz", "integrity": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==", "dev": true }, - "node_modules/@types/uglify-js": { + "@types/uglify-js": { "version": "3.17.4", "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.4.tgz", "integrity": "sha512-Hm/T0kV3ywpJyMGNbsItdivRhYNCQQf1IIsYsXnoVPES4t+FMLyDe0/K+Ea7ahWtMtSNb22ZdY7MIyoD9rqARg==", "dev": true, - "dependencies": { + "requires": { "source-map": "^0.6.1" + }, + "dependencies": { + "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 + } } }, - "node_modules/@types/webpack": { - "version": "4.41.36", - "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.36.tgz", - "integrity": "sha512-pF+DVW1pMLmgsPXqJr5QimdxIzOhe8oGKB98gdqAm0egKBy1lOLD5mRxbYboMQRkpYcG7BYcpqYblpKyvE7vhQ==", + "@types/webpack": { + "version": "4.41.38", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.38.tgz", + "integrity": "sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*", "@types/tapable": "^1", "@types/uglify-js": "*", "@types/webpack-sources": "*", "anymatch": "^3.0.0", "source-map": "^0.6.0" + }, + "dependencies": { + "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 + } } }, - "node_modules/@types/webpack-sources": { + "@types/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*", "@types/source-list-map": "*", "source-map": "^0.7.3" } }, - "node_modules/@types/webpack-sources/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@types/ws": { - "version": "8.5.9", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.9.tgz", - "integrity": "sha512-jbdrY0a8lxfdTp/+r7Z4CkycbOFN8WX+IOchLJr3juT/xzbJ8URyTVSJ/hvNdadTgM1mnedb47n+Y31GsFnQlg==", + "@types/ws": { + "version": "8.5.10", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.10.tgz", + "integrity": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*" } }, - "node_modules/@types/yargs": { - "version": "17.0.31", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.31.tgz", - "integrity": "sha512-bocYSx4DI8TmdlvxqGpVNXOgCNR1Jj0gNPhhAY+iz1rgKDAaYrAYdFYnhDV1IFuiuVc9HkOwyDcFxaTElF3/wg==", + "@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", "dev": true, - "dependencies": { + "requires": { "@types/yargs-parser": "*" } }, - "node_modules/@types/yargs-parser": { + "@types/yargs-parser": { "version": "21.0.3", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "dev": true }, - "node_modules/@types/yauzl": { + "@types/yauzl": { "version": "2.10.3", "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz", "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==", "dev": true, "optional": true, - "dependencies": { + "requires": { "@types/node": "*" } }, - "node_modules/@typescript-eslint/eslint-plugin": { + "@typescript-eslint/eslint-plugin": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", "dev": true, - "dependencies": { + "requires": { "@eslint-community/regexpp": "^4.4.0", "@typescript-eslint/scope-manager": "5.62.0", "@typescript-eslint/type-utils": "5.62.0", @@ -3963,166 +3032,63 @@ "natural-compare-lite": "^1.4.0", "semver": "^7.3.7", "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@typescript-eslint/experimental-utils": { + "@typescript-eslint/experimental-utils": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/utils": "5.62.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@typescript-eslint/parser": { + "@typescript-eslint/parser": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/scope-manager": "5.62.0", "@typescript-eslint/types": "5.62.0", "@typescript-eslint/typescript-estree": "5.62.0", "debug": "^4.3.4" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } } }, - "node_modules/@typescript-eslint/scope-manager": { + "@typescript-eslint/scope-manager": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/types": "5.62.0", "@typescript-eslint/visitor-keys": "5.62.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@typescript-eslint/type-utils": { + "@typescript-eslint/type-utils": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/typescript-estree": "5.62.0", "@typescript-eslint/utils": "5.62.0", "debug": "^4.3.4", "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } } }, - "node_modules/@typescript-eslint/types": { + "@typescript-eslint/types": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } + "dev": true }, - "node_modules/@typescript-eslint/typescript-estree": { + "@typescript-eslint/typescript-estree": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/types": "5.62.0", "@typescript-eslint/visitor-keys": "5.62.0", "debug": "^4.3.4", @@ -4130,59 +3096,14 @@ "is-glob": "^4.0.3", "semver": "^7.3.7", "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@typescript-eslint/utils": { + "@typescript-eslint/utils": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", "dev": true, - "dependencies": { + "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@types/json-schema": "^7.0.9", "@types/semver": "^7.3.12", @@ -4191,161 +3112,111 @@ "@typescript-eslint/typescript-estree": "5.62.0", "eslint-scope": "^5.1.1", "semver": "^7.3.7" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@typescript-eslint/utils/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" } }, - "node_modules/@typescript-eslint/utils/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/@typescript-eslint/visitor-keys": { + "@typescript-eslint/visitor-keys": { "version": "5.62.0", "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/types": "5.62.0", "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@ungap/structured-clone": { + "@ungap/structured-clone": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", "dev": true }, - "node_modules/@webassemblyjs/ast": { + "@webassemblyjs/ast": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", "dev": true, - "dependencies": { + "requires": { "@webassemblyjs/helper-numbers": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { + "@webassemblyjs/floating-point-hex-parser": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", "dev": true }, - "node_modules/@webassemblyjs/helper-api-error": { + "@webassemblyjs/helper-api-error": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", "dev": true }, - "node_modules/@webassemblyjs/helper-buffer": { + "@webassemblyjs/helper-buffer": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", "dev": true }, - "node_modules/@webassemblyjs/helper-numbers": { + "@webassemblyjs/helper-numbers": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", "dev": true, - "dependencies": { + "requires": { "@webassemblyjs/floating-point-hex-parser": "1.11.6", "@webassemblyjs/helper-api-error": "1.11.6", "@xtuc/long": "4.2.2" } }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "@webassemblyjs/helper-wasm-bytecode": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", "dev": true }, - "node_modules/@webassemblyjs/helper-wasm-section": { + "@webassemblyjs/helper-wasm-section": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", "dev": true, - "dependencies": { + "requires": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-buffer": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/wasm-gen": "1.11.6" } }, - "node_modules/@webassemblyjs/ieee754": { + "@webassemblyjs/ieee754": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", "dev": true, - "dependencies": { + "requires": { "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/@webassemblyjs/leb128": { + "@webassemblyjs/leb128": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", "dev": true, - "dependencies": { + "requires": { "@xtuc/long": "4.2.2" } }, - "node_modules/@webassemblyjs/utf8": { + "@webassemblyjs/utf8": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", "dev": true }, - "node_modules/@webassemblyjs/wasm-edit": { + "@webassemblyjs/wasm-edit": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", "dev": true, - "dependencies": { + "requires": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-buffer": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", @@ -4356,12 +3227,12 @@ "@webassemblyjs/wast-printer": "1.11.6" } }, - "node_modules/@webassemblyjs/wasm-gen": { + "@webassemblyjs/wasm-gen": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", "dev": true, - "dependencies": { + "requires": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", "@webassemblyjs/ieee754": "1.11.6", @@ -4369,24 +3240,24 @@ "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/@webassemblyjs/wasm-opt": { + "@webassemblyjs/wasm-opt": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", "dev": true, - "dependencies": { + "requires": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-buffer": "1.11.6", "@webassemblyjs/wasm-gen": "1.11.6", "@webassemblyjs/wasm-parser": "1.11.6" } }, - "node_modules/@webassemblyjs/wasm-parser": { + "@webassemblyjs/wasm-parser": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", "dev": true, - "dependencies": { + "requires": { "@webassemblyjs/ast": "1.11.6", "@webassemblyjs/helper-api-error": "1.11.6", "@webassemblyjs/helper-wasm-bytecode": "1.11.6", @@ -4395,79 +3266,49 @@ "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/@webassemblyjs/wast-printer": { + "@webassemblyjs/wast-printer": { "version": "1.11.6", "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", "dev": true, - "dependencies": { + "requires": { "@webassemblyjs/ast": "1.11.6", "@xtuc/long": "4.2.2" } }, - "node_modules/@webpack-cli/configtest": { + "@webpack-cli/configtest": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", - "dev": true, - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - } + "dev": true }, - "node_modules/@webpack-cli/info": { + "@webpack-cli/info": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", - "dev": true, - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - } + "dev": true }, - "node_modules/@webpack-cli/serve": { + "@webpack-cli/serve": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", - "dev": true, - "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "webpack": "5.x.x", - "webpack-cli": "5.x.x" - }, - "peerDependenciesMeta": { - "webpack-dev-server": { - "optional": true - } - } + "dev": true }, - "node_modules/@woocommerce/dependency-extraction-webpack-plugin": { + "@woocommerce/dependency-extraction-webpack-plugin": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/@woocommerce/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-2.3.0.tgz", "integrity": "sha512-dfa5bBZFRKcjFpqTEXyuUKC16n85RlKQ4EamdAAqUVQedv4DMRCj2jWUcId7pN2mOFGgAp+heGgb9i6fwiZk2Q==", "dev": true, - "dependencies": { + "requires": { "@wordpress/dependency-extraction-webpack-plugin": "^3.3.0" - }, - "engines": { - "node": "^16.14.1", - "pnpm": "^8.6.7" } }, - "node_modules/@woocommerce/eslint-plugin": { + "@woocommerce/eslint-plugin": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/@woocommerce/eslint-plugin/-/eslint-plugin-2.2.0.tgz", "integrity": "sha512-Y++rzAnZL6IHaOrcuTsDvd409ry//waq/Q5+rLTGzYrMxaVB4EfcQIN72skK8bWihoebSnp3bk+WQvW5wXtJTw==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/parser": "^5.14.0", "@wordpress/eslint-plugin": "^11.0.0", "eslint-plugin-react-hooks": "^4.3.0", @@ -4475,38 +3316,29 @@ "requireindex": "^1.2.0" } }, - "node_modules/@wordpress/api-fetch": { - "version": "6.42.0", - "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-6.42.0.tgz", - "integrity": "sha512-IVXF7PoYLsaLLYiIqdktcrri9UX+tQi+Ko5mTltRZ2DDdoapcExVLtQhGu1pQl9vJ5LG1yUncLKzcbYky/i5fQ==", + "@wordpress/api-fetch": { + "version": "6.47.0", + "resolved": "https://registry.npmjs.org/@wordpress/api-fetch/-/api-fetch-6.47.0.tgz", + "integrity": "sha512-NA/jWDXoVtJmiVBYhlxts2UrgKJpJM+zTGzLCfRQCZUzpJYm3LonB8x+uCQ78nEyxCY397Esod3jnbquYjOr0Q==", "dev": true, - "dependencies": { + "requires": { "@babel/runtime": "^7.16.0", - "@wordpress/i18n": "^4.45.0", - "@wordpress/url": "^3.46.0" - }, - "engines": { - "node": ">=12" + "@wordpress/i18n": "^4.50.0", + "@wordpress/url": "^3.51.0" } }, - "node_modules/@wordpress/babel-plugin-import-jsx-pragma": { + "@wordpress/babel-plugin-import-jsx-pragma": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-import-jsx-pragma/-/babel-plugin-import-jsx-pragma-3.2.0.tgz", "integrity": "sha512-XK3Sdpi9MWoy5qPHnRroY/ypX0VtT5yI5809u5As1P/3k4vlXNw8USH4lJ+rkurAOVqqN5mFlf2XAL9AkpfXyg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "@babel/core": "^7.12.9" - } + "dev": true }, - "node_modules/@wordpress/babel-preset-default": { + "@wordpress/babel-preset-default": { "version": "6.17.0", "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-6.17.0.tgz", "integrity": "sha512-mBB1KHWT2vN+maKIPYLQSxhhAzW6CNwYiJNRSNaNBALie9TULe7etrnwoZ1eqPVsuYvBlXB4XKcPaSm3/FW+qQ==", "dev": true, - "dependencies": { + "requires": { "@babel/core": "^7.16.0", "@babel/plugin-transform-react-jsx": "^7.16.0", "@babel/plugin-transform-runtime": "^7.16.0", @@ -4519,70 +3351,53 @@ "@wordpress/warning": "^2.15.0", "browserslist": "^4.17.6", "core-js": "^3.19.1" - }, - "engines": { - "node": ">=12" } }, - "node_modules/@wordpress/base-styles": { - "version": "4.36.0", - "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-4.36.0.tgz", - "integrity": "sha512-N+Hpz6nI06Ji4mmx9vv/YSKR3XCYHnWV6v0mMehQvC9oZVjxBmo3hzWdiMrrjXFxONH9cjJUql0Cht+traFfRA==", + "@wordpress/base-styles": { + "version": "4.41.0", + "resolved": "https://registry.npmjs.org/@wordpress/base-styles/-/base-styles-4.41.0.tgz", + "integrity": "sha512-MjPAZeAqvyskDXDp2wGZ0DjtYOQLOydI1WqVIZS4wnIdhsQWQD//VMeXgLrcmCzNyQg+iKTx3o+BzmXVTOD0+w==", "dev": true }, - "node_modules/@wordpress/browserslist-config": { + "@wordpress/browserslist-config": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-4.1.3.tgz", "integrity": "sha512-M4WQ0C4zCfMWyCmK40git3rfPdNkRwg5boGjoTL4LSdhrY+rtchFAtfOHS9KovAZ5ZzTB0gyZsCu/QKZlPClog==", - "dev": true, - "engines": { - "node": ">=12" - } + "dev": true }, - "node_modules/@wordpress/dependency-extraction-webpack-plugin": { + "@wordpress/dependency-extraction-webpack-plugin": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-3.7.0.tgz", "integrity": "sha512-SHyp88D1ICSaRVMfs/kKEicjKXWf1y2wecUeZIiMtkfAi8Bnk3JsnUo11LH7drJIXfjmDoer2B2rrBMZmRm8VA==", "dev": true, - "dependencies": { + "requires": { "json2php": "^0.0.4", "webpack-sources": "^3.2.2" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "webpack": "^4.8.3 || ^5.0.0" } }, - "node_modules/@wordpress/e2e-test-utils-playwright": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-0.13.0.tgz", - "integrity": "sha512-5CRxsxKYrKjZPzINWnnwmyXEU765wKAd9r4QJYiMW4PxRnTMsoxiDbQTgJ29Uc0XjigOlvu4m0eh/+wwm/im2g==", + "@wordpress/e2e-test-utils-playwright": { + "version": "0.16.0", + "resolved": "https://registry.npmjs.org/@wordpress/e2e-test-utils-playwright/-/e2e-test-utils-playwright-0.16.0.tgz", + "integrity": "sha512-CktRj5/Cc/pAvTHXIAPIMrmmnb0VjtXbTGSjYG6pW/JI2YAmpwY2yBA+DlHJjqOIpcjDDj+sSsJomRSxT2chwQ==", "dev": true, - "dependencies": { - "@wordpress/api-fetch": "^6.42.0", - "@wordpress/keycodes": "^3.45.0", - "@wordpress/url": "^3.46.0", + "requires": { + "@wordpress/api-fetch": "^6.45.0", + "@wordpress/keycodes": "^3.48.0", + "@wordpress/url": "^3.49.0", "change-case": "^4.1.2", "form-data": "^4.0.0", "get-port": "^5.1.1", "lighthouse": "^10.4.0", - "mime": "^3.0.0" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "@playwright/test": ">=1" + "mime": "^3.0.0", + "web-vitals": "^3.5.0" } }, - "node_modules/@wordpress/element": { + "@wordpress/element": { "version": "4.20.0", "resolved": "https://registry.npmjs.org/@wordpress/element/-/element-4.20.0.tgz", "integrity": "sha512-Ou7EoGtGe4FUL6fKALINXJLKoSfyWTBJzkJfN2HzSgM1wira9EuWahl8MQN0HAUaWeOoDqMKPvnglfS+kC8JLA==", "dev": true, - "dependencies": { + "requires": { "@babel/runtime": "^7.16.0", "@types/react": "^17.0.37", "@types/react-dom": "^17.0.11", @@ -4591,75 +3406,23 @@ "is-plain-object": "^5.0.0", "react": "^17.0.2", "react-dom": "^17.0.2" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@wordpress/element/node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@wordpress/element/node_modules/react": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", - "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", - "dev": true, - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/@wordpress/element/node_modules/react-dom": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", - "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", - "dev": true, - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1", - "scheduler": "^0.20.2" - }, - "peerDependencies": { - "react": "17.0.2" - } - }, - "node_modules/@wordpress/element/node_modules/scheduler": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", - "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", - "dev": true, - "dependencies": { - "loose-envify": "^1.1.0", - "object-assign": "^4.1.1" } }, - "node_modules/@wordpress/escape-html": { - "version": "2.45.0", - "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-2.45.0.tgz", - "integrity": "sha512-Io+t/OVHxGNeaHNzwi4hVbE2mR53rVwomNz/veCMQfaswDO84LlN4PPghOQNTQVXOgQr7ruLZ5bAM/zUAMZjAw==", + "@wordpress/escape-html": { + "version": "2.50.0", + "resolved": "https://registry.npmjs.org/@wordpress/escape-html/-/escape-html-2.50.0.tgz", + "integrity": "sha512-hBvoMCEZocziZDGCmBanSO+uupnd054mxd7FQ6toQ4UnsZ4JwXSmEC72W2Ed+cRGB1DeJDD0dY9iC0b4xkumsQ==", "dev": true, - "dependencies": { + "requires": { "@babel/runtime": "^7.16.0" - }, - "engines": { - "node": ">=12" } }, - "node_modules/@wordpress/eslint-plugin": { + "@wordpress/eslint-plugin": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-11.1.0.tgz", "integrity": "sha512-NNIgJQqibdj5BsctkhCqjYt5NAs8eGBnuMSTnbhYCuUrs/PF3iF+jwY4OEOBOSlr00KyM9BfDxr9/5EWG8PmOw==", "dev": true, - "dependencies": { + "requires": { "@babel/eslint-parser": "^7.16.0", "@typescript-eslint/eslint-plugin": "^5.3.0", "@typescript-eslint/parser": "^5.3.0", @@ -4677,226 +3440,102 @@ "eslint-plugin-react-hooks": "^4.3.0", "globals": "^13.12.0", "requireindex": "^1.2.0" - }, - "engines": { - "node": ">=12", - "npm": ">=6.9" - }, - "peerDependencies": { - "@babel/core": ">=7", - "eslint": ">=8", - "prettier": ">=2", - "typescript": ">=4" - }, - "peerDependenciesMeta": { - "prettier": { - "optional": true - }, - "typescript": { - "optional": true - } - } - }, - "node_modules/@wordpress/eslint-plugin/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dev": true, - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@wordpress/eslint-plugin/node_modules/eslint-plugin-prettier": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", - "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", - "dev": true, - "dependencies": { - "prettier-linter-helpers": "^1.0.0" - }, - "engines": { - "node": ">=6.0.0" - }, - "peerDependencies": { - "eslint": ">=5.0.0", - "prettier": ">=1.13.0" - }, - "peerDependenciesMeta": { - "eslint-config-prettier": { - "optional": true - } - } - }, - "node_modules/@wordpress/eslint-plugin/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@wordpress/hooks": { - "version": "3.45.0", - "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-3.45.0.tgz", - "integrity": "sha512-cqd5Dv4lp4S5UAip2/bMm2TZiFxs7/sKNq9/73BlKFSmc9hgqgkmcctfER+nVxiYafUNGATyQmDRpJU6R3NaDw==", + "@wordpress/hooks": { + "version": "3.50.0", + "resolved": "https://registry.npmjs.org/@wordpress/hooks/-/hooks-3.50.0.tgz", + "integrity": "sha512-YIhwT1y0ss7Byfz46NBx08EUmXzWMu+g5DCY7FMuDNhwxSEoZMB8edKMiwNmFk4mFKBCnXM1d5FeONUPIUkJwg==", "dev": true, - "dependencies": { + "requires": { "@babel/runtime": "^7.16.0" - }, - "engines": { - "node": ">=12" } }, - "node_modules/@wordpress/i18n": { - "version": "4.45.0", - "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.45.0.tgz", - "integrity": "sha512-1UbUpX7uoKin/u7ouFPLgOjsF/o7q0jWorOCYaFsIUjQ0uQSkflmr2u3CC2efyKsLBFv9bZWFm4z62KGZE7Yuw==", + "@wordpress/i18n": { + "version": "4.50.0", + "resolved": "https://registry.npmjs.org/@wordpress/i18n/-/i18n-4.50.0.tgz", + "integrity": "sha512-FkA2se6HMQm4eFC+/kTWvWQqs51VxpZuvY2MlWUp/L1r1d/dMBHXu049x86+/+6yk3ZNqiK5h6j6Z76dvPHZ4w==", "dev": true, - "dependencies": { + "requires": { "@babel/runtime": "^7.16.0", - "@wordpress/hooks": "^3.45.0", + "@wordpress/hooks": "^3.50.0", "gettext-parser": "^1.3.1", "memize": "^2.1.0", "sprintf-js": "^1.1.1", "tannin": "^1.2.0" - }, - "bin": { - "pot-to-php": "tools/pot-to-php.js" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@wordpress/i18n/node_modules/gettext-parser": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.4.0.tgz", - "integrity": "sha512-sedZYLHlHeBop/gZ1jdg59hlUEcpcZJofLq2JFwJT1zTqAU3l2wFv6IsuwFHGqbiT9DWzMUW4/em2+hspnmMMA==", - "dev": true, - "dependencies": { - "encoding": "^0.1.12", - "safe-buffer": "^5.1.1" } }, - "node_modules/@wordpress/jest-console": { - "version": "7.16.0", - "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-7.16.0.tgz", - "integrity": "sha512-ft0HI9DQtLXU+RwyPQu4/mg9jZfIQsvPYQJCttvlyPGjWV9Vi14ph5ytsjXzXURTVqf7kBGnnmYdYJsbDtfqow==", + "@wordpress/jest-console": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@wordpress/jest-console/-/jest-console-7.21.0.tgz", + "integrity": "sha512-o2vZRlwwJ6WoxRwnFFT5iZzfdc2d9MZvrtwB093RWPNcyK5qVtApji4VN/ieHijB4bjEHGalm0UKfKpt0EDlUQ==", "dev": true, - "dependencies": { + "requires": { "@babel/runtime": "^7.16.0", "jest-matcher-utils": "^29.6.2" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "jest": ">=29" } }, - "node_modules/@wordpress/jest-preset-default": { - "version": "11.16.0", - "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-11.16.0.tgz", - "integrity": "sha512-R2M8dJcFenDb5hqcrrXmnFqG7BucJsEW1b4aPMuJGqUCQaBhGTSk5MLaR8TLJrbqZybR36qkF8/OJSCBAJLeag==", + "@wordpress/jest-preset-default": { + "version": "11.21.0", + "resolved": "https://registry.npmjs.org/@wordpress/jest-preset-default/-/jest-preset-default-11.21.0.tgz", + "integrity": "sha512-XAztKOROu02iBsz+Qosv/RYuPWB1XwwlU+FiA5Y68tRztrqFy4b/il+DFg4Jue/zXF7UECWUvosd5ow/GmKa6Q==", "dev": true, - "dependencies": { - "@wordpress/jest-console": "^7.16.0", + "requires": { + "@wordpress/jest-console": "^7.21.0", "babel-jest": "^29.6.2" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@babel/core": ">=7", - "jest": ">=29" } }, - "node_modules/@wordpress/keycodes": { - "version": "3.45.0", - "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-3.45.0.tgz", - "integrity": "sha512-jIlOV/lDLIr3WHfK+XYs6V6Fy6eySFjYfNCR1aTQGx2gNPZeAySUfiG+r/ZOUgND2I2v/khwalpU/eg8N7OARw==", + "@wordpress/keycodes": { + "version": "3.50.0", + "resolved": "https://registry.npmjs.org/@wordpress/keycodes/-/keycodes-3.50.0.tgz", + "integrity": "sha512-ykWpyCbgwcaT8i5kSfotYtd2oOHyMDpWEYR73InYrzEhl7pnS3wD7hi/KfeKLvMfYhbysUXlCVr6q/oH+qK/DQ==", "dev": true, - "dependencies": { + "requires": { "@babel/runtime": "^7.16.0", - "@wordpress/i18n": "^4.45.0", - "change-case": "^4.1.2" - }, - "engines": { - "node": ">=12" + "@wordpress/i18n": "^4.50.0" } }, - "node_modules/@wordpress/npm-package-json-lint-config": { - "version": "4.30.0", - "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-4.30.0.tgz", - "integrity": "sha512-DA5RDfgCN7sTr5QgncCZwHjq+jJDY0fwyL/N2Wf8+Yugz2eOMf1q1a6BO61vGc2Q9KxuQUBgu4YRbhdgu7oDzw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "npm-package-json-lint": ">=6.0.0" - } + "@wordpress/npm-package-json-lint-config": { + "version": "4.35.0", + "resolved": "https://registry.npmjs.org/@wordpress/npm-package-json-lint-config/-/npm-package-json-lint-config-4.35.0.tgz", + "integrity": "sha512-QmkhYM4/s+2r3RuolVRRmoUa5o3lFgcHA6I3A9akaSVGZr//4p2p+iXOGmNub9njgGlj7j8SAPN8GUsCO/VqZQ==", + "dev": true }, - "node_modules/@wordpress/postcss-plugins-preset": { - "version": "4.29.0", - "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-4.29.0.tgz", - "integrity": "sha512-QArbSbJ5kHDcQX/UrfOLH4hmrowU8hs3pz+lSuTjRfefoqJVotlOI1P+jEyKzGfCVcqavlngsTM0n8ozriCHcA==", + "@wordpress/postcss-plugins-preset": { + "version": "4.34.0", + "resolved": "https://registry.npmjs.org/@wordpress/postcss-plugins-preset/-/postcss-plugins-preset-4.34.0.tgz", + "integrity": "sha512-OLQBSLE2q11Ik+WdcO2QfGr/O4X/zJYOGXNsychx/EaMamLzJInFcRL6kGbPX41zPINhadq5x2vFIZI2EC+Uyg==", "dev": true, - "dependencies": { - "@wordpress/base-styles": "^4.36.0", + "requires": { + "@wordpress/base-styles": "^4.41.0", "autoprefixer": "^10.2.5" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "postcss": "^8.0.0" } }, - "node_modules/@wordpress/prettier-config": { + "@wordpress/prettier-config": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-1.4.0.tgz", "integrity": "sha512-uvrgUAhRnOvIysXjcXH9VDsrKLqH9r3BfdGoy+WFLSHFnTfdMhW7bdDQXl4F4UIUuefUwGi+ZvT/rChg9zoBkQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "prettier": ">=2" - } + "dev": true }, - "node_modules/@wordpress/scripts": { - "version": "26.16.0", - "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-26.16.0.tgz", - "integrity": "sha512-kR1UlFgDG/8XXWLanpGmgJX2TTzZa54s0xH3wWxwGlA11tYkEkiMhtcVfj1bcwBpJ/u/gHJzy2Y5MEcj80+vsg==", + "@wordpress/scripts": { + "version": "26.19.0", + "resolved": "https://registry.npmjs.org/@wordpress/scripts/-/scripts-26.19.0.tgz", + "integrity": "sha512-m3QYlgpWRfIqCfU4jWKwGeA12Qkt6d9CMewEIxIBGVlEGd/sL5rU1fM7LKNBEbSPQpaOTWJApNGWPcW75Fwp+w==", "dev": true, - "dependencies": { + "requires": { "@babel/core": "^7.16.0", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", "@svgr/webpack": "^8.0.1", - "@wordpress/babel-preset-default": "^7.29.0", - "@wordpress/browserslist-config": "^5.28.0", - "@wordpress/dependency-extraction-webpack-plugin": "^4.28.0", - "@wordpress/e2e-test-utils-playwright": "^0.13.0", - "@wordpress/eslint-plugin": "^17.2.0", - "@wordpress/jest-preset-default": "^11.16.0", - "@wordpress/npm-package-json-lint-config": "^4.30.0", - "@wordpress/postcss-plugins-preset": "^4.29.0", - "@wordpress/prettier-config": "^3.2.0", - "@wordpress/stylelint-config": "^21.28.0", + "@wordpress/babel-preset-default": "^7.32.0", + "@wordpress/browserslist-config": "^5.31.0", + "@wordpress/dependency-extraction-webpack-plugin": "^4.31.0", + "@wordpress/e2e-test-utils-playwright": "^0.16.0", + "@wordpress/eslint-plugin": "^17.5.0", + "@wordpress/jest-preset-default": "^11.19.0", + "@wordpress/npm-package-json-lint-config": "^4.33.0", + "@wordpress/postcss-plugins-preset": "^4.32.0", + "@wordpress/prettier-config": "^3.5.0", + "@wordpress/stylelint-config": "^21.31.0", "adm-zip": "^0.5.9", "babel-jest": "^29.6.2", "babel-loader": "^8.2.3", @@ -4915,7 +3554,7 @@ "fast-glob": "^3.2.7", "filenamify": "^4.2.0", "jest": "^29.6.2", - "jest-dev-server": "^6.0.2", + "jest-dev-server": "^9.0.1", "jest-environment-jsdom": "^29.6.2", "jest-environment-node": "^29.6.2", "markdownlint-cli": "^0.31.1", @@ -4924,7 +3563,7 @@ "minimist": "^1.2.0", "npm-package-json-lint": "^6.4.0", "npm-packlist": "^3.0.0", - "playwright-core": "1.32.0", + "playwright-core": "1.39.0", "postcss": "^8.4.5", "postcss-loader": "^6.2.1", "prettier": "npm:wp-prettier@3.0.3", @@ -4943,2394 +3582,1688 @@ "webpack-cli": "^5.1.4", "webpack-dev-server": "^4.15.1" }, - "bin": { - "wp-scripts": "bin/wp-scripts.js" - }, - "engines": { - "node": ">=14", - "npm": ">=6.14.4" - }, - "peerDependencies": { - "@playwright/test": "^1.32.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" + "dependencies": { + "@es-joy/jsdoccomment": { + "version": "0.41.0", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.41.0.tgz", + "integrity": "sha512-aKUhyn1QI5Ksbqcr3fFJj16p99QdjUxXAEuFst1Z47DRyoiMwivIH9MV/ARcJOCXVjPfjITciej8ZD2O/6qUmw==", + "dev": true, + "requires": { + "comment-parser": "1.4.1", + "esquery": "^1.5.0", + "jsdoc-type-pratt-parser": "~4.0.0" + } + }, + "@typescript-eslint/eslint-plugin": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", + "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", + "dev": true, + "requires": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/type-utils": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + } + }, + "@typescript-eslint/parser": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", + "dev": true, + "requires": { + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4" + } + }, + "@typescript-eslint/scope-manager": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", + "dev": true, + "requires": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" + } + }, + "@typescript-eslint/type-utils": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", + "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", + "dev": true, + "requires": { + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + } + }, + "@typescript-eslint/types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", + "dev": true, + "requires": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + } + }, + "@typescript-eslint/utils": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", + "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "semver": "^7.5.4" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", + "dev": true, + "requires": { + "@typescript-eslint/types": "6.21.0", + "eslint-visitor-keys": "^3.4.1" + } + }, + "@wordpress/babel-plugin-import-jsx-pragma": { + "version": "4.33.0", + "resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-import-jsx-pragma/-/babel-plugin-import-jsx-pragma-4.33.0.tgz", + "integrity": "sha512-CjzruFKWgzU/mO/nnQJ2l9UlzZQpqS60UC6l2vNdJ9oD2nKHR5Oou6kNic3QhWDVJrBf2JUiJJ0TC280bykXmA==", + "dev": true + }, + "@wordpress/babel-preset-default": { + "version": "7.34.0", + "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-7.34.0.tgz", + "integrity": "sha512-yjFOllyTktFHtcIEgU3ghXBn8lItzr5mPLf0xdSpe0cHceFYL1hT1oprhgRL+olZweaO96Yfm0qUCCKQfJBWsA==", + "dev": true, + "requires": { + "@babel/core": "^7.16.0", + "@babel/plugin-transform-react-jsx": "^7.16.0", + "@babel/plugin-transform-runtime": "^7.16.0", + "@babel/preset-env": "^7.16.0", + "@babel/preset-typescript": "^7.16.0", + "@babel/runtime": "^7.16.0", + "@wordpress/babel-plugin-import-jsx-pragma": "^4.33.0", + "@wordpress/browserslist-config": "^5.33.0", + "@wordpress/warning": "^2.50.0", + "browserslist": "^4.21.10", + "core-js": "^3.31.0", + "react": "^18.2.0" + } + }, + "@wordpress/browserslist-config": { + "version": "5.33.0", + "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-5.33.0.tgz", + "integrity": "sha512-dv1ZlpqGk8gaSBJPP/Z/1uOuxjtP0EBsHVKInLRu6FWLTJkK8rnCeC3xJT3/2TtJ0rasLC79RoytfhXTOODVwg==", + "dev": true + }, + "@wordpress/dependency-extraction-webpack-plugin": { + "version": "4.31.0", + "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-4.31.0.tgz", + "integrity": "sha512-Xpm8EEhi6e8GL1juYh/70AFbcE/ZVXJ3p47KMkkEsn5t+hG9QHjKe2lTj98v2r3rB+ampoK+whdV1w6gItXYpw==", + "dev": true, + "requires": { + "json2php": "^0.0.7", + "webpack-sources": "^3.2.2" + } + }, + "@wordpress/eslint-plugin": { + "version": "17.7.0", + "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-17.7.0.tgz", + "integrity": "sha512-JSFaCogE0WlZpl0SV4q8DK8G6jwDjEzXRzOsgesWilea4OuVp1KxCamkddTorRNM3QAbjrGuPJ4NYaGrNG9QsA==", + "dev": true, + "requires": { + "@babel/eslint-parser": "^7.16.0", + "@typescript-eslint/eslint-plugin": "^6.4.1", + "@typescript-eslint/parser": "^6.4.1", + "@wordpress/babel-preset-default": "^7.34.0", + "@wordpress/prettier-config": "^3.7.0", + "cosmiconfig": "^7.0.0", + "eslint-config-prettier": "^8.3.0", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-jest": "^27.2.3", + "eslint-plugin-jsdoc": "^46.4.6", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-playwright": "^0.15.3", + "eslint-plugin-prettier": "^5.0.0", + "eslint-plugin-react": "^7.27.0", + "eslint-plugin-react-hooks": "^4.3.0", + "globals": "^13.12.0", + "requireindex": "^1.2.0" + } + }, + "@wordpress/prettier-config": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-3.7.0.tgz", + "integrity": "sha512-JRTc5p7UxtcPkqdSDXSFJoJnVuS510uiRVz8anXEl5nuOx5p+SJAzi9QPrxTgOE8bN3wRABH4eIhfOcta4CFdg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "comment-parser": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz", + "integrity": "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==", + "dev": true + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint-plugin-jest": { + "version": "27.6.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.6.3.tgz", + "integrity": "sha512-+YsJFVH6R+tOiO3gCJon5oqn4KWc+mDq2leudk8mrp8RFubLOo9CVyi3cib4L7XMpxExmkmBZQTPDYVBzgpgOA==", + "dev": true, + "requires": { + "@typescript-eslint/utils": "^5.10.0" + }, + "dependencies": { + "@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + } + }, + "@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true + }, + "@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + } + }, + "@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "requires": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "requires": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + } + } + } + }, + "eslint-plugin-jsdoc": { + "version": "46.10.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.10.1.tgz", + "integrity": "sha512-x8wxIpv00Y50NyweDUpa+58ffgSAI5sqe+zcZh33xphD0AVh+1kqr1ombaTRb7Fhpove1zfUuujlX9DWWBP5ag==", + "dev": true, + "requires": { + "@es-joy/jsdoccomment": "~0.41.0", + "are-docs-informative": "^0.0.2", + "comment-parser": "1.4.1", + "debug": "^4.3.4", + "escape-string-regexp": "^4.0.0", + "esquery": "^1.5.0", + "is-builtin-module": "^3.2.1", + "semver": "^7.5.4", + "spdx-expression-parse": "^4.0.0" + } + }, + "eslint-plugin-playwright": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-playwright/-/eslint-plugin-playwright-0.15.3.tgz", + "integrity": "sha512-LQMW5y0DLK5Fnpya7JR1oAYL2/7Y9wDiYw6VZqlKqcRGSgjbVKNqxraphk7ra1U3Bb5EK444xMgUlQPbMg2M1g==", + "dev": true + }, + "eslint-plugin-prettier": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.1.3.tgz", + "integrity": "sha512-C9GCVAs4Eq7ZC/XFQHITLiHJxQngdtraXaM+LoUFoFp/lHNl2Zn8f3WQbe9HvTBBQ9YnKFB0/2Ajdqwo5D1EAw==", + "dev": true, + "requires": { + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.8.6" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "jsdoc-type-pratt-parser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", + "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", + "dev": true + }, + "json2php": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.7.tgz", + "integrity": "sha512-dnSoUiLAoVaMXxFsVi4CrPVYMKOuDBXTghXSmMINX44RZ8WM9cXlY7UqrQnlAcODCVO7FV3+8t/5nDKAjimLfg==", + "dev": true + }, + "minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "dev": true, + "requires": { + "loose-envify": "^1.1.0" + } + }, + "spdx-expression-parse": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-4.0.0.tgz", + "integrity": "sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/@wordpress/scripts/node_modules/@es-joy/jsdoccomment": { - "version": "0.41.0", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.41.0.tgz", - "integrity": "sha512-aKUhyn1QI5Ksbqcr3fFJj16p99QdjUxXAEuFst1Z47DRyoiMwivIH9MV/ARcJOCXVjPfjITciej8ZD2O/6qUmw==", + "@wordpress/stylelint-config": { + "version": "21.33.0", + "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-21.33.0.tgz", + "integrity": "sha512-DwjXrjRBva0tkYILvDV7rjl3VaKXxvchlxnFfFs6l2DWL/Qo31CJ+f2rVw4XSWuuWxY1EsyIn9tOBS9URloWTQ==", "dev": true, - "dependencies": { - "comment-parser": "1.4.1", - "esquery": "^1.5.0", - "jsdoc-type-pratt-parser": "~4.0.0" - }, - "engines": { - "node": ">=16" + "requires": { + "stylelint-config-recommended": "^6.0.0", + "stylelint-config-recommended-scss": "^5.0.2" } }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/eslint-plugin": { - "version": "6.13.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.13.1.tgz", - "integrity": "sha512-5bQDGkXaxD46bPvQt08BUz9YSaO4S0fB1LB5JHQuXTfkGPI3+UUeS387C/e9jRie5GqT8u5kFTrMvAjtX4O5kA==", + "@wordpress/url": { + "version": "3.51.0", + "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.51.0.tgz", + "integrity": "sha512-OjucjlP1763gfKbe8lv/k3RCisyX8AfNBrhASk7JqxAj6rFhb1ZZO7YmAgB2m+WoGB5v7fkOli0FZyDqISdYyg==", "dev": true, - "dependencies": { - "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "6.13.1", - "@typescript-eslint/type-utils": "6.13.1", - "@typescript-eslint/utils": "6.13.1", - "@typescript-eslint/visitor-keys": "6.13.1", - "debug": "^4.3.4", - "graphemer": "^1.4.0", - "ignore": "^5.2.4", - "natural-compare": "^1.4.0", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "requires": { + "@babel/runtime": "^7.16.0", + "remove-accents": "^0.5.0" } }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/eslint-plugin/node_modules/@typescript-eslint/utils": { - "version": "6.13.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.13.1.tgz", - "integrity": "sha512-ouPn/zVoan92JgAegesTXDB/oUp6BP1v8WpfYcqh649ejNc9Qv+B4FF2Ff626kO1xg0wWwwG48lAJ4JuesgdOw==", + "@wordpress/warning": { + "version": "2.50.0", + "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-2.50.0.tgz", + "integrity": "sha512-y7Zf48roDfiPgbRAWGXDwN3C8sfbEdneGq+HvXCW6rIeGYnDLdEkpX9i7RfultkFFPVeSP3FpMKVMkto2nbqzA==", + "dev": true + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.13.1", - "@typescript-eslint/types": "6.13.1", - "@typescript-eslint/typescript-estree": "6.13.1", - "semver": "^7.5.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "requires": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" } }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/eslint-plugin/node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true + }, + "acorn-globals": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", + "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", "dev": true, - "engines": { - "node": ">=16.13.0" - }, - "peerDependencies": { - "typescript": ">=4.2.0" + "requires": { + "acorn": "^8.1.0", + "acorn-walk": "^8.0.2" } }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/parser": { - "version": "6.13.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.13.1.tgz", - "integrity": "sha512-fs2XOhWCzRhqMmQf0eicLa/CWSaYss2feXsy7xBD/pLyWke/jCIVc2s1ikEAtSW7ina1HNhv7kONoEfVNEcdDQ==", + "acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true + }, + "acorn-walk": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.2.tgz", + "integrity": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==", + "dev": true + }, + "adm-zip": { + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz", + "integrity": "sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==", + "dev": true + }, + "agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "6.13.1", - "@typescript-eslint/types": "6.13.1", - "@typescript-eslint/typescript-estree": "6.13.1", - "@typescript-eslint/visitor-keys": "6.13.1", - "debug": "^4.3.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "requires": { + "debug": "4" } }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/scope-manager": { - "version": "6.13.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.13.1.tgz", - "integrity": "sha512-BW0kJ7ceiKi56GbT2KKzZzN+nDxzQK2DS6x0PiSMPjciPgd/JRQGMibyaN2cPt2cAvuoH0oNvn2fwonHI+4QUQ==", + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.13.1", - "@typescript-eslint/visitor-keys": "6.13.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" } }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/type-utils": { - "version": "6.13.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.13.1.tgz", - "integrity": "sha512-A2qPlgpxx2v//3meMqQyB1qqTg1h1dJvzca7TugM3Yc2USDY+fsRBiojAEo92HO7f5hW5mjAUF6qobOPzlBCBQ==", + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true + }, + "ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, - "dependencies": { - "@typescript-eslint/typescript-estree": "6.13.1", - "@typescript-eslint/utils": "6.13.1", - "debug": "^4.3.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "requires": { + "ajv": "^8.0.0" }, - "peerDependenciesMeta": { - "typescript": { - "optional": true + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true } } }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/type-utils/node_modules/@typescript-eslint/utils": { - "version": "6.13.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.13.1.tgz", - "integrity": "sha512-ouPn/zVoan92JgAegesTXDB/oUp6BP1v8WpfYcqh649ejNc9Qv+B4FF2Ff626kO1xg0wWwwG48lAJ4JuesgdOw==", - "dev": true, - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "6.13.1", - "@typescript-eslint/types": "6.13.1", - "@typescript-eslint/typescript-estree": "6.13.1", - "semver": "^7.5.4" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - } + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/type-utils/node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", - "dev": true, - "engines": { - "node": ">=16.13.0" - }, - "peerDependencies": { - "typescript": ">=4.2.0" - } + "ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/types": { - "version": "6.13.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.13.1.tgz", - "integrity": "sha512-gjeEskSmiEKKFIbnhDXUyiqVma1gRCQNbVZ1C8q7Zjcxh3WZMbzWVfGE9rHfWd1msQtPS0BVD9Jz9jded44eKg==", + "ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, - "engines": { - "node": "^16.0.0 || >=18.0.0" + "requires": { + "type-fest": "^0.21.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/typescript-estree": { - "version": "6.13.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.13.1.tgz", - "integrity": "sha512-sBLQsvOC0Q7LGcUHO5qpG1HxRgePbT6wwqOiGLpR8uOJvPJbfs0mW3jPA3ujsDvfiVwVlWUDESNXv44KtINkUQ==", - "dev": true, "dependencies": { - "@typescript-eslint/types": "6.13.1", - "@typescript-eslint/visitor-keys": "6.13.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true + "type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true } } }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/typescript-estree/node_modules/ts-api-utils": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", - "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", - "dev": true, - "engines": { - "node": ">=16.13.0" - }, - "peerDependencies": { - "typescript": ">=4.2.0" - } + "ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "dev": true }, - "node_modules/@wordpress/scripts/node_modules/@typescript-eslint/visitor-keys": { - "version": "6.13.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.13.1.tgz", - "integrity": "sha512-NDhQUy2tg6XGNBGDRm1XybOHSia8mcXmlbKWoQP+nm1BIIMxa55shyJfZkHpEBN62KNPLrocSM2PdPcaLgDKMQ==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "6.13.1", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^16.0.0 || >=18.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true }, - "node_modules/@wordpress/scripts/node_modules/@wordpress/babel-plugin-import-jsx-pragma": { - "version": "4.28.0", - "resolved": "https://registry.npmjs.org/@wordpress/babel-plugin-import-jsx-pragma/-/babel-plugin-import-jsx-pragma-4.28.0.tgz", - "integrity": "sha512-rLZgUIku7r0tI0Qxm8hLZq/0ecymtTSEL6MXesztqOMc155ZWpsTOBjOJgfiL3vaO3Hj1eZrgNKTkJbqhZNDvQ==", + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "@babel/core": "^7.12.9" + "requires": { + "color-convert": "^1.9.0" } }, - "node_modules/@wordpress/scripts/node_modules/@wordpress/babel-preset-default": { - "version": "7.29.0", - "resolved": "https://registry.npmjs.org/@wordpress/babel-preset-default/-/babel-preset-default-7.29.0.tgz", - "integrity": "sha512-MOhijDBuG+iKZaxp8k6nvq/C4XujyHCwkYEs1WZ5+vCzsdBXg3Axa7wqURyuMjJ+e7hzejyj0w6bm19woMcIiQ==", + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, - "dependencies": { - "@babel/core": "^7.16.0", - "@babel/plugin-transform-react-jsx": "^7.16.0", - "@babel/plugin-transform-runtime": "^7.16.0", - "@babel/preset-env": "^7.16.0", - "@babel/preset-typescript": "^7.16.0", - "@babel/runtime": "^7.16.0", - "@wordpress/babel-plugin-import-jsx-pragma": "^4.28.0", - "@wordpress/browserslist-config": "^5.28.0", - "@wordpress/warning": "^2.45.0", - "browserslist": "^4.21.10", - "core-js": "^3.31.0", - "react": "^18.2.0" - }, - "engines": { - "node": ">=14" + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" } }, - "node_modules/@wordpress/scripts/node_modules/@wordpress/babel-preset-default/node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dev": true, - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } + "are-docs-informative": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", + "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", + "dev": true }, - "node_modules/@wordpress/scripts/node_modules/@wordpress/browserslist-config": { - "version": "5.28.0", - "resolved": "https://registry.npmjs.org/@wordpress/browserslist-config/-/browserslist-config-5.28.0.tgz", - "integrity": "sha512-6O4mgi4mZAizyPpcKjXoXwcF7onL+BJckH3M1JnnXoa0aBb42TB3wQMTYDcGc1Kg1sRD4HWaDl53inWdmiyk7g==", + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "aria-query": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", "dev": true, - "engines": { - "node": ">=14" + "requires": { + "dequal": "^2.0.3" } }, - "node_modules/@wordpress/scripts/node_modules/@wordpress/dependency-extraction-webpack-plugin": { - "version": "4.28.0", - "resolved": "https://registry.npmjs.org/@wordpress/dependency-extraction-webpack-plugin/-/dependency-extraction-webpack-plugin-4.28.0.tgz", - "integrity": "sha512-/qfcNv6+cp+8guuNO88/inlFWf21UqeqxxcmcD+41rRfDr8+xqsHMmLwRvSip4KbT8veR2i7Gvem5H5E5x8uVA==", + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true + }, + "array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, - "dependencies": { - "json2php": "^0.0.7", - "webpack-sources": "^3.2.2" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "webpack": "^4.8.3 || ^5.0.0" + "requires": { + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" } }, - "node_modules/@wordpress/scripts/node_modules/@wordpress/eslint-plugin": { - "version": "17.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/eslint-plugin/-/eslint-plugin-17.2.0.tgz", - "integrity": "sha512-i2Gpu+hmGyqzprwyfFutHaJ1ZQRv8tYfkgC3ROdzc1yAKw4AHWSRSPWk79d6Ua87y3EIYVEffRV5cQf4nnEQAQ==", - "dev": true, - "dependencies": { - "@babel/eslint-parser": "^7.16.0", - "@typescript-eslint/eslint-plugin": "^6.4.1", - "@typescript-eslint/parser": "^6.4.1", - "@wordpress/babel-preset-default": "^7.29.0", - "@wordpress/prettier-config": "^3.2.0", - "cosmiconfig": "^7.0.0", - "eslint-config-prettier": "^8.3.0", - "eslint-plugin-import": "^2.25.2", - "eslint-plugin-jest": "^27.2.3", - "eslint-plugin-jsdoc": "^46.4.6", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-playwright": "^0.15.3", - "eslint-plugin-prettier": "^5.0.0", - "eslint-plugin-react": "^7.27.0", - "eslint-plugin-react-hooks": "^4.3.0", - "globals": "^13.12.0", - "requireindex": "^1.2.0" - }, - "engines": { - "node": ">=14", - "npm": ">=6.14.4" - }, - "peerDependencies": { - "@babel/core": ">=7", - "eslint": ">=8", - "prettier": ">=3", - "typescript": ">=4" - }, - "peerDependenciesMeta": { - "prettier": { - "optional": true - }, - "typescript": { - "optional": true - } - } + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "dev": true }, - "node_modules/@wordpress/scripts/node_modules/@wordpress/eslint-plugin/node_modules/eslint-plugin-prettier": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.0.1.tgz", - "integrity": "sha512-m3u5RnR56asrwV/lDC4GHorlW75DsFfmUcjfCYylTUs85dBRnB7VM6xG8eCMJdeDRnppzmxZVf1GEPJvl1JmNg==", + "array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", "dev": true, - "dependencies": { - "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.8.5" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/prettier" - }, - "peerDependencies": { - "@types/eslint": ">=8.0.0", - "eslint": ">=8.0.0", - "prettier": ">=3.0.0" - }, - "peerDependenciesMeta": { - "@types/eslint": { - "optional": true - }, - "eslint-config-prettier": { - "optional": true - } + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" } }, - "node_modules/@wordpress/scripts/node_modules/@wordpress/prettier-config": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@wordpress/prettier-config/-/prettier-config-3.2.0.tgz", - "integrity": "sha512-/iNBuGgUm9ul/76PrUKHzg+KVdXvsAvThz9Ui4z0HQIEBzkvNxrZnofIdH0PJ7tEVPMomkvbWmV/IR0410yfog==", - "dev": true, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "prettier": ">=3" - } + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true }, - "node_modules/@wordpress/scripts/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "array.prototype.filter": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", + "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", "dev": true, - "engines": { - "node": ">=14" + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" } }, - "node_modules/@wordpress/scripts/node_modules/comment-parser": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.4.1.tgz", - "integrity": "sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==", + "array.prototype.findlastindex": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz", + "integrity": "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==", "dev": true, - "engines": { - "node": ">= 12.0.0" + "requires": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.3.0", + "es-shim-unscopables": "^1.0.2" } }, - "node_modules/@wordpress/scripts/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", "dev": true, - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" } }, - "node_modules/@wordpress/scripts/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" } }, - "node_modules/@wordpress/scripts/node_modules/eslint-plugin-jest": { - "version": "27.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.6.0.tgz", - "integrity": "sha512-MTlusnnDMChbElsszJvrwD1dN3x6nZl//s4JD23BxB6MgR66TZlL064su24xEIS3VACfAoHV1vgyMgPw8nkdng==", + "array.prototype.tosorted": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", + "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", "dev": true, - "dependencies": { - "@typescript-eslint/utils": "^5.10.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^5.0.0 || ^6.0.0", - "eslint": "^7.0.0 || ^8.0.0", - "jest": "*" - }, - "peerDependenciesMeta": { - "@typescript-eslint/eslint-plugin": { - "optional": true - }, - "jest": { - "optional": true - } + "requires": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.1.0", + "es-shim-unscopables": "^1.0.2" } }, - "node_modules/@wordpress/scripts/node_modules/eslint-plugin-jsdoc": { - "version": "46.9.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-46.9.0.tgz", - "integrity": "sha512-UQuEtbqLNkPf5Nr/6PPRCtr9xypXY+g8y/Q7gPa0YK7eDhh0y2lWprXRnaYbW7ACgIUvpDKy9X2bZqxtGzBG9Q==", + "arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, - "dependencies": { - "@es-joy/jsdoccomment": "~0.41.0", - "are-docs-informative": "^0.0.2", - "comment-parser": "1.4.1", - "debug": "^4.3.4", - "escape-string-regexp": "^4.0.0", - "esquery": "^1.5.0", - "is-builtin-module": "^3.2.1", - "semver": "^7.5.4", - "spdx-expression-parse": "^3.0.1" - }, - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "requires": { + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" } }, - "node_modules/@wordpress/scripts/node_modules/eslint-plugin-playwright": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/eslint-plugin-playwright/-/eslint-plugin-playwright-0.15.3.tgz", - "integrity": "sha512-LQMW5y0DLK5Fnpya7JR1oAYL2/7Y9wDiYw6VZqlKqcRGSgjbVKNqxraphk7ra1U3Bb5EK444xMgUlQPbMg2M1g==", + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true + }, + "ast-types": { + "version": "0.13.4", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", "dev": true, - "peerDependencies": { - "eslint": ">=7", - "eslint-plugin-jest": ">=25" + "requires": { + "tslib": "^2.0.1" }, - "peerDependenciesMeta": { - "eslint-plugin-jest": { - "optional": true + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true } } }, - "node_modules/@wordpress/scripts/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", + "ast-types-flow": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", + "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "dev": true + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, + "asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "has-symbols": "^1.0.3" } }, - "node_modules/@wordpress/scripts/node_modules/jsdoc-type-pratt-parser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", - "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true + }, + "autoprefixer": { + "version": "10.4.17", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.17.tgz", + "integrity": "sha512-/cpVNRLSfhOtcGflT13P2794gVSgmPgTR+erw5ifnMLZb0UnSlkK4tquLmkd3BhA+nLo5tX8Cu0upUsGKvKbmg==", "dev": true, - "engines": { - "node": ">=12.0.0" + "requires": { + "browserslist": "^4.22.2", + "caniuse-lite": "^1.0.30001578", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" } }, - "node_modules/@wordpress/scripts/node_modules/json2php": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.7.tgz", - "integrity": "sha512-dnSoUiLAoVaMXxFsVi4CrPVYMKOuDBXTghXSmMINX44RZ8WM9cXlY7UqrQnlAcODCVO7FV3+8t/5nDKAjimLfg==", + "available-typed-arrays": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz", + "integrity": "sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==", "dev": true }, - "node_modules/@wordpress/scripts/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "axe-core": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", + "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", + "dev": true + }, + "axios": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.7.tgz", + "integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==", "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" + "requires": { + "follow-redirects": "^1.15.4", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" } }, - "node_modules/@wordpress/scripts/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "axobject-query": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", + "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "requires": { + "dequal": "^2.0.3" } }, - "node_modules/@wordpress/scripts/node_modules/webpack-cli": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", - "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", + "b4a": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", + "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==", + "dev": true + }, + "babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", "dev": true, - "dependencies": { - "@discoveryjs/json-ext": "^0.5.0", - "@webpack-cli/configtest": "^2.1.1", - "@webpack-cli/info": "^2.0.2", - "@webpack-cli/serve": "^2.0.5", - "colorette": "^2.0.14", - "commander": "^10.0.1", - "cross-spawn": "^7.0.3", - "envinfo": "^7.7.3", - "fastest-levenshtein": "^1.0.12", - "import-local": "^3.0.2", - "interpret": "^3.1.1", - "rechoir": "^0.8.0", - "webpack-merge": "^5.7.3" - }, - "bin": { - "webpack-cli": "bin/cli.js" - }, - "engines": { - "node": ">=14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "5.x.x" + "requires": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" }, - "peerDependenciesMeta": { - "@webpack-cli/generators": { - "optional": true + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } }, - "webpack-bundle-analyzer": { - "optional": true + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } }, - "webpack-dev-server": { - "optional": true + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "node_modules/@wordpress/scripts/node_modules/webpack-cli/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "requires": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" }, - "engines": { - "node": ">= 8" + "dependencies": { + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } } }, - "node_modules/@wordpress/scripts/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true + "babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + } }, - "node_modules/@wordpress/stylelint-config": { - "version": "21.28.0", - "resolved": "https://registry.npmjs.org/@wordpress/stylelint-config/-/stylelint-config-21.28.0.tgz", - "integrity": "sha512-qs12BO4ESUqtcOra28NIWaaUZdpGSpP+fz4lTZs9YBShMjEr5X0kpJDHWG2+8pK7xuv9mAzDwHlekTTAMVKl+w==", + "babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", "dev": true, - "dependencies": { - "stylelint-config-recommended": "^6.0.0", - "stylelint-config-recommended-scss": "^5.0.2" - }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "stylelint": "^14.2" + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" } }, - "node_modules/@wordpress/url": { - "version": "3.46.0", - "resolved": "https://registry.npmjs.org/@wordpress/url/-/url-3.46.0.tgz", - "integrity": "sha512-NlYvyW1hTmAtT11In/kbWAVvrdcSGFUOBwN7NXJgxOCqetiS99Cozmdpaz7vF7Y+DsBmSB/EnygIQv7PAqOJlg==", + "babel-plugin-polyfill-corejs2": { + "version": "0.4.8", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz", + "integrity": "sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg==", "dev": true, - "dependencies": { - "@babel/runtime": "^7.16.0", - "remove-accents": "^0.5.0" + "requires": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.5.0", + "semver": "^6.3.1" }, - "engines": { - "node": ">=12" + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/@wordpress/warning": { - "version": "2.45.0", - "resolved": "https://registry.npmjs.org/@wordpress/warning/-/warning-2.45.0.tgz", - "integrity": "sha512-cutow0USHkFWYQn4ah46gjoE9NAeq3q5fFCIXQoAK8MLuD7EVCcBmO7WvYVK0GeelHd1g7/Y7fM3GtqFFkLegg==", + "babel-plugin-polyfill-corejs3": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz", + "integrity": "sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg==", "dev": true, - "engines": { - "node": ">=12" + "requires": { + "@babel/helper-define-polyfill-provider": "^0.5.0", + "core-js-compat": "^3.34.0" } }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", - "deprecated": "Use your platform's native atob() and btoa() methods instead", - "dev": true - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "babel-plugin-polyfill-regenerator": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz", + "integrity": "sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg==", "dev": true, - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" + "requires": { + "@babel/helper-define-polyfill-provider": "^0.5.0" } }, - "node_modules/acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" } }, - "node_modules/acorn-globals": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-7.0.1.tgz", - "integrity": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==", + "babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", "dev": true, - "dependencies": { - "acorn": "^8.1.0", - "acorn-walk": "^8.0.2" + "requires": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" } }, - "node_modules/acorn-import-assertions": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", - "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", - "dev": true, - "peerDependencies": { - "acorn": "^8" - } + "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/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true }, - "node_modules/acorn-walk": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.0.tgz", - "integrity": "sha512-FS7hV565M5l1R08MXqo8odwMTB02C2UqzB17RVgu9EyuYFBqJZ3/ZY97sQD5FewVu1UyDFc1yztUDrAwT0EypA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } + "basic-ftp": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.4.tgz", + "integrity": "sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA==", + "dev": true }, - "node_modules/adm-zip": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.5.10.tgz", - "integrity": "sha512-x0HvcHqVJNTPk/Bw8JbLWlWoo6Wwnsug0fnYYro1HBrjxZ3G7/AZk7Ahv8JwDe1uIcz8eBqvu86FuF1POiG7vQ==", - "dev": true, - "engines": { - "node": ">=6.0" - } + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dev": true, - "dependencies": { - "debug": "4" - }, - "engines": { - "node": ">= 6.0.0" - } + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true }, - "node_modules/ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, - "peerDependencies": { - "ajv": ">=5.0.0" + "requires": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "body-parser": { + "version": "1.20.1", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", + "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", "dev": true, - "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" + "requires": { + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" }, - "peerDependenciesMeta": { - "ajv": { - "optional": true + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true } } }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "bonjour-service": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.2.1.tgz", + "integrity": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==", "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "requires": { + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "boolbase": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "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, - "peerDependencies": { - "ajv": "^6.9.1" + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, - "engines": { - "node": ">=6" + "requires": { + "fill-range": "^7.0.1" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "browserslist": { + "version": "4.22.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.3.tgz", + "integrity": "sha512-UAp55yfwNv0klWNapjs/ktHoguxuQNGnOzxYmfnXIS+8AsRDZkSDxg7R1AX3GKzn078SBI5dzwzj/Yx0Or0e3A==", "dev": true, - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "caniuse-lite": "^1.0.30001580", + "electron-to-chromium": "^1.4.648", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" } }, - "node_modules/ansi-escapes/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "node-int64": "^0.4.0" } }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, - "engines": [ - "node >= 0.8.0" - ], - "bin": { - "ansi-html": "bin/ansi-html" + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } + "buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } + "builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true }, - "node_modules/are-docs-informative": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/are-docs-informative/-/are-docs-informative-0.0.2.tgz", - "integrity": "sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==", + "builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", "dev": true, - "engines": { - "node": ">=14" + "requires": { + "semver": "^7.0.0" } }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "dev": true }, - "node_modules/aria-query": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", - "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "call-bind": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.6.tgz", + "integrity": "sha512-Mj50FLHtlsoVfRfnHaZvyrooHcrlceNZdL/QBvJJVd9Ta55qCQK0gs4ss2oZDeV9zFCs6ewzYgVE5yfVmfFpVg==", "dev": true, - "dependencies": { - "dequal": "^2.0.3" + "requires": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", + "set-function-length": "^1.2.0" } }, - "node_modules/arr-union": { + "callsites": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "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": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true }, - "node_modules/array-includes": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", - "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" + "requires": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + } } }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", "dev": true, - "engines": { - "node": ">=8" + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" } }, - "node_modules/array-uniq": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", - "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "caniuse-lite": { + "version": "1.0.30001585", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001585.tgz", + "integrity": "sha512-yr2BWR1yLXQ8fMpdS/4ZZXpseBgE7o4g41x3a6AJOqZuOi+iE/WdJYAuZ6Y95i4Ohd2Y+9MzIWRR+uGABH4s3Q==", + "dev": true }, - "node_modules/array.prototype.findlastindex": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", - "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" - }, - "engines": { - "node": ">= 0.4" + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.flat": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", - "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", - "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", - "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" } }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", - "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", "dev": true, + "requires": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + }, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.2.1" + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/arraybuffer.prototype.slice": { + "char-regex": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true + }, + "check-node-version": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/check-node-version/-/check-node-version-4.2.1.tgz", + "integrity": "sha512-YYmFYHV/X7kSJhuN/QYHUu998n/TRuDe8UenM3+m5NrkiH670lb9ILqHIvBencvJc4SDh+XcbXMR4b+TtubJiw==", "dev": true, - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" + "requires": { + "chalk": "^3.0.0", + "map-values": "^1.0.1", + "minimist": "^1.2.0", + "object-filter": "^1.0.2", + "run-parallel": "^1.1.4", + "semver": "^6.3.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dev": true, - "engines": { - "node": ">=0.10.0" + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" } }, - "node_modules/ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "chrome-launcher": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", + "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", "dev": true, - "dependencies": { - "tslib": "^2.0.1" + "requires": { + "@types/node": "*", + "escape-string-regexp": "^4.0.0", + "is-wsl": "^2.2.0", + "lighthouse-logger": "^1.0.0" }, - "engines": { - "node": ">=4" + "dependencies": { + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + } } }, - "node_modules/ast-types-flow": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", - "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", + "chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", "dev": true }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "chromium-bidi": { + "version": "0.4.16", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.16.tgz", + "integrity": "sha512-7ZbXdWERxRxSwo3txsBjjmc/NLxqb1Bk30mRb0BMS4YIaiV6zvKZqL/UAH+DdqcDYayDWk2n/y8klkBDODrPvA==", "dev": true, - "engines": { - "node": ">=8" + "requires": { + "mitt": "3.0.0" } }, - "node_modules/asynciterator.prototype": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", - "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", - "dev": true, - "dependencies": { - "has-symbols": "^1.0.3" - } + "ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", "dev": true }, - "node_modules/autoprefixer": { - "version": "10.4.16", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", - "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "browserslist": "^4.21.10", - "caniuse-lite": "^1.0.30001538", - "fraction.js": "^4.3.6", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" + "requires": { + "source-map": "~0.6.0" }, - "peerDependencies": { - "postcss": "^8.1.0" + "dependencies": { + "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 + } } }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "clean-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==", "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "@types/webpack": "^4.4.31", + "del": "^4.1.1" } }, - "node_modules/axe-core": { - "version": "4.7.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", - "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", + "cli": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz", + "integrity": "sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==", "dev": true, - "engines": { - "node": ">=4" + "requires": { + "exit": "0.1.2", + "glob": "^7.1.1" } }, - "node_modules/axios": { - "version": "0.25.0", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz", - "integrity": "sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==", + "cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, - "dependencies": { - "follow-redirects": "^1.14.7" + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" } }, - "node_modules/axobject-query": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", - "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", + "clone-deep": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz", + "integrity": "sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==", "dev": true, + "requires": { + "for-own": "^0.1.3", + "is-plain-object": "^2.0.1", + "kind-of": "^3.0.2", + "lazy-cache": "^1.0.3", + "shallow-clone": "^0.1.2" + }, "dependencies": { - "dequal": "^2.0.3" + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } } }, - "node_modules/b4a": { - "version": "1.6.4", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", - "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==", + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true }, - "node_modules/babel-jest": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", - "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, - "dependencies": { - "@jest/transform": "^29.7.0", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^29.6.3", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.8.0" - } - }, - "node_modules/babel-loader": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", - "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", - "dev": true, - "dependencies": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, - "engines": { - "node": ">= 8.9" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" - } - }, - "node_modules/babel-loader/node_modules/schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 8.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-jest-hoist": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", - "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", - "dev": true, - "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.6.tgz", - "integrity": "sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.3", - "semver": "^6.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.6", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.6.tgz", - "integrity": "sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==", - "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3", - "core-js-compat": "^3.33.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.3.tgz", - "integrity": "sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==", - "dev": true, - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.3" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "dev": true, - "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-preset-jest": { - "version": "29.6.3", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", - "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", - "dev": true, - "dependencies": { - "babel-plugin-jest-hoist": "^29.6.3", - "babel-preset-current-node-syntax": "^1.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "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/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/basic-ftp": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.3.tgz", - "integrity": "sha512-QHX8HLlncOLpy54mh+k/sWIFd0ThmRqwe9ZjELybGZK+tZ8rUb9VO0saKJUROTbE+KhzDUT7xziGpGrW8Kmd+g==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true - }, - "node_modules/big-integer": { - "version": "1.6.52", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", - "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", - "dev": true, - "engines": { - "node": ">=0.6" - } - }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/bl/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/body-parser": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", - "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.11.0", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/body-parser/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/body-parser/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/bonjour-service": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.1.1.tgz", - "integrity": "sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==", - "dev": true, - "dependencies": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" - } - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true - }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", - "dev": true, - "dependencies": { - "big-integer": "^1.6.44" - }, - "engines": { - "node": ">= 5.10.0" - } - }, - "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/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dev": true, - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.22.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", - "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001541", - "electron-to-chromium": "^1.4.535", - "node-releases": "^2.0.13", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true, - "engines": { - "node": "*" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true - }, - "node_modules/builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", - "dev": true, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", - "dev": true, - "dependencies": { - "semver": "^7.0.0" - } - }, - "node_modules/builtins/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/builtins/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/builtins/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/bundle-name": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", - "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", - "dev": true, - "dependencies": { - "run-applescript": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "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/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/camelcase-keys": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", - "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", - "dev": true, - "dependencies": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/camelcase-keys/node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "dev": true, - "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001562", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001562.tgz", - "integrity": "sha512-kfte3Hym//51EdX4239i+Rmp20EsLIYGdPkERegTgU19hQWCRhsRFGKHTliUlsry53tv17K7n077Kqa0WJU4ng==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/capital-case": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", - "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", - "dev": true, - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3", - "upper-case-first": "^2.0.2" - } - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/chalk/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/chalk/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/chalk/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/chalk/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/chalk/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/change-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", - "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", - "dev": true, - "dependencies": { - "camel-case": "^4.1.2", - "capital-case": "^1.0.4", - "constant-case": "^3.0.4", - "dot-case": "^3.0.4", - "header-case": "^2.0.4", - "no-case": "^3.0.4", - "param-case": "^3.0.4", - "pascal-case": "^3.1.2", - "path-case": "^3.0.4", - "sentence-case": "^3.0.4", - "snake-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/check-node-version": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/check-node-version/-/check-node-version-4.2.1.tgz", - "integrity": "sha512-YYmFYHV/X7kSJhuN/QYHUu998n/TRuDe8UenM3+m5NrkiH670lb9ILqHIvBencvJc4SDh+XcbXMR4b+TtubJiw==", - "dev": true, - "dependencies": { - "chalk": "^3.0.0", - "map-values": "^1.0.1", - "minimist": "^1.2.0", - "object-filter": "^1.0.2", - "run-parallel": "^1.1.4", - "semver": "^6.3.0" - }, - "bin": { - "check-node-version": "bin.js" - }, - "engines": { - "node": ">=8.3.0" - } - }, - "node_modules/check-node-version/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/check-node-version/node_modules/chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/check-node-version/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/check-node-version/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/check-node-version/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/check-node-version/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "dev": true - }, - "node_modules/chrome-launcher": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/chrome-launcher/-/chrome-launcher-0.15.2.tgz", - "integrity": "sha512-zdLEwNo3aUVzIhKhTtXfxhdvZhUghrnmkvcAq2NoDd+LeOHKf03H5jwZ8T/STsAlzyALkBVK552iaG1fGf1xVQ==", - "dev": true, - "dependencies": { - "@types/node": "*", - "escape-string-regexp": "^4.0.0", - "is-wsl": "^2.2.0", - "lighthouse-logger": "^1.0.0" - }, - "bin": { - "print-chrome-path": "bin/print-chrome-path.js" - }, - "engines": { - "node": ">=12.13.0" - } - }, - "node_modules/chrome-launcher/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "dev": true, - "engines": { - "node": ">=6.0" - } - }, - "node_modules/chromium-bidi": { - "version": "0.4.16", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.4.16.tgz", - "integrity": "sha512-7ZbXdWERxRxSwo3txsBjjmc/NLxqb1Bk30mRb0BMS4YIaiV6zvKZqL/UAH+DdqcDYayDWk2n/y8klkBDODrPvA==", - "dev": true, - "dependencies": { - "mitt": "3.0.0" - }, - "peerDependencies": { - "devtools-protocol": "*" - } - }, - "node_modules/ci-info": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", - "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "engines": { - "node": ">=8" - } - }, - "node_modules/cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", - "dev": true - }, - "node_modules/clean-css": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.1.tgz", - "integrity": "sha512-lCr8OHhiWCTw4v8POJovCoh4T7I9U11yVsPjMWWnnMmp9ZowCxyad1Pathle/9HjaDp+fdQKjO9fQydE6RHTZg==", - "dev": true, - "dependencies": { - "source-map": "~0.6.0" - }, - "engines": { - "node": ">= 10.0" - } - }, - "node_modules/clean-webpack-plugin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", - "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==", - "dev": true, - "dependencies": { - "@types/webpack": "^4.4.31", - "del": "^4.1.1" - }, - "engines": { - "node": ">=8.9.0" - }, - "peerDependencies": { - "webpack": "*" - } - }, - "node_modules/cli": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz", - "integrity": "sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==", - "dev": true, - "dependencies": { - "exit": "0.1.2", - "glob": "^7.1.1" - }, - "engines": { - "node": ">=0.2.5" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clone-deep": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-0.2.4.tgz", - "integrity": "sha512-we+NuQo2DHhSl+DP6jlUiAhyAjBQrYnpOk15rN6c6JSPScjiCLh8IbSU+VTcph6YS3o7mASE8a0+gbZ7ChLpgg==", - "dev": true, - "dependencies": { - "for-own": "^0.1.3", - "is-plain-object": "^2.0.1", - "kind-of": "^3.0.2", - "lazy-cache": "^1.0.3", - "shallow-clone": "^0.1.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true, - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/collect-v8-coverage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", - "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", - "dev": true - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { + "requires": { "color-name": "1.1.3" } }, - "node_modules/color-name": { + "color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, - "node_modules/colord": { + "colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", "dev": true }, - "node_modules/colorette": { + "colorette": { "version": "2.0.20", "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "dev": true }, - "node_modules/combined-stream": { + "combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dev": true, - "dependencies": { + "requires": { "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" } }, - "node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", - "dev": true, - "engines": { - "node": ">= 12" - } + "commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true }, - "node_modules/comment-parser": { + "comment-parser": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/comment-parser/-/comment-parser-1.3.0.tgz", "integrity": "sha512-hRpmWIKgzd81vn0ydoWoyPoALEOnF4wt8yKD35Ib1D6XC2siLiYaiqfGkYrunuKdsXGwpBpHU3+9r+RVw2NZfA==", - "dev": true, - "engines": { - "node": ">= 12.0.0" - } + "dev": true }, - "node_modules/common-path-prefix": { + "common-path-prefix": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", "dev": true }, - "node_modules/commondir": { + "commondir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, - "node_modules/compressible": { + "compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, - "dependencies": { + "requires": { "mime-db": ">= 1.43.0 < 2" - }, - "engines": { - "node": ">= 0.6" } }, - "node_modules/compression": { + "compression": { "version": "1.7.4", "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", "dev": true, - "dependencies": { + "requires": { "accepts": "~1.3.5", "bytes": "3.0.0", "compressible": "~2.0.16", @@ -7339,131 +5272,123 @@ "safe-buffer": "5.1.2", "vary": "~1.1.2" }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { - "ms": "2.0.0" + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + } } }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/compression/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/concat-map": { + "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "node_modules/configstore": { + "configstore": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", "integrity": "sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==", "dev": true, - "dependencies": { + "requires": { "dot-prop": "^5.2.0", "graceful-fs": "^4.1.2", "make-dir": "^3.0.0", "unique-string": "^2.0.0", "write-file-atomic": "^3.0.0", "xdg-basedir": "^4.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/connect-history-api-fallback": { + "connect-history-api-fallback": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", - "dev": true, - "engines": { - "node": ">=0.8" - } + "dev": true }, - "node_modules/console-browserify": { + "console-browserify": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", "integrity": "sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==", "dev": true, - "dependencies": { + "requires": { "date-now": "^0.1.4" } }, - "node_modules/constant-case": { + "constant-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", "dev": true, - "dependencies": { + "requires": { "no-case": "^3.0.4", "tslib": "^2.0.3", "upper-case": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/content-disposition": { + "content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, - "dependencies": { + "requires": { "safe-buffer": "5.2.1" - }, - "engines": { - "node": ">= 0.6" } }, - "node_modules/content-type": { + "content-type": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/convert-source-map": { + "convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true }, - "node_modules/cookie": { + "cookie": { "version": "0.4.2", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz", "integrity": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/cookie-signature": { + "cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true }, - "node_modules/copy-webpack-plugin": { + "copy-webpack-plugin": { "version": "10.2.4", "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-10.2.4.tgz", "integrity": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==", "dev": true, - "dependencies": { + "requires": { "fast-glob": "^3.2.7", "glob-parent": "^6.0.1", "globby": "^12.0.2", @@ -7471,199 +5396,129 @@ "schema-utils": "^4.0.0", "serialize-javascript": "^6.0.0" }, - "engines": { - "node": ">= 12.20.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - } - }, - "node_modules/copy-webpack-plugin/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/copy-webpack-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/copy-webpack-plugin/node_modules/array-union": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", - "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/copy-webpack-plugin/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/copy-webpack-plugin/node_modules/globby": { - "version": "12.2.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", - "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", - "dev": true, "dependencies": { - "array-union": "^3.0.1", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.7", - "ignore": "^5.1.9", - "merge2": "^1.4.1", - "slash": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "array-union": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-3.0.1.tgz", + "integrity": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==", + "dev": true + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "globby": { + "version": "12.2.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-12.2.0.tgz", + "integrity": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==", + "dev": true, + "requires": { + "array-union": "^3.0.1", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.7", + "ignore": "^5.1.9", + "merge2": "^1.4.1", + "slash": "^4.0.0" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, + "slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true + } } }, - "node_modules/copy-webpack-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "core-js": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", + "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", "dev": true }, - "node_modules/copy-webpack-plugin/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/copy-webpack-plugin/node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/core-js": { - "version": "3.33.2", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.33.2.tgz", - "integrity": "sha512-XeBzWI6QL3nJQiHmdzbAOiMYqjrb7hwU7A39Qhvd/POSa/t9E1AeZyEZx3fNvp/vtM8zXwhoL0FsiS0hD0pruQ==", + "core-js-compat": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.35.1.tgz", + "integrity": "sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==", "dev": true, - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "requires": { + "browserslist": "^4.22.2" } }, - "node_modules/core-js-compat": { - "version": "3.33.2", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.33.2.tgz", - "integrity": "sha512-axfo+wxFVxnqf8RvxTzoAlzW4gRoacrHeoFlc9n0x50+7BEyZL/Rt3hicaED1/CEd7I6tPCPVUYcJwCMO5XUYw==", - "dev": true, - "dependencies": { - "browserslist": "^4.22.1" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-js-pure": { - "version": "3.33.2", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.33.2.tgz", - "integrity": "sha512-a8zeCdyVk7uF2elKIGz67AjcXOxjRbwOLz8SbklEso1V+2DoW4OkAMZN9S9GBgvZIaqQi/OemFX4OiSoQEmg1Q==", - "dev": true, - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } + "core-js-pure": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.35.1.tgz", + "integrity": "sha512-zcIdi/CL3MWbBJYo5YCeVAAx+Sy9yJE9I3/u9LkFABwbeaPhTMRWraM8mYFp9jW5Z50hOy7FVzCc8dCrpZqtIQ==", + "dev": true }, - "node_modules/core-util-is": { + "core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", "dev": true }, - "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, - "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" } }, - "node_modules/create-jest": { + "create-jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", "dev": true, - "dependencies": { + "requires": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "exit": "^0.1.2", @@ -7672,195 +5527,148 @@ "jest-util": "^29.7.0", "prompts": "^2.0.1" }, - "bin": { - "create-jest": "bin/create-jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/cross-fetch": { + "cross-fetch": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-4.0.0.tgz", "integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==", "dev": true, - "dependencies": { + "requires": { "node-fetch": "^2.6.12" } }, - "node_modules/cross-spawn": { + "cross-spawn": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "dev": true, - "dependencies": { + "requires": { "lru-cache": "^4.0.1", "shebang-command": "^1.2.0", "which": "^1.2.9" - } - }, - "node_modules/cross-spawn/node_modules/lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dev": true, - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "node_modules/cross-spawn/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "dependencies": { - "shebang-regex": "^1.0.0" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cross-spawn/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cross-spawn/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" + "lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", + "dev": true + } } }, - "node_modules/cross-spawn/node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", - "dev": true - }, - "node_modules/crypto-random-string": { + "crypto-random-string": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/csp_evaluator": { + "csp_evaluator": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/csp_evaluator/-/csp_evaluator-1.1.1.tgz", "integrity": "sha512-N3ASg0C4kNPUaNxt1XAvzHIVuzdtr8KLgfk1O8WDyimp1GisPAHESupArO2ieHk9QWbrJ/WkQODyh21Ps/xhxw==", "dev": true }, - "node_modules/css-b64-images": { + "css-b64-images": { "version": "0.2.5", "resolved": "https://registry.npmjs.org/css-b64-images/-/css-b64-images-0.2.5.tgz", "integrity": "sha512-TgQBEdP07adhrDfXvI5o6bHGukKBNMzp2Ngckc/6d09zpjD2gc1Hl3Ca1CKgb8FXjHi88+Phv2Uegs2kTL4zjg==", - "dev": true, - "bin": { - "css-b64-images": "bin/css-b64-images" - }, - "engines": { - "node": "*" - } - }, - "node_modules/css-declaration-sorter": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", - "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.0.9" - } - }, - "node_modules/css-functions-list": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.1.tgz", - "integrity": "sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==", - "dev": true, - "engines": { - "node": ">=12 || >=16" - } - }, - "node_modules/css-loader": { - "version": "6.8.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.8.1.tgz", - "integrity": "sha512-xDAXtEVGlD0gJ07iclwWVkLoZOpEvAWaSyf6W18S2pOC//K8+qUDIx8IIT3D+HjnmkJPQeesOPv5aiUaJsCM2g==", - "dev": true, - "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.21", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.3", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.3.8" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/css-loader/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/css-loader/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } + "dev": true }, - "node_modules/css-loader/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "css-declaration-sorter": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz", + "integrity": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==", + "dev": true + }, + "css-functions-list": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/css-functions-list/-/css-functions-list-3.2.1.tgz", + "integrity": "sha512-Nj5YcaGgBtuUmn1D7oHqPW0c9iui7xsTsj5lIX8ZgevdfhmjFfKB3r8moHJtNJnctnYXJyYX5I1pp90HM4TPgQ==", "dev": true }, - "node_modules/css-minimizer-webpack-plugin": { + "css-loader": { + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.10.0.tgz", + "integrity": "sha512-LTSA/jWbwdMlk+rhmElbDR2vbtQoTBPr7fkJE+mxrHj+7ru0hUmHafDRzWIjIHTwpitWVaqY2/UWGRca3yUgRw==", + "dev": true, + "requires": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.33", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.4", + "postcss-modules-scope": "^3.1.1", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.5.4" + } + }, + "css-minimizer-webpack-plugin": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/css-minimizer-webpack-plugin/-/css-minimizer-webpack-plugin-5.0.1.tgz", "integrity": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==", "dev": true, - "dependencies": { + "requires": { "@jridgewell/trace-mapping": "^0.3.18", "cssnano": "^6.0.1", "jest-worker": "^29.4.3", @@ -7868,686 +5676,382 @@ "schema-utils": "^4.0.1", "serialize-javascript": "^6.0.1" }, - "engines": { - "node": ">= 14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "@parcel/css": { - "optional": true - }, - "@swc/css": { - "optional": true - }, - "clean-css": { - "optional": true + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } }, - "csso": { - "optional": true + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } }, - "esbuild": { - "optional": true + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, - "lightningcss": { - "optional": true + "schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } } } }, - "node_modules/css-minimizer-webpack-plugin/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/css-minimizer-webpack-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/css-minimizer-webpack-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/css-minimizer-webpack-plugin/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/css-select": { + "css-select": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", "dev": true, - "dependencies": { + "requires": { "boolbase": "^1.0.0", "css-what": "^6.1.0", "domhandler": "^5.0.2", "domutils": "^3.0.1", "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-select/node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dev": true, - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/css-select/node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/css-select/node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dev": true, - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/css-select/node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "dev": true, - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/css-select/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/css-tree": { + "css-tree": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "dev": true, - "dependencies": { + "requires": { "mdn-data": "2.0.30", "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/css-what": { + "css-what": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "dev": true, - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } + "dev": true }, - "node_modules/cssesc": { + "cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cssnano": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.1.tgz", - "integrity": "sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg==", - "dev": true, - "dependencies": { - "cssnano-preset-default": "^6.0.1", - "lilconfig": "^2.1.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "dev": true }, - "node_modules/cssnano-preset-default": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.1.tgz", - "integrity": "sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ==", + "cssnano": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.3.tgz", + "integrity": "sha512-MRq4CIj8pnyZpcI2qs6wswoYoDD1t0aL28n+41c1Ukcpm56m1h6mCexIHBGjfZfnTqtGSSCP4/fB1ovxgjBOiw==", "dev": true, - "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^4.0.0", - "postcss-calc": "^9.0.0", - "postcss-colormin": "^6.0.0", - "postcss-convert-values": "^6.0.0", - "postcss-discard-comments": "^6.0.0", - "postcss-discard-duplicates": "^6.0.0", - "postcss-discard-empty": "^6.0.0", - "postcss-discard-overridden": "^6.0.0", - "postcss-merge-longhand": "^6.0.0", - "postcss-merge-rules": "^6.0.1", - "postcss-minify-font-values": "^6.0.0", - "postcss-minify-gradients": "^6.0.0", - "postcss-minify-params": "^6.0.0", - "postcss-minify-selectors": "^6.0.0", - "postcss-normalize-charset": "^6.0.0", - "postcss-normalize-display-values": "^6.0.0", - "postcss-normalize-positions": "^6.0.0", - "postcss-normalize-repeat-style": "^6.0.0", - "postcss-normalize-string": "^6.0.0", - "postcss-normalize-timing-functions": "^6.0.0", - "postcss-normalize-unicode": "^6.0.0", - "postcss-normalize-url": "^6.0.0", - "postcss-normalize-whitespace": "^6.0.0", - "postcss-ordered-values": "^6.0.0", - "postcss-reduce-initial": "^6.0.0", - "postcss-reduce-transforms": "^6.0.0", - "postcss-svgo": "^6.0.0", - "postcss-unique-selectors": "^6.0.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "requires": { + "cssnano-preset-default": "^6.0.3", + "lilconfig": "^3.0.0" } }, - "node_modules/cssnano-utils": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.0.tgz", - "integrity": "sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw==", - "dev": true, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "cssnano-preset-default": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.3.tgz", + "integrity": "sha512-4y3H370aZCkT9Ev8P4SO4bZbt+AExeKhh8wTbms/X7OLDo5E7AYUUy6YPxa/uF5Grf+AJwNcCnxKhZynJ6luBA==", + "dev": true, + "requires": { + "css-declaration-sorter": "^7.1.1", + "cssnano-utils": "^4.0.1", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.0.2", + "postcss-convert-values": "^6.0.2", + "postcss-discard-comments": "^6.0.1", + "postcss-discard-duplicates": "^6.0.1", + "postcss-discard-empty": "^6.0.1", + "postcss-discard-overridden": "^6.0.1", + "postcss-merge-longhand": "^6.0.2", + "postcss-merge-rules": "^6.0.3", + "postcss-minify-font-values": "^6.0.1", + "postcss-minify-gradients": "^6.0.1", + "postcss-minify-params": "^6.0.2", + "postcss-minify-selectors": "^6.0.2", + "postcss-normalize-charset": "^6.0.1", + "postcss-normalize-display-values": "^6.0.1", + "postcss-normalize-positions": "^6.0.1", + "postcss-normalize-repeat-style": "^6.0.1", + "postcss-normalize-string": "^6.0.1", + "postcss-normalize-timing-functions": "^6.0.1", + "postcss-normalize-unicode": "^6.0.2", + "postcss-normalize-url": "^6.0.1", + "postcss-normalize-whitespace": "^6.0.1", + "postcss-ordered-values": "^6.0.1", + "postcss-reduce-initial": "^6.0.2", + "postcss-reduce-transforms": "^6.0.1", + "postcss-svgo": "^6.0.2", + "postcss-unique-selectors": "^6.0.2" + } + }, + "cssnano-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz", + "integrity": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==", + "dev": true }, - "node_modules/csso": { + "csso": { "version": "5.0.5", "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", "dev": true, - "dependencies": { + "requires": { "css-tree": "~2.2.0" }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/csso/node_modules/css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", - "dev": true, "dependencies": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" + "css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "dev": true, + "requires": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + } + }, + "mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true + } } }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", - "dev": true - }, - "node_modules/cssom": { + "cssom": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.5.0.tgz", "integrity": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==", "dev": true }, - "node_modules/cssstyle": { + "cssstyle": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, - "dependencies": { + "requires": { "cssom": "~0.3.6" }, - "engines": { - "node": ">=8" + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + } } }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - }, - "node_modules/csstype": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", - "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", + "csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", "dev": true }, - "node_modules/cwd": { + "cwd": { "version": "0.10.0", "resolved": "https://registry.npmjs.org/cwd/-/cwd-0.10.0.tgz", "integrity": "sha512-YGZxdTTL9lmLkCUTpg4j0zQ7IhRB5ZmqNBbGCl3Tg6MP/d5/6sY7L5mmTjzbc6JKgVZYiqTQTNhPFsbXNGlRaA==", "dev": true, - "dependencies": { + "requires": { "find-pkg": "^0.1.2", "fs-exists-sync": "^0.1.0" - }, - "engines": { - "node": ">=0.8" } }, - "node_modules/damerau-levenshtein": { + "damerau-levenshtein": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", "dev": true }, - "node_modules/data-uri-to-buffer": { + "data-uri-to-buffer": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.1.tgz", "integrity": "sha512-MZd3VlchQkp8rdend6vrx7MmVDJzSNTBvghvKjirLkD+WTChA3KUf0jkE68Q4UyctNqI11zZO9/x2Yx+ub5Cvg==", - "dev": true, - "engines": { - "node": ">= 14" - } + "dev": true }, - "node_modules/data-urls": { + "data-urls": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-3.0.2.tgz", "integrity": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==", "dev": true, - "dependencies": { + "requires": { "abab": "^2.0.6", "whatwg-mimetype": "^3.0.0", "whatwg-url": "^11.0.0" }, - "engines": { - "node": ">=12" - } - }, - "node_modules/data-urls/node_modules/tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/data-urls/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/data-urls/node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "dev": true, "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" + "tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "requires": { + "punycode": "^2.1.1" + } + }, + "webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true + }, + "whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "requires": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + } + } } }, - "node_modules/date-now": { + "date-now": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", "integrity": "sha512-AsElvov3LoNB7tf5k37H2jYSB+ZZPMT5sG2QjJCcdlV5chIv6htBUBUui2IKRjgtKAKtCBN7Zbwa+MtwLjSeNw==", "dev": true }, - "node_modules/debounce": { + "debounce": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", "dev": true }, - "node_modules/debug": { + "debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, - "dependencies": { + "requires": { "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } } }, - "node_modules/decamelize": { + "decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/decamelize-keys": { + "decamelize-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", "dev": true, - "dependencies": { + "requires": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" }, - "engines": { - "node": ">=0.10.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true + } } }, - "node_modules/decimal.js": { + "decimal.js": { "version": "10.4.3", "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", "dev": true }, - "node_modules/dedent": { + "dedent": { "version": "1.5.1", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", - "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", - "dev": true, - "peerDependencies": { - "babel-plugin-macros": "^3.1.0" - }, - "peerDependenciesMeta": { - "babel-plugin-macros": { - "optional": true - } - } - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/default-browser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", - "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", - "dev": true, - "dependencies": { - "bundle-name": "^3.0.0", - "default-browser-id": "^3.0.0", - "execa": "^7.1.1", - "titleize": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", - "dev": true, - "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", - "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/default-gateway/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/default-gateway/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true }, - "node_modules/default-gateway/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, + "deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true + }, + "default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "execa": "^5.0.0" } }, - "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "define-data-property": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.2.tgz", + "integrity": "sha512-SRtsSqsDbgpJBbW3pABMCOt6rQyeM8s8RiyeSN8jYG8sYmt/kGJejbydttUsnDs1tadr19tvhT4ShwMyoqAm4g==", "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.1", + "requires": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.2", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "has-property-descriptors": "^1.0.1" } }, - "node_modules/define-lazy-prop": { + "define-lazy-prop": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/define-properties": { + "define-properties": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, - "dependencies": { + "requires": { "define-data-property": "^1.0.1", "has-property-descriptors": "^1.0.0", "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/degenerator": { + "degenerator": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", "dev": true, - "dependencies": { + "requires": { "ast-types": "^0.13.4", "escodegen": "^2.1.0", "esprima": "^4.0.1" - }, - "engines": { - "node": ">= 14" } }, - "node_modules/del": { + "del": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", "dev": true, - "dependencies": { + "requires": { "@types/glob": "^7.1.1", "globby": "^6.1.0", "is-path-cwd": "^2.0.0", @@ -8556,396 +6060,311 @@ "pify": "^4.0.1", "rimraf": "^2.6.3" }, - "engines": { - "node": ">=6" - } - }, - "node_modules/del/node_modules/array-union": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", - "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", - "dev": true, - "dependencies": { - "array-uniq": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/del/node_modules/globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", - "dev": true, "dependencies": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/del/node_modules/globby/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + } + } + } } }, - "node_modules/delayed-stream": { + "delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } + "dev": true }, - "node_modules/depd": { + "depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "dev": true, - "engines": { - "node": ">= 0.8" - } + "dev": true }, - "node_modules/dequal": { + "dequal": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/destroy": { + "destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "dev": true, - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } + "dev": true }, - "node_modules/detect-newline": { + "detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/detect-node": { + "detect-node": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, - "node_modules/devtools-protocol": { + "devtools-protocol": { "version": "0.0.1155343", "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1155343.tgz", "integrity": "sha512-oD9vGBV2wTc7fAzAM6KC0chSgs234V8+qDEeK+mcbRj2UvcuA7lgBztGi/opj/iahcXD3BSj8Ymvib628yy9FA==", "dev": true }, - "node_modules/diff-sequences": { + "diff-sequences": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } + "dev": true }, - "node_modules/dir-glob": { + "dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, - "dependencies": { + "requires": { "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", - "dev": true - }, - "node_modules/dns-packet": { + "dns-packet": { "version": "5.6.1", "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "dev": true, - "dependencies": { + "requires": { "@leichtgewicht/ip-codec": "^2.0.1" - }, - "engines": { - "node": ">=6" } }, - "node_modules/doctrine": { + "doctrine": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, - "dependencies": { + "requires": { "esutils": "^2.0.2" - }, - "engines": { - "node": ">=0.10.0" } }, - "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==", + "dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dev": true, - "dependencies": { - "domelementtype": "^2.0.1", - "entities": "^2.0.0" + "requires": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" } }, - "node_modules/dom-serializer/node_modules/domelementtype": { + "domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "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/domexception": { + "domexception": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/domexception/-/domexception-4.0.0.tgz", "integrity": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==", - "deprecated": "Use your platform's native DOMException instead", "dev": true, - "dependencies": { + "requires": { "webidl-conversions": "^7.0.0" }, - "engines": { - "node": ">=12" - } - }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true, - "engines": { - "node": ">=12" + "dependencies": { + "webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true + } } }, - "node_modules/domhandler": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz", - "integrity": "sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==", + "domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dev": true, - "dependencies": { - "domelementtype": "1" + "requires": { + "domelementtype": "^2.3.0" } }, - "node_modules/domutils": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", - "integrity": "sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==", + "domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", "dev": true, - "dependencies": { - "dom-serializer": "0", - "domelementtype": "1" + "requires": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" } }, - "node_modules/dot-case": { + "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": { + "requires": { "no-case": "^3.0.4", "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/dot-prop": { + "dot-prop": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, - "dependencies": { + "requires": { "is-obj": "^2.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/duplexer": { + "duplexer": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, - "node_modules/ee-first": { + "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true }, - "node_modules/electron-to-chromium": { - "version": "1.4.582", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.582.tgz", - "integrity": "sha512-89o0MGoocwYbzqUUjc+VNpeOFSOK9nIdC5wY4N+PVUarUK0MtjyTjks75AZS2bW4Kl8MdewdFsWaH0jLy+JNoA==", + "electron-to-chromium": { + "version": "1.4.661", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.661.tgz", + "integrity": "sha512-AFg4wDHSOk5F+zA8aR+SVIOabu7m0e7BiJnigCvPXzIGy731XENw/lmNxTySpVFtkFEy+eyt4oHhh5FF3NjQNw==", "dev": true }, - "node_modules/emittery": { + "emittery": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" - } + "dev": true }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true }, - "node_modules/emojis-list": { + "emojis-list": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true, - "engines": { - "node": ">= 4" - } + "dev": true }, - "node_modules/encodeurl": { + "encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "dev": true, - "engines": { - "node": ">= 0.8" - } + "dev": true }, - "node_modules/encoding": { + "encoding": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", "dev": true, - "dependencies": { + "requires": { "iconv-lite": "^0.6.2" } }, - "node_modules/end-of-stream": { + "end-of-stream": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dev": true, - "dependencies": { + "requires": { "once": "^1.4.0" } }, - "node_modules/enhanced-resolve": { + "enhanced-resolve": { "version": "5.15.0", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", "dev": true, - "dependencies": { + "requires": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" } }, - "node_modules/enquirer": { + "enquirer": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.4.1.tgz", "integrity": "sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==", "dev": true, - "dependencies": { + "requires": { "ansi-colors": "^4.1.1", "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8.6" } }, - "node_modules/entities": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz", - "integrity": "sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==", + "entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "dev": true }, - "node_modules/envinfo": { - "version": "7.11.0", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.0.tgz", - "integrity": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==", - "dev": true, - "bin": { - "envinfo": "dist/cli.js" - }, - "engines": { - "node": ">=4" - } + "envinfo": { + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.11.1.tgz", + "integrity": "sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==", + "dev": true }, - "node_modules/error-ex": { + "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, - "dependencies": { + "requires": { "is-arrayish": "^0.2.1" } }, - "node_modules/error-stack-parser": { + "error-stack-parser": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", "dev": true, - "dependencies": { + "requires": { "stackframe": "^1.3.4" } }, - "node_modules/es-abstract": { + "es-abstract": { "version": "1.22.3", "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", "dev": true, - "dependencies": { + "requires": { "array-buffer-byte-length": "^1.0.0", "arraybuffer.prototype.slice": "^1.0.2", "available-typed-arrays": "^1.0.5", @@ -8985,20 +6404,26 @@ "typed-array-length": "^1.0.4", "unbox-primitive": "^1.0.2", "which-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/es-iterator-helpers": { + "es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true + }, + "es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true + }, + "es-iterator-helpers": { "version": "1.0.15", "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", "dev": true, - "dependencies": { + "requires": { "asynciterator.prototype": "^1.0.0", "call-bind": "^1.0.2", "define-properties": "^1.2.1", @@ -9015,107 +6440,98 @@ "safe-array-concat": "^1.0.1" } }, - "node_modules/es-module-lexer": { + "es-module-lexer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", "dev": true }, - "node_modules/es-set-tostringtag": { + "es-set-tostringtag": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", "dev": true, - "dependencies": { + "requires": { "get-intrinsic": "^1.2.2", "has-tostringtag": "^1.0.0", "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" } }, - "node_modules/es-shim-unscopables": { + "es-shim-unscopables": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "dev": true, - "dependencies": { + "requires": { "hasown": "^2.0.0" } }, - "node_modules/es-to-primitive": { + "es-to-primitive": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, - "dependencies": { + "requires": { "is-callable": "^1.1.4", "is-date-object": "^1.0.1", "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "dev": true, - "engines": { - "node": ">=6" - } + "escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "dev": true }, - "node_modules/escape-html": { + "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, - "node_modules/escape-string-regexp": { + "escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } + "dev": true }, - "node_modules/escodegen": { + "escodegen": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", "dev": true, - "dependencies": { + "requires": { "esprima": "^4.0.1", "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" - }, - "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { + "esutils": "^2.0.2", "source-map": "~0.6.1" + }, + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "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, + "optional": true + } } }, - "node_modules/eslint": { - "version": "8.53.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", - "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", + "eslint": { + "version": "8.56.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", + "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", "dev": true, - "dependencies": { + "requires": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.3", - "@eslint/js": "8.53.0", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.56.0", "@humanwhocodes/config-array": "^0.11.13", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", @@ -9151,80 +6567,193 @@ "strip-ansi": "^6.0.1", "text-table": "^0.2.0" }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + } + }, + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "requires": { + "is-glob": "^4.0.3" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } } }, - "node_modules/eslint-config-prettier": { + "eslint-config-prettier": { "version": "8.10.0", "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", - "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } + "dev": true }, - "node_modules/eslint-import-resolver-node": { + "eslint-import-resolver-node": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", "dev": true, - "dependencies": { + "requires": { "debug": "^3.2.7", "is-core-module": "^2.13.0", "resolve": "^1.22.4" - } - }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, + }, "dependencies": { - "ms": "^2.1.1" + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } } }, - "node_modules/eslint-module-utils": { + "eslint-module-utils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", "dev": true, - "dependencies": { + "requires": { "debug": "^3.2.7" }, - "engines": { - "node": ">=4" - }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, "dependencies": { - "ms": "^2.1.1" + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } } }, - "node_modules/eslint-plugin-import": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", - "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", + "eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", "dev": true, - "dependencies": { + "requires": { "array-includes": "^3.1.7", "array.prototype.findlastindex": "^1.2.3", "array.prototype.flat": "^1.3.2", @@ -9232,75 +6761,50 @@ "debug": "^3.2.7", "doctrine": "^2.1.0", "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.8.0", - "hasown": "^2.0.0", - "is-core-module": "^2.13.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.fromentries": "^2.0.7", - "object.groupby": "^1.0.1", - "object.values": "^1.1.7", - "semver": "^6.3.1", - "tsconfig-paths": "^3.14.2" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" - } - }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" - } - }, - "node_modules/eslint-plugin-import/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" }, - "engines": { - "node": "*" + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/eslint-plugin-jest": { + "eslint-plugin-jest": { "version": "25.7.0", "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", "dev": true, - "dependencies": { + "requires": { "@typescript-eslint/experimental-utils": "^5.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - }, - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "@typescript-eslint/eslint-plugin": { - "optional": true - }, - "jest": { - "optional": true - } } }, - "node_modules/eslint-plugin-jsdoc": { + "eslint-plugin-jsdoc": { "version": "37.9.7", "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-37.9.7.tgz", "integrity": "sha512-8alON8yYcStY94o0HycU2zkLKQdcS+qhhOUNQpfONHHwvI99afbmfpYuPqf6PbLz5pLZldG3Te5I0RbAiTN42g==", "dev": true, - "dependencies": { + "requires": { "@es-joy/jsdoccomment": "~0.20.1", "comment-parser": "1.3.0", "debug": "^4.3.3", @@ -9310,64 +6814,21 @@ "semver": "^7.3.5", "spdx-expression-parse": "^3.0.1" }, - "engines": { - "node": "^12 || ^14 || ^16 || ^17" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" - } - }, - "node_modules/eslint-plugin-jsdoc/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint-plugin-jsdoc/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/eslint-plugin-jsdoc/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + } } }, - "node_modules/eslint-plugin-jsdoc/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/eslint-plugin-jsx-a11y": { + "eslint-plugin-jsx-a11y": { "version": "6.8.0", "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", "dev": true, - "dependencies": { + "requires": { "@babel/runtime": "^7.23.2", "aria-query": "^5.3.0", "array-includes": "^3.1.7", @@ -9384,671 +6845,284 @@ "minimatch": "^3.1.2", "object.entries": "^1.1.7", "object.fromentries": "^2.0.7" - }, - "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/axe-core": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", - "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/eslint-plugin-jsx-a11y/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" } }, - "node_modules/eslint-plugin-playwright": { + "eslint-plugin-playwright": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/eslint-plugin-playwright/-/eslint-plugin-playwright-0.8.0.tgz", "integrity": "sha512-9uJH25m6H3jwU5O7bHD5M8cLx46L72EnIUe3dZqTox6M+WzOFzeUWaDJHHCdLGXZ8XlAU4mbCZnP7uhjKepfRA==", + "dev": true + }, + "eslint-plugin-prettier": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-3.4.1.tgz", + "integrity": "sha512-htg25EUYUeIhKHXjOinK4BgCcDwtLHjqaxCDsMy5nbnUMkKFvIhMVCp+5GFUXQ4Nr8lBsPqtGAqBenbpFqAA2g==", "dev": true, - "peerDependencies": { - "eslint": ">=7", - "eslint-plugin-jest": ">=24" - }, - "peerDependenciesMeta": { - "eslint-plugin-jest": { - "optional": true - } - } - }, - "node_modules/eslint-plugin-react": { - "version": "7.33.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", - "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", - "dev": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "es-iterator-helpers": "^1.0.12", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.1", - "string.prototype.matchall": "^4.0.8" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" - } - }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", - "dev": true, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" - } - }, - "node_modules/eslint-plugin-react/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.5", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", - "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", - "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/eslint-plugin-testing-library": { - "version": "5.11.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", - "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", - "dev": true, - "dependencies": { - "@typescript-eslint/utils": "^5.58.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0", - "npm": ">=6" - }, - "peerDependencies": { - "eslint": "^7.5.0 || ^8.0.0" - } - }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/eslint-scope/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/eslint/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/eslint/node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "dev": true, - "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", - "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", - "dev": true, - "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/eslint/node_modules/globals": { - "version": "13.23.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", - "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", - "dev": true, - "dependencies": { - "type-fest": "^0.20.2" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/eslint/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "prettier-linter-helpers": "^1.0.0" } }, - "node_modules/eslint/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", "dev": true, - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" + "requires": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + }, + "resolve": { + "version": "2.0.0-next.5", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", + "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/eslint/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true + }, + "eslint-plugin-testing-library": { + "version": "5.11.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-5.11.1.tgz", + "integrity": "sha512-5eX9e1Kc2PqVRed3taaLnAAqPZGEX75C+M/rXzUAI3wIg/ZxzUm1OVAwfe/O+vE+6YXOLetSe9g5GKD2ecXipw==", "dev": true, - "engines": { - "node": ">=8" + "requires": { + "@typescript-eslint/utils": "^5.58.0" } }, - "node_modules/eslint/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" } }, - "node_modules/espree": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, - "dependencies": { - "acorn": "^8.8.0", + "requires": { + "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "eslint-visitor-keys": "^3.4.1" } }, - "node_modules/esprima": { + "esprima": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/esquery": { + "esquery": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, - "dependencies": { + "requires": { "estraverse": "^5.1.0" }, - "engines": { - "node": ">=0.10" + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } } }, - "node_modules/esrecurse": { + "esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "dependencies": { + "requires": { "estraverse": "^5.2.0" }, - "engines": { - "node": ">=4.0" + "dependencies": { + "estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true + } } }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "engines": { - "node": ">=4.0" - } + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true }, - "node_modules/esutils": { + "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/etag": { + "etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/eventemitter3": { + "eventemitter3": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "dev": true }, - "node_modules/events": { + "events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "dev": true, - "engines": { - "node": ">=0.8.x" - } + "dev": true }, - "node_modules/execa": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", - "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "dependencies": { + "requires": { "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/execa/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/execa/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/execa/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", - "dev": true, - "engines": { - "node": ">=14.18.0" - } - }, - "node_modules/execa/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/execa/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/execa/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/execa/node_modules/npm-run-path/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/execa/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/execa/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } } }, - "node_modules/exit": { + "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } + "dev": true }, - "node_modules/expand-tilde": { + "expand-tilde": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz", "integrity": "sha512-rtmc+cjLZqnu9dSYosX9EWmSJhTwpACgJQTfj4hgg2JjOD/6SIQalZrt4a3aQeh++oNxkazcaxrhPUj6+g5G/Q==", "dev": true, - "dependencies": { + "requires": { "os-homedir": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/expect": { + "expect": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", "dev": true, - "dependencies": { + "requires": { "@jest/expect-utils": "^29.7.0", "jest-get-type": "^29.6.3", "jest-matcher-utils": "^29.7.0", "jest-message-util": "^29.7.0", "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/expect-puppeteer": { + "expect-puppeteer": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/expect-puppeteer/-/expect-puppeteer-4.4.0.tgz", "integrity": "sha512-6Ey4Xy2xvmuQu7z7YQtMsaMV0EHJRpVxIDOd5GRrm04/I3nkTKIutELfECsLp6le+b3SSa3cXhPiw6PgqzxYWA==", "dev": true }, - "node_modules/express": { + "express": { "version": "4.18.2", "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz", "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==", "dev": true, - "dependencies": { + "requires": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.1", @@ -10081,210 +7155,168 @@ "utils-merge": "1.0.1", "vary": "~1.1.2" }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/express/node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "node_modules/express/node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { - "ms": "2.0.0" + "cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } } }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/extract-zip": { + "extract-zip": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", "dev": true, - "dependencies": { + "requires": { + "@types/yauzl": "^2.9.1", "debug": "^4.1.1", "get-stream": "^5.1.0", "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" - }, - "engines": { - "node": ">= 10.17.0" - }, - "optionalDependencies": { - "@types/yauzl": "^2.9.1" } }, - "node_modules/fast-deep-equal": { + "fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true }, - "node_modules/fast-diff": { + "fast-diff": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", "dev": true }, - "node_modules/fast-fifo": { + "fast-fifo": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", "dev": true }, - "node_modules/fast-glob": { + "fast-glob": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, - "dependencies": { + "requires": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" } }, - "node_modules/fast-json-stable-stringify": { + "fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true }, - "node_modules/fast-levenshtein": { + "fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, - "node_modules/fastest-levenshtein": { + "fastest-levenshtein": { "version": "1.0.16", "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", - "dev": true, - "engines": { - "node": ">= 4.9.1" - } + "dev": true }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", "dev": true, - "dependencies": { + "requires": { "reusify": "^1.0.4" } }, - "node_modules/faye-websocket": { + "faye-websocket": { "version": "0.11.4", "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, - "dependencies": { + "requires": { "websocket-driver": ">=0.5.1" - }, - "engines": { - "node": ">=0.8.0" } }, - "node_modules/fb-watchman": { + "fb-watchman": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, - "dependencies": { + "requires": { "bser": "2.1.1" } }, - "node_modules/fd-slicer": { + "fd-slicer": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "dev": true, - "dependencies": { + "requires": { "pend": "~1.2.0" } }, - "node_modules/file-entry-cache": { + "file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, - "dependencies": { + "requires": { "flat-cache": "^3.0.4" - }, - "engines": { - "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/filename-reserved-regex": { + "filename-reserved-regex": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", - "dev": true, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/filenamify": { + "filenamify": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-4.3.0.tgz", "integrity": "sha512-hcFKyUG57yWGAzu1CMt/dPzYZuv+jAJUT85bL8mrXvNe6hWj6yEHEc4EdcgiA6Z3oi1/9wXJdZPXF2dZNgwgOg==", "dev": true, - "dependencies": { + "requires": { "filename-reserved-regex": "^2.0.0", "strip-outer": "^1.0.1", "trim-repeated": "^1.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fill-range": { + "fill-range": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, - "dependencies": { + "requires": { "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" } }, - "node_modules/finalhandler": { + "finalhandler": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, - "dependencies": { + "requires": { "debug": "2.6.9", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", @@ -10293,878 +7325,683 @@ "statuses": "2.0.1", "unpipe": "~1.0.0" }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { - "ms": "2.0.0" + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } } }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/find-cache-dir": { + "find-cache-dir": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, - "dependencies": { + "requires": { "commondir": "^1.0.1", "make-dir": "^3.0.2", "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, - "node_modules/find-file-up": { + "find-file-up": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/find-file-up/-/find-file-up-0.1.3.tgz", "integrity": "sha512-mBxmNbVyjg1LQIIpgO8hN+ybWBgDQK8qjht+EbrTCGmmPV/sc7RF1i9stPTD6bpvXZywBdrwRYxhSdJv867L6A==", "dev": true, - "dependencies": { + "requires": { "fs-exists-sync": "^0.1.0", "resolve-dir": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/find-parent-dir": { + "find-parent-dir": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/find-parent-dir/-/find-parent-dir-0.3.1.tgz", "integrity": "sha512-o4UcykWV/XN9wm+jMEtWLPlV8RXCZnMhQI6F6OdHeSez7iiJWePw8ijOlskJZMsaQoGR/b7dH6lO02HhaTN7+A==", "dev": true }, - "node_modules/find-pkg": { + "find-pkg": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/find-pkg/-/find-pkg-0.1.2.tgz", "integrity": "sha512-0rnQWcFwZr7eO0513HahrWafsc3CTFioEB7DRiEYCUM/70QXSY8f3mCST17HXLcPvEhzH/Ty/Bxd72ZZsr/yvw==", "dev": true, - "dependencies": { + "requires": { "find-file-up": "^0.1.2" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/find-process": { + "find-process": { "version": "1.4.7", "resolved": "https://registry.npmjs.org/find-process/-/find-process-1.4.7.tgz", "integrity": "sha512-/U4CYp1214Xrp3u3Fqr9yNynUrr5Le4y0SsJh2lMDDSbpwYSz3M2SMWQC+wqcx79cN8PQtHQIL8KnuY9M66fdg==", "dev": true, - "dependencies": { + "requires": { "chalk": "^4.0.0", "commander": "^5.1.0", "debug": "^4.1.1" }, - "bin": { - "find-process": "bin/find-process.js" - } - }, - "node_modules/find-process/node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "dev": true, - "engines": { - "node": ">= 6" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/find-up": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", - "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, - "dependencies": { - "locate-path": "^7.1.0", - "path-exists": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" } }, - "node_modules/flat": { + "flat": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "dev": true, - "bin": { - "flat": "cli.js" - } + "dev": true }, - "node_modules/flat-cache": { + "flat-cache": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, - "dependencies": { + "requires": { "flatted": "^3.2.9", "keyv": "^4.5.3", "rimraf": "^3.0.2" }, - "engines": { - "node": "^10.12.0 || >=12.0.0" - } - }, - "node_modules/flat-cache/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } } }, - "node_modules/flatted": { + "flatted": { "version": "3.2.9", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", "dev": true }, - "node_modules/follow-redirects": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", - "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } + "follow-redirects": { + "version": "1.15.5", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz", + "integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==", + "dev": true }, - "node_modules/for-each": { + "for-each": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, - "dependencies": { + "requires": { "is-callable": "^1.1.3" } }, - "node_modules/for-in": { + "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/for-own": { + "for-own": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", "integrity": "sha512-SKmowqGTJoPzLO1T0BBJpkfp3EMacCMOuH40hOUbrbzElVktk4DioXVM99QkLCyKoiuOmyjgcWMpVz2xjE7LZw==", "dev": true, - "dependencies": { + "requires": { "for-in": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/form-data": { + "form-data": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, - "dependencies": { + "requires": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" } }, - "node_modules/forwarded": { + "forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/fraction.js": { + "fraction.js": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "dev": true, - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" - } + "dev": true }, - "node_modules/fresh": { + "fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/fs-constants": { + "fs-constants": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true }, - "node_modules/fs-exists-sync": { + "fs-exists-sync": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz", "integrity": "sha512-cR/vflFyPZtrN6b38ZyWxpWdhlXrzZEBawlpBQMq7033xVY7/kg0GDMBK5jg8lDYQckdJ5x/YC88lM3C7VMsLg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/fs-extra": { + "fs-extra": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", "dev": true, - "dependencies": { + "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^4.0.0", "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" } }, - "node_modules/fs-monkey": { + "fs-monkey": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", "dev": true }, - "node_modules/fs.realpath": { + "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true }, - "node_modules/fsevents": { + "fsevents": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } + "optional": true }, - "node_modules/function-bind": { + "function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/function.prototype.name": { + "function.prototype.name": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/functions-have-names": { + "functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/gensync": { + "gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } + "dev": true }, - "node_modules/get-caller-file": { + "get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } + "dev": true }, - "node_modules/get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dev": true, - "dependencies": { + "requires": { + "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-package-type": { + "get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } + "dev": true }, - "node_modules/get-port": { + "get-port": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/get-stdin": { + "get-stdin": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/get-stream": { + "get-stream": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "dev": true, - "dependencies": { + "requires": { "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" } }, - "node_modules/get-uri": { + "get-uri": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.2.tgz", "integrity": "sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw==", "dev": true, - "dependencies": { + "requires": { "basic-ftp": "^5.0.2", "data-uri-to-buffer": "^6.0.0", "debug": "^4.3.4", "fs-extra": "^8.1.0" - }, - "engines": { - "node": ">= 14" } }, - "node_modules/glob": { + "gettext-parser": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.4.0.tgz", + "integrity": "sha512-sedZYLHlHeBop/gZ1jdg59hlUEcpcZJofLq2JFwJT1zTqAU3l2wFv6IsuwFHGqbiT9DWzMUW4/em2+hspnmMMA==", + "dev": true, + "requires": { + "encoding": "^0.1.12", + "safe-buffer": "^5.1.1" + } + }, + "glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, - "dependencies": { + "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/glob-parent": { + "glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "dependencies": { + "requires": { "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" } }, - "node_modules/glob-to-regexp": { + "glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "dev": true }, - "node_modules/glob/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/global-modules": { + "global-modules": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz", "integrity": "sha512-JeXuCbvYzYXcwE6acL9V2bAOeSIGl4dD+iwLY9iUx2VBJJ80R18HCn+JCwHM9Oegdfya3lEkGCdaRkSyc10hDA==", "dev": true, - "dependencies": { + "requires": { "global-prefix": "^0.1.4", "is-windows": "^0.2.0" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/global-prefix": { + "global-prefix": { "version": "0.1.5", "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz", "integrity": "sha512-gOPiyxcD9dJGCEArAhF4Hd0BAqvAe/JzERP7tYumE4yIkmIedPUVXcJFWbV3/p/ovIIvKjkrTk+f1UVkq7vvbw==", "dev": true, - "dependencies": { + "requires": { "homedir-polyfill": "^1.0.0", "ini": "^1.3.4", "is-windows": "^0.2.0", "which": "^1.2.12" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" } }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, - "engines": { - "node": ">=4" + "requires": { + "type-fest": "^0.20.2" } }, - "node_modules/globalthis": { + "globalthis": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, - "dependencies": { + "requires": { "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/globby": { + "globby": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, - "dependencies": { + "requires": { "array-union": "^2.1.0", "dir-glob": "^3.0.1", "fast-glob": "^3.2.9", "ignore": "^5.2.0", "merge2": "^1.4.1", "slash": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globjoin": { + "globjoin": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/globjoin/-/globjoin-0.1.4.tgz", "integrity": "sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==", "dev": true }, - "node_modules/gopd": { + "gopd": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, - "dependencies": { + "requires": { "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/graceful-fs": { + "graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, - "node_modules/graphemer": { + "graphemer": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true }, - "node_modules/gzip-size": { + "gzip-size": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "dev": true, - "dependencies": { + "requires": { "duplexer": "^0.1.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/handle-thing": { + "handle-thing": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "dev": true }, - "node_modules/hard-rejection": { + "hard-rejection": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/has-bigints": { + "has-bigints": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/has-flag": { + "has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/has-property-descriptors": { + "has-property-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", "dev": true, - "dependencies": { + "requires": { "get-intrinsic": "^1.2.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-proto": { + "has-proto": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/has-symbols": { + "has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, - "dependencies": { - "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "has-symbols": "^1.0.3" } }, - "node_modules/hasown": { + "hasown": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", "dev": true, - "dependencies": { + "requires": { "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" } }, - "node_modules/he": { + "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" - } + "dev": true }, - "node_modules/header-case": { + "header-case": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", "dev": true, - "dependencies": { + "requires": { "capital-case": "^1.0.4", "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/homedir-polyfill": { + "homedir-polyfill": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", "dev": true, - "dependencies": { + "requires": { "parse-passwd": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/hosted-git-info": { + "hosted-git-info": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, - "dependencies": { + "requires": { "lru-cache": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/hosted-git-info/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" } }, - "node_modules/hosted-git-info/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/hpack.js": { + "hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, - "dependencies": { + "requires": { "inherits": "^2.0.1", "obuf": "^1.0.0", "readable-stream": "^2.0.1", "wbuf": "^1.1.0" - } - }, - "node_modules/hpack.js/node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true - }, - "node_modules/hpack.js/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/hpack.js/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "node_modules/hpack.js/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, + }, "dependencies": { - "safe-buffer": "~5.1.0" + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } } }, - "node_modules/html-encoding-sniffer": { + "html-encoding-sniffer": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", "dev": true, - "dependencies": { + "requires": { "whatwg-encoding": "^2.0.0" - }, - "engines": { - "node": ">=12" } }, - "node_modules/html-entities": { + "html-entities": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ] + "dev": true }, - "node_modules/html-escaper": { + "html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "node_modules/html-minifier-terser": { + "html-minifier-terser": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "dev": true, - "dependencies": { + "requires": { "camel-case": "^4.1.2", "clean-css": "^5.2.2", "commander": "^8.3.0", @@ -11173,1088 +8010,816 @@ "relateurl": "^0.2.7", "terser": "^5.10.0" }, - "bin": { - "html-minifier-terser": "cli.js" - }, - "engines": { - "node": ">=12" + "dependencies": { + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true + } } }, - "node_modules/html-tags": { + "html-tags": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/htmlparser2": { + "htmlparser2": { "version": "3.8.3", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", "integrity": "sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==", "dev": true, - "dependencies": { + "requires": { "domelementtype": "1", "domhandler": "2.3", "domutils": "1.5", "entities": "1.0", "readable-stream": "1.1" + }, + "dependencies": { + "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, + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true + } + } + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "dev": true + }, + "domhandler": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz", + "integrity": "sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==", + "dev": true, + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "integrity": "sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==", + "dev": true, + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "entities": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz", + "integrity": "sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "dev": true + }, + "readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "dev": true + } } }, - "node_modules/http-deceiver": { + "http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", "dev": true }, - "node_modules/http-errors": { + "http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, - "dependencies": { + "requires": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" } }, - "node_modules/http-link-header": { + "http-link-header": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/http-link-header/-/http-link-header-1.1.1.tgz", "integrity": "sha512-mW3N/rTYpCn99s1do0zx6nzFZSwLH9HGfUM4ZqLWJ16ylmYaC2v5eYGqrNTQlByx8AzUgGI+V/32gXPugs1+Sw==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } + "dev": true }, - "node_modules/http-parser-js": { + "http-parser-js": { "version": "0.5.8", "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.8.tgz", "integrity": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==", "dev": true }, - "node_modules/http-proxy": { + "http-proxy": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, - "dependencies": { + "requires": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" - }, - "engines": { - "node": ">=8.0.0" } }, - "node_modules/http-proxy-agent": { + "http-proxy-agent": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", "dev": true, - "dependencies": { + "requires": { "agent-base": "^7.1.0", "debug": "^4.3.4" }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/http-proxy-agent/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dev": true, "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" + "agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "requires": { + "debug": "^4.3.4" + } + } } }, - "node_modules/http-proxy-middleware": { + "http-proxy-middleware": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dev": true, - "dependencies": { + "requires": { "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", "micromatch": "^4.0.2" - }, - "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "@types/express": "^4.17.13" - }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } } }, - "node_modules/https-proxy-agent": { + "https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, - "dependencies": { + "requires": { "agent-base": "6", "debug": "4" - }, - "engines": { - "node": ">= 6" } }, - "node_modules/human-signals": { + "human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "engines": { - "node": ">=10.17.0" - } + "dev": true }, - "node_modules/iconv-lite": { + "iconv-lite": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dev": true, - "dependencies": { + "requires": { "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/icss-utils": { + "icss-utils": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } + "dev": true }, - "node_modules/ieee754": { + "ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "dev": true }, - "node_modules/ignore": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", - "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", - "dev": true, - "engines": { - "node": ">= 4" - } + "ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true }, - "node_modules/ignore-walk": { + "ignore-walk": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-4.0.1.tgz", "integrity": "sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==", "dev": true, - "dependencies": { + "requires": { "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=10" } }, - "node_modules/image-ssim": { + "image-ssim": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/image-ssim/-/image-ssim-0.2.0.tgz", "integrity": "sha512-W7+sO6/yhxy83L0G7xR8YAc5Z5QFtYEXXRV6EaE8tuYBZJnA3gVgp3q7X7muhLZVodeb9UfvjSbwt9VJwjIYAg==", "dev": true }, - "node_modules/immutable": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", - "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "immutable": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz", + "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==", "dev": true }, - "node_modules/import-fresh": { + "import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, - "dependencies": { + "requires": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/import-lazy": { + "import-lazy": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/import-local": { + "import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, - "dependencies": { + "requires": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imurmurhash": { + "imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "engines": { - "node": ">=0.8.19" - } + "dev": true }, - "node_modules/indent-string": { + "indent-string": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/inflight": { + "inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, - "dependencies": { + "requires": { "once": "^1.3.0", "wrappy": "1" } }, - "node_modules/inherits": { + "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/ini": { + "ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true }, - "node_modules/internal-slot": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", - "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, - "dependencies": { - "get-intrinsic": "^1.2.2", + "requires": { + "es-errors": "^1.3.0", "hasown": "^2.0.0", "side-channel": "^1.0.4" - }, - "engines": { - "node": ">= 0.4" } }, - "node_modules/interpret": { + "interpret": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", - "dev": true, - "engines": { - "node": ">=10.13.0" - } + "dev": true }, - "node_modules/intl-messageformat": { + "intl-messageformat": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/intl-messageformat/-/intl-messageformat-4.4.0.tgz", "integrity": "sha512-z+Bj2rS3LZSYU4+sNitdHrwnBhr0wO80ZJSW8EzKDBowwUe3Q/UsvgCGjrwa+HPzoGCLEb9HAjfJgo4j2Sac8w==", "dev": true, - "dependencies": { + "requires": { "intl-messageformat-parser": "^1.8.1" } }, - "node_modules/intl-messageformat-parser": { + "intl-messageformat-parser": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/intl-messageformat-parser/-/intl-messageformat-parser-1.8.1.tgz", "integrity": "sha512-IMSCKVf0USrM/959vj3xac7s8f87sc+80Y/ipBzdKy4ifBv5Gsj2tZ41EAaURVg01QU71fYr77uA8Meh6kELbg==", - "deprecated": "We've written a new parser that's 6x faster and is backwards compatible. Please use @formatjs/icu-messageformat-parser", "dev": true }, - "node_modules/ip": { + "ip": { "version": "1.1.8", "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==", "dev": true }, - "node_modules/ipaddr.js": { + "ipaddr.js": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.1.0.tgz", "integrity": "sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==", - "dev": true, - "engines": { - "node": ">= 10" - } + "dev": true }, - "node_modules/irregular-plurals": { + "irregular-plurals": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/irregular-plurals/-/irregular-plurals-3.5.0.tgz", "integrity": "sha512-1ANGLZ+Nkv1ptFb2pa8oG8Lem4krflKuX/gINiHJHjJUKaJHk/SXk5x6K3J+39/p0h1RQ2saROclJJ+QLvETCQ==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "get-intrinsic": "^1.2.1" } }, - "node_modules/is-arrayish": { + "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, - "node_modules/is-async-function": { + "is-async-function": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", "dev": true, - "dependencies": { + "requires": { "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-bigint": { + "is-bigint": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, - "dependencies": { + "requires": { "has-bigints": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-binary-path": { + "is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, - "dependencies": { + "requires": { "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/is-boolean-object": { + "is-boolean-object": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-buffer": { + "is-buffer": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", "dev": true }, - "node_modules/is-builtin-module": { + "is-builtin-module": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", "dev": true, - "dependencies": { + "requires": { "builtin-modules": "^3.3.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-callable": { + "is-callable": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/is-core-module": { + "is-core-module": { "version": "2.13.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", "dev": true, - "dependencies": { + "requires": { "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-date-object": { + "is-date-object": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, - "dependencies": { + "requires": { "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-docker": { + "is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/is-extendable": { + "is-extendable": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/is-extglob": { + "is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/is-finalizationregistry": { + "is-finalizationregistry": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-fullwidth-code-point": { + "is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/is-generator-fn": { + "is-generator-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/is-generator-function": { + "is-generator-function": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dev": true, - "dependencies": { + "requires": { "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-glob": { + "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, - "dependencies": { + "requires": { "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", - "dev": true, - "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-inside-container/node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "dev": true, - "bin": { - "is-docker": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-map": { + "is-map": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/is-negative-zero": { + "is-negative-zero": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/is-number": { + "is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } + "dev": true }, - "node_modules/is-number-object": { + "is-number-object": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, - "dependencies": { + "requires": { "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-obj": { + "is-obj": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/is-path-cwd": { + "is-path-cwd": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/is-path-in-cwd": { + "is-path-in-cwd": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", "dev": true, - "dependencies": { + "requires": { "is-path-inside": "^2.1.0" - }, - "engines": { - "node": ">=6" } }, - "node_modules/is-path-inside": { + "is-path-inside": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", "dev": true, - "dependencies": { + "requires": { "path-is-inside": "^1.0.2" - }, - "engines": { - "node": ">=6" } }, - "node_modules/is-plain-obj": { + "is-plain-obj": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "dependencies": { - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true }, - "node_modules/is-potential-custom-element-name": { + "is-potential-custom-element-name": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", "dev": true }, - "node_modules/is-regex": { + "is-regex": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-set": { + "is-set": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/is-shared-array-buffer": { + "is-shared-array-buffer": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-stream": { + "is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/is-string": { + "is-string": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, - "dependencies": { + "requires": { "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-symbol": { + "is-symbol": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, - "dependencies": { + "requires": { "has-symbols": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, - "dependencies": { - "which-typed-array": "^1.1.11" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "which-typed-array": "^1.1.14" } }, - "node_modules/is-typedarray": { + "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==", "dev": true }, - "node_modules/is-unicode-supported": { + "is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/is-weakmap": { + "is-weakmap": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/is-weakref": { + "is-weakref": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-weakset": { + "is-weakset": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "get-intrinsic": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-windows": { + "is-windows": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz", "integrity": "sha512-n67eJYmXbniZB7RF4I/FTjK1s6RPOCTxhYrVYLRaCt3lF0mpWZPKr3T2LSZAqyjQsxR2qMmGYXXzK0YWwcPM1Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/is-wsl": { + "is-wsl": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, - "dependencies": { + "requires": { "is-docker": "^2.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==", + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true }, - "node_modules/isexe": { + "isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true }, - "node_modules/isobject": { + "isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/istanbul-lib-coverage": { + "istanbul-lib-coverage": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/istanbul-lib-instrument": { + "istanbul-lib-instrument": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", "dev": true, - "dependencies": { + "requires": { "@babel/core": "^7.12.3", "@babel/parser": "^7.14.7", "@istanbuljs/schema": "^0.1.2", "istanbul-lib-coverage": "^3.2.0", "semver": "^6.3.0" }, - "engines": { - "node": ">=8" + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/istanbul-lib-report": { + "istanbul-lib-report": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, - "dependencies": { + "requires": { "istanbul-lib-coverage": "^3.0.0", "make-dir": "^4.0.0", "supports-color": "^7.1.0" }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-report/node_modules/make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", - "dev": true, - "dependencies": { - "semver": "^7.5.3" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/istanbul-lib-report/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "requires": { + "semver": "^7.5.3" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/istanbul-lib-report/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/istanbul-lib-source-maps": { + "istanbul-lib-source-maps": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, - "dependencies": { + "requires": { "debug": "^4.1.1", "istanbul-lib-coverage": "^3.0.0", "source-map": "^0.6.1" }, - "engines": { - "node": ">=10" + "dependencies": { + "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 + } } }, - "node_modules/istanbul-reports": { + "istanbul-reports": { "version": "3.1.6", "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", "dev": true, - "dependencies": { + "requires": { "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/iterator.prototype": { + "iterator.prototype": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", "dev": true, - "dependencies": { + "requires": { "define-properties": "^1.2.1", "get-intrinsic": "^1.2.1", "has-symbols": "^1.0.3", @@ -12262,128 +8827,105 @@ "set-function-name": "^2.0.1" } }, - "node_modules/jest": { + "jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", "dev": true, - "dependencies": { + "requires": { "@jest/core": "^29.7.0", "@jest/types": "^29.6.3", "import-local": "^3.0.2", "jest-cli": "^29.7.0" }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "requires": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "node_modules/jest-changed-files": { + "jest-changed-files": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", "dev": true, - "dependencies": { + "requires": { "execa": "^5.0.0", "jest-util": "^29.7.0", "p-limit": "^3.1.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-changed-files/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/jest-changed-files/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/jest-changed-files/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-changed-files/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-changed-files/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-circus": { + "jest-circus": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", "dev": true, - "dependencies": { + "requires": { "@jest/environment": "^29.7.0", "@jest/expect": "^29.7.0", "@jest/test-result": "^29.7.0", @@ -12405,43 +8947,64 @@ "slash": "^3.0.0", "stack-utils": "^2.0.3" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-circus/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-circus/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-config": { + "jest-config": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", "dev": true, - "dependencies": { + "requires": { "@babel/core": "^7.11.6", "@jest/test-sequencer": "^29.7.0", "@jest/types": "^29.6.3", @@ -12465,98 +9028,266 @@ "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } }, - "ts-node": { - "optional": true + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "node_modules/jest-config/node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-dev-server": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/jest-dev-server/-/jest-dev-server-6.2.0.tgz", - "integrity": "sha512-ZWh8CuvxwjhYfvw4tGeftziqIvw/26R6AG3OTgNTQeXul8aZz48RQjDpnlDwnWX53jxJJl9fcigqIdSU5lYZuw==", + "jest-dev-server": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/jest-dev-server/-/jest-dev-server-9.0.2.tgz", + "integrity": "sha512-Zc/JB0IlNNrpXkhBw+h86cGrde/Mey52KvF+FER2eyrtYJTHObOwW7Iarxm3rPyTKby5+3Y2QZtl8pRz/5GCxg==", "dev": true, - "dependencies": { + "requires": { "chalk": "^4.1.2", "cwd": "^0.10.0", "find-process": "^1.4.7", "prompts": "^2.4.2", - "spawnd": "^6.2.0", + "spawnd": "^9.0.2", "tree-kill": "^1.2.2", - "wait-on": "^6.0.1" + "wait-on": "^7.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-diff": { + "jest-diff": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", "dev": true, - "dependencies": { + "requires": { "chalk": "^4.0.0", "diff-sequences": "^29.6.3", "jest-get-type": "^29.6.3", "pretty-format": "^29.7.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-docblock": { + "jest-docblock": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", "dev": true, - "dependencies": { + "requires": { "detect-newline": "^3.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-each": { + "jest-each": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", "dev": true, - "dependencies": { + "requires": { "@jest/types": "^29.6.3", "chalk": "^4.0.0", "jest-get-type": "^29.6.3", "jest-util": "^29.7.0", "pretty-format": "^29.7.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-environment-jsdom": { + "jest-environment-jsdom": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-29.7.0.tgz", "integrity": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==", "dev": true, - "dependencies": { + "requires": { "@jest/environment": "^29.7.0", "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", @@ -12565,104 +9296,127 @@ "jest-mock": "^29.7.0", "jest-util": "^29.7.0", "jsdom": "^20.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } } }, - "node_modules/jest-environment-node": { + "jest-environment-node": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", "dev": true, - "dependencies": { + "requires": { "@jest/environment": "^29.7.0", "@jest/fake-timers": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", "jest-mock": "^29.7.0", "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-get-type": { + "jest-get-type": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } + "dev": true }, - "node_modules/jest-haste-map": { + "jest-haste-map": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, - "dependencies": { + "requires": { "@jest/types": "^29.6.3", "@types/graceful-fs": "^4.1.3", "@types/node": "*", "anymatch": "^3.0.3", "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", "graceful-fs": "^4.2.9", "jest-regex-util": "^29.6.3", "jest-util": "^29.7.0", "jest-worker": "^29.7.0", "micromatch": "^4.0.4", "walker": "^1.0.8" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" } }, - "node_modules/jest-leak-detector": { + "jest-leak-detector": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", "dev": true, - "dependencies": { + "requires": { "jest-get-type": "^29.6.3", "pretty-format": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-matcher-utils": { + "jest-matcher-utils": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", "dev": true, - "dependencies": { + "requires": { "chalk": "^4.0.0", "jest-diff": "^29.7.0", "jest-get-type": "^29.6.3", "pretty-format": "^29.7.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-message-util": { + "jest-message-util": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", "dev": true, - "dependencies": { + "requires": { "@babel/code-frame": "^7.12.13", "@jest/types": "^29.6.3", "@types/stack-utils": "^2.0.0", @@ -12673,56 +9427,87 @@ "slash": "^3.0.0", "stack-utils": "^2.0.3" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-mock": { + "jest-mock": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", "dev": true, - "dependencies": { + "requires": { "@jest/types": "^29.6.3", "@types/node": "*", "jest-util": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-pnp-resolver": { + "jest-pnp-resolver": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", - "dev": true, - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } - } + "dev": true }, - "node_modules/jest-regex-util": { + "jest-regex-util": { "version": "29.6.3", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", - "dev": true, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } + "dev": true }, - "node_modules/jest-resolve": { + "jest-resolve": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", "dev": true, - "dependencies": { + "requires": { "chalk": "^4.0.0", "graceful-fs": "^4.2.9", "jest-haste-map": "^29.7.0", @@ -12733,29 +9518,74 @@ "resolve.exports": "^2.0.0", "slash": "^3.0.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-resolve-dependencies": { + "jest-resolve-dependencies": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", "dev": true, - "dependencies": { + "requires": { "jest-regex-util": "^29.6.3", "jest-snapshot": "^29.7.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-runner": { + "jest-runner": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", "dev": true, - "dependencies": { + "requires": { "@jest/console": "^29.7.0", "@jest/environment": "^29.7.0", "@jest/test-result": "^29.7.0", @@ -12778,53 +9608,64 @@ "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runner/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-runner/node_modules/source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dev": true, "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/jest-runner/node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-runtime": { + "jest-runtime": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", "dev": true, - "dependencies": { + "requires": { "@jest/environment": "^29.7.0", "@jest/fake-timers": "^29.7.0", "@jest/globals": "^29.7.0", @@ -12848,25 +9689,70 @@ "slash": "^3.0.0", "strip-bom": "^4.0.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-runtime/node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-snapshot": { + "jest-snapshot": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", "dev": true, - "dependencies": { + "requires": { "@babel/core": "^7.11.6", "@babel/generator": "^7.7.2", "@babel/plugin-syntax-jsx": "^7.7.2", @@ -12880,57 +9766,72 @@ "expect": "^29.7.0", "graceful-fs": "^4.2.9", "jest-diff": "^29.7.0", - "jest-get-type": "^29.6.3", - "jest-matcher-utils": "^29.7.0", - "jest-message-util": "^29.7.0", - "jest-util": "^29.7.0", - "natural-compare": "^1.4.0", - "pretty-format": "^29.7.0", - "semver": "^7.5.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-snapshot/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" }, - "engines": { - "node": ">=10" - } - }, - "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-snapshot/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/jest-util": { + "jest-util": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, - "dependencies": { + "requires": { "@jest/types": "^29.6.3", "@types/node": "*", "chalk": "^4.0.0", @@ -12938,16 +9839,64 @@ "graceful-fs": "^4.2.9", "picomatch": "^2.2.3" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-validate": { + "jest-validate": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", "dev": true, - "dependencies": { + "requires": { "@jest/types": "^29.6.3", "camelcase": "^6.2.0", "chalk": "^4.0.0", @@ -12955,16 +9904,64 @@ "leven": "^3.1.0", "pretty-format": "^29.7.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-watcher": { + "jest-watcher": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", "dev": true, - "dependencies": { + "requires": { "@jest/test-result": "^29.7.0", "@jest/types": "^29.6.3", "@types/node": "*", @@ -12974,149 +9971,145 @@ "jest-util": "^29.7.0", "string-length": "^4.0.1" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/jest-worker": { + "jest-worker": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*", "jest-util": "^29.7.0", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/jest/node_modules/jest-cli": { - "version": "29.7.0", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", - "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", - "dev": true, "dependencies": { - "@jest/core": "^29.7.0", - "@jest/test-result": "^29.7.0", - "@jest/types": "^29.6.3", - "chalk": "^4.0.0", - "create-jest": "^29.7.0", - "exit": "^0.1.2", - "import-local": "^3.0.2", - "jest-config": "^29.7.0", - "jest-util": "^29.7.0", - "jest-validate": "^29.7.0", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "node_modules/jju": { + "jju": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", "dev": true }, - "node_modules/joi": { - "version": "17.11.0", - "resolved": "https://registry.npmjs.org/joi/-/joi-17.11.0.tgz", - "integrity": "sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==", + "joi": { + "version": "17.12.1", + "resolved": "https://registry.npmjs.org/joi/-/joi-17.12.1.tgz", + "integrity": "sha512-vtxmq+Lsc5SlfqotnfVjlViWfOL9nt/avKNbKYizwf6gsCfq9NYY/ceYRMFD8XDdrjJ9abJyScWmhmIiy+XRtQ==", "dev": true, - "dependencies": { - "@hapi/hoek": "^9.0.0", - "@hapi/topo": "^5.0.0", - "@sideway/address": "^4.1.3", + "requires": { + "@hapi/hoek": "^9.3.0", + "@hapi/topo": "^5.1.0", + "@sideway/address": "^4.1.5", "@sideway/formula": "^3.0.1", "@sideway/pinpoint": "^2.0.0" } }, - "node_modules/jpeg-js": { + "jpeg-js": { "version": "0.4.4", "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==", "dev": true }, - "node_modules/js-library-detector": { + "js-library-detector": { "version": "6.7.0", "resolved": "https://registry.npmjs.org/js-library-detector/-/js-library-detector-6.7.0.tgz", "integrity": "sha512-c80Qupofp43y4cJ7+8TTDN/AsDwLi5oOm/plBrWI+iQt485vKXCco+yVmOwEgdo9VOdsYTuV0UlTeetVPTriXA==", - "dev": true, - "engines": { - "node": ">=12" - } + "dev": true }, - "node_modules/js-tokens": { + "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true }, - "node_modules/js-yaml": { + "js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, - "dependencies": { + "requires": { "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jsdoc-type-pratt-parser": { + "jsdoc-type-pratt-parser": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-2.2.5.tgz", "integrity": "sha512-2a6eRxSxp1BW040hFvaJxhsCMI9lT8QB8t14t+NY5tC5rckIR0U9cr2tjOeaFirmEOy6MHvmJnY7zTBHq431Lw==", - "dev": true, - "engines": { - "node": ">=12.0.0" - } + "dev": true }, - "node_modules/jsdom": { + "jsdom": { "version": "20.0.3", "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-20.0.3.tgz", "integrity": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==", "dev": true, - "dependencies": { + "requires": { "abab": "^2.0.6", "acorn": "^8.8.1", "acorn-globals": "^7.0.0", @@ -13144,105 +10137,63 @@ "ws": "^8.11.0", "xml-name-validator": "^4.0.0" }, - "engines": { - "node": ">=14" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } - } - }, - "node_modules/jsdom/node_modules/http-proxy-agent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", - "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", - "dev": true, - "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/jsdom/node_modules/tr46": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", - "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", - "dev": true, - "dependencies": { - "punycode": "^2.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/jsdom/node_modules/webidl-conversions": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", - "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", - "dev": true, - "engines": { - "node": ">=12" - } - }, - "node_modules/jsdom/node_modules/whatwg-url": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", - "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", - "dev": true, "dependencies": { - "tr46": "^3.0.0", - "webidl-conversions": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/jsdom/node_modules/ws": { - "version": "8.14.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", - "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true + "http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "requires": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + } }, - "utf-8-validate": { - "optional": true + "tr46": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz", + "integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==", + "dev": true, + "requires": { + "punycode": "^2.1.1" + } + }, + "webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true + }, + "whatwg-url": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz", + "integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==", + "dev": true, + "requires": { + "tr46": "^3.0.0", + "webidl-conversions": "^7.0.0" + } + }, + "ws": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "dev": true } } }, - "node_modules/jsesc": { + "jsesc": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/jshint": { + "jshint": { "version": "2.13.6", "resolved": "https://registry.npmjs.org/jshint/-/jshint-2.13.6.tgz", "integrity": "sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==", "dev": true, - "dependencies": { + "requires": { "cli": "~1.0.0", "console-browserify": "1.1.x", "exit": "0.1.x", @@ -13251,192 +10202,176 @@ "minimatch": "~3.0.2", "strip-json-comments": "1.0.x" }, - "bin": { - "jshint": "bin/jshint" + "dependencies": { + "minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "strip-json-comments": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", + "integrity": "sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==", + "dev": true + } } }, - "node_modules/json-buffer": { + "json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true }, - "node_modules/json-parse-even-better-errors": { + "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true }, - "node_modules/json-schema-traverse": { + "json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, - "node_modules/json-stable-stringify-without-jsonify": { + "json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true }, - "node_modules/json2php": { + "json2php": { "version": "0.0.4", "resolved": "https://registry.npmjs.org/json2php/-/json2php-0.0.4.tgz", "integrity": "sha512-hFzejhs28f70sGnutcsRS459MnAsjRVI85RgPAL1KQIZEpjiDitc27CZv4IgOtaR86vrqOVlu9vJNew2XyTH4g==", "dev": true }, - "node_modules/json5": { + "json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/jsonc-parser": { + "jsonc-parser": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz", "integrity": "sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==", "dev": true }, - "node_modules/jsonfile": { + "jsonfile": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", "dev": true, - "optionalDependencies": { + "requires": { "graceful-fs": "^4.1.6" } }, - "node_modules/jsx-ast-utils": { + "jsx-ast-utils": { "version": "3.3.5", "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", "dev": true, - "dependencies": { + "requires": { "array-includes": "^3.1.6", "array.prototype.flat": "^1.3.1", "object.assign": "^4.1.4", "object.values": "^1.1.6" - }, - "engines": { - "node": ">=4.0" } }, - "node_modules/keyv": { + "keyv": { "version": "4.5.4", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, - "dependencies": { + "requires": { "json-buffer": "3.0.1" } }, - "node_modules/kind-of": { + "kind-of": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", "dev": true, - "dependencies": { + "requires": { "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/kleur": { + "kleur": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/klona": { + "klona": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", - "dev": true, - "engines": { - "node": ">= 8" - } + "dev": true }, - "node_modules/known-css-properties": { + "known-css-properties": { "version": "0.26.0", "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.26.0.tgz", "integrity": "sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg==", "dev": true }, - "node_modules/language-subtag-registry": { + "language-subtag-registry": { "version": "0.3.22", "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", "dev": true }, - "node_modules/language-tags": { + "language-tags": { "version": "1.0.9", "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", "dev": true, - "dependencies": { + "requires": { "language-subtag-registry": "^0.3.20" - }, - "engines": { - "node": ">=0.10" } }, - "node_modules/launch-editor": { + "launch-editor": { "version": "2.6.1", "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", "dev": true, - "dependencies": { + "requires": { "picocolors": "^1.0.0", "shell-quote": "^1.8.1" } }, - "node_modules/lazy-cache": { + "lazy-cache": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", "integrity": "sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/leven": { + "leven": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/levn": { + "levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, - "dependencies": { + "requires": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" } }, - "node_modules/lighthouse": { + "lighthouse": { "version": "10.4.0", "resolved": "https://registry.npmjs.org/lighthouse/-/lighthouse-10.4.0.tgz", "integrity": "sha512-XQWHEWkJ8YxSPsxttBJORy5+hQrzbvGkYfeP3fJjyYKioWkF2MXfFqNK4ZuV4jL8pBu7Z91qnQP6In0bq1yXww==", "dev": true, - "dependencies": { + "requires": { "@sentry/node": "^6.17.4", "axe-core": "4.7.2", "chrome-launcher": "^0.15.2", @@ -13465,348 +10400,347 @@ "yargs": "^17.3.1", "yargs-parser": "^21.0.0" }, - "bin": { - "chrome-debug": "core/scripts/manual-chrome-launcher.js", - "lighthouse": "cli/index.js", - "smokehouse": "cli/test/smokehouse/frontends/smokehouse-bin.js" - }, - "engines": { - "node": ">=16.16" + "dependencies": { + "axe-core": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", + "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", + "dev": true + }, + "puppeteer-core": { + "version": "20.9.0", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-20.9.0.tgz", + "integrity": "sha512-H9fYZQzMTRrkboEfPmf7m3CLDN6JvbxXA3qTtS+dFt27tR+CsFHzPsT6pzp6lYL6bJbAPaR0HaPO6uSi+F94Pg==", + "dev": true, + "requires": { + "@puppeteer/browsers": "1.4.6", + "chromium-bidi": "0.4.16", + "cross-fetch": "4.0.0", + "debug": "4.3.4", + "devtools-protocol": "0.0.1147663", + "ws": "8.13.0" + }, + "dependencies": { + "devtools-protocol": { + "version": "0.0.1147663", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz", + "integrity": "sha512-hyWmRrexdhbZ1tcJUGpO95ivbRhWXz++F4Ko+n21AY5PNln2ovoJw+8ZMNDTtip+CNFQfrtLVh/w4009dXO/eQ==", + "dev": true + }, + "ws": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", + "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", + "dev": true + } + } + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true + } } }, - "node_modules/lighthouse-logger": { + "lighthouse-logger": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/lighthouse-logger/-/lighthouse-logger-1.4.2.tgz", "integrity": "sha512-gPWxznF6TKmUHrOQjlVo2UbaL2EJ71mb2CCeRs/2qBpi4L/g4LUVc9+3lKQ6DTUZwJswfM7ainGrLO1+fOqa2g==", "dev": true, - "dependencies": { + "requires": { "debug": "^2.6.9", "marky": "^1.2.2" - } - }, - "node_modules/lighthouse-logger/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, + }, "dependencies": { - "ms": "2.0.0" + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } } }, - "node_modules/lighthouse-logger/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/lighthouse-stack-packs": { + "lighthouse-stack-packs": { "version": "1.11.0", "resolved": "https://registry.npmjs.org/lighthouse-stack-packs/-/lighthouse-stack-packs-1.11.0.tgz", "integrity": "sha512-sRr0z1S/I26VffRLq9KJsKtLk856YrJlNGmcJmbLX8dFn3MuzVPUbstuChEhqnSxZb8TZmVfthuXuwhG9vRoSw==", "dev": true }, - "node_modules/lighthouse/node_modules/puppeteer-core": { - "version": "20.9.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-20.9.0.tgz", - "integrity": "sha512-H9fYZQzMTRrkboEfPmf7m3CLDN6JvbxXA3qTtS+dFt27tR+CsFHzPsT6pzp6lYL6bJbAPaR0HaPO6uSi+F94Pg==", - "dev": true, - "dependencies": { - "@puppeteer/browsers": "1.4.6", - "chromium-bidi": "0.4.16", - "cross-fetch": "4.0.0", - "debug": "4.3.4", - "devtools-protocol": "0.0.1147663", - "ws": "8.13.0" - }, - "engines": { - "node": ">=16.3.0" - }, - "peerDependencies": { - "typescript": ">= 4.7.4" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/devtools-protocol": { - "version": "0.0.1147663", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1147663.tgz", - "integrity": "sha512-hyWmRrexdhbZ1tcJUGpO95ivbRhWXz++F4Ko+n21AY5PNln2ovoJw+8ZMNDTtip+CNFQfrtLVh/w4009dXO/eQ==", + "lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", "dev": true }, - "node_modules/lighthouse/node_modules/puppeteer-core/node_modules/ws": { - "version": "8.13.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.13.0.tgz", - "integrity": "sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } - }, - "node_modules/lighthouse/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { + "lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true }, - "node_modules/linkify-it": { + "linkify-it": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-3.0.3.tgz", "integrity": "sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==", "dev": true, - "dependencies": { + "requires": { "uc.micro": "^1.0.1" } }, - "node_modules/loader-runner": { + "loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", - "dev": true, - "engines": { - "node": ">=6.11.5" - } + "dev": true }, - "node_modules/loader-utils": { + "loader-utils": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, - "dependencies": { + "requires": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" } }, - "node_modules/locate-path": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.1.1.tgz", - "integrity": "sha512-vJXaRMJgRVD3+cUZs3Mncj2mxpt5mP0EmNOsxRSZRMlbqjvxzDEOIUWXGmavo0ZC9+tNZCBLQ66reA11nbpHZg==", + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, - "dependencies": { - "p-locate": "^6.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "p-locate": "^5.0.0" } }, - "node_modules/lodash": { + "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true }, - "node_modules/lodash.debounce": { + "lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "dev": true }, - "node_modules/lodash.memoize": { + "lodash.memoize": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", "dev": true }, - "node_modules/lodash.merge": { + "lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true }, - "node_modules/lodash.truncate": { + "lodash.truncate": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz", "integrity": "sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==", "dev": true }, - "node_modules/lodash.uniq": { + "lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "dev": true }, - "node_modules/log-symbols": { + "log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, - "dependencies": { + "requires": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/lookup-closest-locale": { + "lookup-closest-locale": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/lookup-closest-locale/-/lookup-closest-locale-6.2.0.tgz", "integrity": "sha512-/c2kL+Vnp1jnV6K6RpDTHK3dgg0Tu2VVp+elEiJpjfS1UyY7AjOYHohRug6wT0OpoX2qFgNORndE9RqesfVxWQ==", "dev": true }, - "node_modules/loose-envify": { + "loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dev": true, - "dependencies": { + "requires": { "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" } }, - "node_modules/lower-case": { + "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": { + "requires": { "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" } }, - "node_modules/lru_map": { + "lru_map": { "version": "0.3.3", "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz", "integrity": "sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==", "dev": true }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/make-dir": { + "make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, - "dependencies": { + "requires": { "semver": "^6.0.0" }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, - "node_modules/makeerror": { + "makeerror": { "version": "1.0.12", "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, - "dependencies": { + "requires": { "tmpl": "1.0.5" } }, - "node_modules/map-obj": { + "map-obj": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/map-values": { + "map-values": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/map-values/-/map-values-1.0.1.tgz", "integrity": "sha512-BbShUnr5OartXJe1GeccAWtfro11hhgNJg6G9/UtWKjVGvV5U4C09cg5nk8JUevhXODaXY+hQ3xxMUKSs62ONQ==", "dev": true }, - "node_modules/markdown-it": { + "markdown-it": { "version": "12.3.2", "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.3.2.tgz", "integrity": "sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==", "dev": true, - "dependencies": { + "requires": { "argparse": "^2.0.1", "entities": "~2.1.0", "linkify-it": "^3.0.1", "mdurl": "^1.0.1", "uc.micro": "^1.0.5" }, - "bin": { - "markdown-it": "bin/markdown-it.js" - } - }, - "node_modules/markdown-it/node_modules/entities": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", - "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", - "dev": true, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "dependencies": { + "entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==", + "dev": true + } } }, - "node_modules/markdownlint": { + "markdownlint": { "version": "0.25.1", "resolved": "https://registry.npmjs.org/markdownlint/-/markdownlint-0.25.1.tgz", "integrity": "sha512-AG7UkLzNa1fxiOv5B+owPsPhtM4D6DoODhsJgiaNg1xowXovrYgOnLqAgOOFQpWOlHFVQUzjMY5ypNNTeov92g==", "dev": true, - "dependencies": { + "requires": { "markdown-it": "12.3.2" - }, - "engines": { - "node": ">=12" } }, - "node_modules/markdownlint-cli": { + "markdownlint-cli": { "version": "0.31.1", "resolved": "https://registry.npmjs.org/markdownlint-cli/-/markdownlint-cli-0.31.1.tgz", "integrity": "sha512-keIOMwQn+Ch7MoBwA+TdkyVMuxAeZFEGmIIlvwgV0Z1TGS5MxPnRr29XCLhkNzCHU+uNKGjU+VEjLX+Z9kli6g==", "dev": true, - "dependencies": { + "requires": { "commander": "~9.0.0", "get-stdin": "~9.0.0", "glob": "~7.2.0", @@ -13818,105 +10752,97 @@ "minimatch": "~3.0.5", "run-con": "~1.2.10" }, - "bin": { - "markdownlint": "markdownlint.js" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/markdownlint-cli/node_modules/commander": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.0.0.tgz", - "integrity": "sha512-JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw==", - "dev": true, - "engines": { - "node": "^12.20.0 || >=14" + "dependencies": { + "commander": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.0.0.tgz", + "integrity": "sha512-JJfP2saEKbQqvW+FI93OYUB4ByV5cizMpFMiiJI8xDbBvQvSkIk0VvQdn1CZ8mqAO8Loq2h0gYTYtDFUZUeERw==", + "dev": true + }, + "ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true + }, + "minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } } }, - "node_modules/markdownlint-rule-helpers": { + "markdownlint-rule-helpers": { "version": "0.16.0", "resolved": "https://registry.npmjs.org/markdownlint-rule-helpers/-/markdownlint-rule-helpers-0.16.0.tgz", "integrity": "sha512-oEacRUVeTJ5D5hW1UYd2qExYI0oELdYK72k1TKGvIeYJIbqQWAz476NAc7LNixSySUhcNl++d02DvX0ccDk9/w==", "dev": true }, - "node_modules/marky": { + "marky": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/marky/-/marky-1.2.5.tgz", "integrity": "sha512-q9JtQJKjpsVxCRVgQ+WapguSbKC3SQ5HEzFGPAJMStgh3QjCawp00UKv3MTTAArTmGmmPUvllHZoNbZ3gs0I+Q==", "dev": true }, - "node_modules/matched": { + "matched": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/matched/-/matched-5.0.1.tgz", "integrity": "sha512-E1fhSTPRyhAlNaNvGXAgZQlq1hL0bgYMTk/6bktVlIhzUnX/SZs7296ACdVeNJE8xFNGSuvd9IpI7vSnmcqLvw==", "dev": true, - "dependencies": { + "requires": { "glob": "^7.1.6", "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/mathml-tag-names": { + "mathml-tag-names": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/mathml-tag-names/-/mathml-tag-names-2.1.3.tgz", "integrity": "sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==", - "dev": true, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } + "dev": true }, - "node_modules/mdn-data": { + "mdn-data": { "version": "2.0.30", "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", "dev": true }, - "node_modules/mdurl": { + "mdurl": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz", "integrity": "sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==", "dev": true }, - "node_modules/media-typer": { + "media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/memfs": { + "memfs": { "version": "3.5.3", "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", "dev": true, - "dependencies": { + "requires": { "fs-monkey": "^1.0.4" - }, - "engines": { - "node": ">= 4.0.0" } }, - "node_modules/memize": { + "memize": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/memize/-/memize-2.1.0.tgz", "integrity": "sha512-yywVJy8ctVlN5lNPxsep5urnZ6TTclwPEyigM9M3Bi8vseJBOfqNrGWN/r8NzuIt3PovM323W04blJfGQfQSVg==", "dev": true }, - "node_modules/meow": { + "meow": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, - "dependencies": { + "requires": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", "decamelize": "^1.2.0", @@ -13930,226 +10856,162 @@ "type-fest": "^0.18.0", "yargs-parser": "^20.2.3" }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "engines": { - "node": ">=10" + "dependencies": { + "type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true + }, + "yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true + } } }, - "node_modules/merge-deep": { + "merge-deep": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.3.tgz", "integrity": "sha512-qtmzAS6t6grwEkNrunqTBdn0qKwFgNWvlxUbAV8es9M7Ot1EbyApytCnvE0jALPa46ZpKDUo527kKiaWplmlFA==", "dev": true, - "dependencies": { + "requires": { "arr-union": "^3.1.0", "clone-deep": "^0.2.4", "kind-of": "^3.0.2" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/merge-descriptors": { + "merge-descriptors": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", "dev": true }, - "node_modules/merge-stream": { + "merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true }, - "node_modules/merge2": { + "merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } + "dev": true }, - "node_modules/metaviewport-parser": { + "metaviewport-parser": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/metaviewport-parser/-/metaviewport-parser-0.3.0.tgz", "integrity": "sha512-EoYJ8xfjQ6kpe9VbVHvZTZHiOl4HL1Z18CrZ+qahvLXT7ZO4YTC2JMyt5FaUp9JJp6J4Ybb/z7IsCXZt86/QkQ==", "dev": true }, - "node_modules/methods": { + "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/micromatch": { + "micromatch": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, - "dependencies": { + "requires": { "braces": "^3.0.2", "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" } }, - "node_modules/mime": { + "mime": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=10.0.0" - } + "dev": true }, - "node_modules/mime-db": { + "mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/mime-types": { + "mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dev": true, - "dependencies": { + "requires": { "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" } }, - "node_modules/mimic-fn": { + "mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/min-indent": { + "min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/mini-css-extract-plugin": { - "version": "2.7.6", - "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.7.6.tgz", - "integrity": "sha512-Qk7HcgaPkGG6eD77mLvZS1nmxlao3j+9PkrT9Uc7HAE1id3F41+DdBRYRYkbyfNRGzm8/YWtzhw7nVPmwhqTQw==", - "dev": true, - "dependencies": { - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" - } - }, - "node_modules/mini-css-extract-plugin/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true }, - "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "mini-css-extract-plugin": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-2.8.0.tgz", + "integrity": "sha512-CxmUYPFcTgET1zImteG/LZOy/4T5rTojesQXkSNBiquhydn78tfbCE9sjIjnJ/UcjNjOC1bphTCCW5rrS7cXAg==", "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 12.13.0" + "requires": { + "schema-utils": "^4.0.0", + "tapable": "^2.2.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "dependencies": { + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + } } }, - "node_modules/minify": { + "minify": { "version": "7.2.2", "resolved": "https://registry.npmjs.org/minify/-/minify-7.2.2.tgz", "integrity": "sha512-AcgoqXRQX0o/PRrydK8klB5OD09lFjJ/OYVHGxmWmbg/DQP/ETmmPM4aA10NZBiGdlLeUnC9sCgrgJAt0P14mA==", "dev": true, - "dependencies": { + "requires": { "clean-css": "^5.0.1", "css-b64-images": "~0.2.5", "debug": "^4.1.0", @@ -14160,757 +11022,626 @@ "try-catch": "^3.0.0", "try-to-catch": "^3.0.0" }, - "bin": { - "minify": "bin/minify.js" - }, - "engines": { - "node": ">=14" + "dependencies": { + "find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "requires": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + } + }, + "locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "requires": { + "p-locate": "^6.0.0" + } + }, + "p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "requires": { + "yocto-queue": "^1.0.0" + } + }, + "p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "requires": { + "p-limit": "^4.0.0" + } + }, + "path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true + }, + "yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true + } } }, - "node_modules/minimalistic-assert": { + "minimalistic-assert": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true }, - "node_modules/minimatch": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", - "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, - "dependencies": { + "requires": { "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" } }, - "node_modules/minimist": { + "minimist": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/minimist-options": { + "minimist-options": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, - "dependencies": { + "requires": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0", "kind-of": "^6.0.3" }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/minimist-options/node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/minimist-options/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } } }, - "node_modules/mitt": { + "mitt": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.0.tgz", "integrity": "sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ==", "dev": true }, - "node_modules/mixin-object": { + "mixin-object": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", "integrity": "sha512-ALGF1Jt9ouehcaXaHhn6t1yGWRqGaHkPFndtFVHfZXOvkIZ/yoGaSi0AHVTafb3ZBGg4dr/bDwnaEKqCXzchMA==", "dev": true, - "dependencies": { + "requires": { "for-in": "^0.1.3", "is-extendable": "^0.1.1" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mixin-object/node_modules/for-in": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", - "integrity": "sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "for-in": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", + "integrity": "sha512-F0to7vbBSHP8E3l6dCjxNOLuSFAACIxFy3UehTUlG7svlXi37HHsDkyVcHo0Pq8QwrE+pXvWSVX3ZT1T9wAZ9g==", + "dev": true + } } }, - "node_modules/mkdirp-classic": { + "mkdirp-classic": { "version": "0.5.3", "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", "dev": true }, - "node_modules/mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", - "dev": true, - "engines": { - "node": ">=10" - } + "mrmime": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", + "dev": true }, - "node_modules/ms": { + "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/multicast-dns": { + "multicast-dns": { "version": "7.2.5", "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, - "dependencies": { + "requires": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" - }, - "bin": { - "multicast-dns": "cli.js" } }, - "node_modules/nanoid": { + "nanoid": { "version": "3.3.7", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } + "dev": true }, - "node_modules/natural-compare": { + "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "node_modules/natural-compare-lite": { + "natural-compare-lite": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", "dev": true }, - "node_modules/negotiator": { + "negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/neo-async": { + "neo-async": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "dev": true }, - "node_modules/netmask": { + "netmask": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } + "dev": true }, - "node_modules/no-case": { + "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": { + "requires": { "lower-case": "^2.0.2", "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/node-fetch": { + "node-fetch": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dev": true, - "dependencies": { + "requires": { "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } } }, - "node_modules/node-forge": { + "node-forge": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "dev": true, - "engines": { - "node": ">= 6.13.0" - } + "dev": true }, - "node_modules/node-int64": { + "node-int64": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true }, - "node_modules/node-releases": { - "version": "2.0.13", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", - "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", "dev": true }, - "node_modules/normalize-package-data": { + "normalize-package-data": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, - "dependencies": { + "requires": { "hosted-git-info": "^4.0.1", "is-core-module": "^2.5.0", "semver": "^7.3.4", "validate-npm-package-license": "^3.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-package-data/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" } }, - "node_modules/normalize-package-data/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/normalize-path": { + "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/normalize-range": { + "normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/npm-bundled": { + "npm-bundled": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.1.2.tgz", "integrity": "sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ==", "dev": true, - "dependencies": { + "requires": { "npm-normalize-package-bin": "^1.0.1" } }, - "node_modules/npm-normalize-package-bin": { + "npm-normalize-package-bin": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz", - "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", - "dev": true - }, - "node_modules/npm-package-json-lint": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/npm-package-json-lint/-/npm-package-json-lint-6.4.0.tgz", - "integrity": "sha512-cuXAJJB1Rdqz0UO6w524matlBqDBjcNt7Ru+RDIu4y6RI1gVqiWBnylrK8sPRk81gGBA0X8hJbDXolVOoTc+sA==", - "dev": true, - "dependencies": { - "ajv": "^6.12.6", - "ajv-errors": "^1.0.1", - "chalk": "^4.1.2", - "cosmiconfig": "^8.0.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "ignore": "^5.2.0", - "is-plain-obj": "^3.0.0", - "jsonc-parser": "^3.2.0", - "log-symbols": "^4.1.0", - "meow": "^9.0.0", - "plur": "^4.0.0", - "semver": "^7.3.8", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1", - "type-fest": "^3.2.0", - "validate-npm-package-name": "^5.0.0" - }, - "bin": { - "npmPkgJsonLint": "dist/cli.js" - }, - "engines": { - "node": ">=14.0.0", - "npm": ">=6.0.0" - } - }, - "node_modules/npm-package-json-lint/node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", - "dev": true - }, - "node_modules/npm-package-json-lint/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm-package-json-lint/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm-package-json-lint/node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "integrity": "sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==", + "dev": true }, - "node_modules/npm-package-json-lint/node_modules/type-fest": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", - "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "npm-package-json-lint": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/npm-package-json-lint/-/npm-package-json-lint-6.4.0.tgz", + "integrity": "sha512-cuXAJJB1Rdqz0UO6w524matlBqDBjcNt7Ru+RDIu4y6RI1gVqiWBnylrK8sPRk81gGBA0X8hJbDXolVOoTc+sA==", "dev": true, - "engines": { - "node": ">=14.16" + "requires": { + "ajv": "^6.12.6", + "ajv-errors": "^1.0.1", + "chalk": "^4.1.2", + "cosmiconfig": "^8.0.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "ignore": "^5.2.0", + "is-plain-obj": "^3.0.0", + "jsonc-parser": "^3.2.0", + "log-symbols": "^4.1.0", + "meow": "^9.0.0", + "plur": "^4.0.0", + "semver": "^7.3.8", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1", + "type-fest": "^3.2.0", + "validate-npm-package-name": "^5.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "requires": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "jsonc-parser": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.1.tgz", + "integrity": "sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "dev": true + } } }, - "node_modules/npm-package-json-lint/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/npm-packlist": { + "npm-packlist": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-3.0.0.tgz", "integrity": "sha512-L/cbzmutAwII5glUcf2DBRNY/d0TFd4e/FnaZigJV6JD85RHZXJFGwCndjMWiiViiWSsWt3tiOLpI3ByTnIdFQ==", "dev": true, - "dependencies": { + "requires": { "glob": "^7.1.6", "ignore-walk": "^4.0.1", "npm-bundled": "^1.1.1", "npm-normalize-package-bin": "^1.0.1" - }, - "bin": { - "npm-packlist": "bin/index.js" - }, - "engines": { - "node": ">=10" } }, - "node_modules/npm-run-path": { + "npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, - "dependencies": { + "requires": { "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/nth-check": { + "nth-check": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, - "dependencies": { + "requires": { "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/nwsapi": { + "nwsapi": { "version": "2.2.7", "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.7.tgz", "integrity": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==", "dev": true }, - "node_modules/object-assign": { + "object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/object-filter": { + "object-filter": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/object-filter/-/object-filter-1.0.2.tgz", "integrity": "sha512-NahvP2vZcy1ZiiYah30CEPw0FpDcSkSePJBMpzl5EQgCmISijiGuJm3SPYp7U+Lf2TljyaIw3E5EgkEx/TNEVA==", "dev": true }, - "node_modules/object-inspect": { + "object-inspect": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/object-keys": { + "object-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", - "dev": true, - "engines": { - "node": ">= 0.4" - } + "dev": true }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", + "requires": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", "has-symbols": "^1.0.3", "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object.entries": { + "object.entries": { "version": "1.1.7", "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" } }, - "node_modules/object.fromentries": { + "object.fromentries": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object.groupby": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", - "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "object.groupby": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", + "integrity": "sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1" + "requires": { + "array.prototype.filter": "^1.0.3", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.0.0" } }, - "node_modules/object.hasown": { + "object.hasown": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", "dev": true, - "dependencies": { + "requires": { "define-properties": "^1.2.0", "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/object.values": { + "object.values": { "version": "1.1.7", "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/obuf": { + "obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", "dev": true }, - "node_modules/on-finished": { + "on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, - "dependencies": { + "requires": { "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" } }, - "node_modules/on-headers": { + "on-headers": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true, - "engines": { - "node": ">= 0.8" - } + "dev": true }, - "node_modules/once": { + "once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, - "dependencies": { + "requires": { "wrappy": "1" } }, - "node_modules/onetime": { + "onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, - "dependencies": { + "requires": { "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/open": { + "open": { "version": "8.4.2", "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, - "dependencies": { + "requires": { "define-lazy-prop": "^2.0.0", "is-docker": "^2.1.1", "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/opener": { + "opener": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", - "dev": true, - "bin": { - "opener": "bin/opener-bin.js" - } + "dev": true }, - "node_modules/optionator": { + "optionator": { "version": "0.9.3", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", "dev": true, - "dependencies": { + "requires": { "@aashutoshrathi/word-wrap": "^1.2.3", "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" } }, - "node_modules/os-homedir": { + "os-homedir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", "integrity": "sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/p-limit": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", - "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "dependencies": { - "yocto-queue": "^1.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "yocto-queue": "^0.1.0" } }, - "node_modules/p-locate": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", - "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "dependencies": { - "p-limit": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "requires": { + "p-limit": "^3.0.2" } }, - "node_modules/p-map": { + "p-map": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/p-retry": { + "p-retry": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", "dev": true, - "dependencies": { + "requires": { "@types/retry": "0.12.0", "retry": "^0.13.1" - }, - "engines": { - "node": ">=8" } }, - "node_modules/p-try": { + "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/pac-proxy-agent": { + "pac-proxy-agent": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz", "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", "dev": true, - "dependencies": { + "requires": { "@tootallnate/quickjs-emscripten": "^0.23.0", "agent-base": "^7.0.2", "debug": "^4.3.4", @@ -14920,1151 +11651,748 @@ "pac-resolver": "^7.0.0", "socks-proxy-agent": "^8.0.2" }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/pac-proxy-agent/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/pac-proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "dev": true, "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" + "agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "requires": { + "debug": "^4.3.4" + } + }, + "https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dev": true, + "requires": { + "agent-base": "^7.0.2", + "debug": "4" + } + } } }, - "node_modules/pac-resolver": { + "pac-resolver": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.0.tgz", "integrity": "sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==", "dev": true, - "dependencies": { + "requires": { "degenerator": "^5.0.0", "ip": "^1.1.8", "netmask": "^2.0.2" - }, - "engines": { - "node": ">= 14" } }, - "node_modules/param-case": { + "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": { + "requires": { "dot-case": "^3.0.4", "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/parent-module": { + "parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "dependencies": { + "requires": { "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" } }, - "node_modules/parse-cache-control": { + "parse-cache-control": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", "integrity": "sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==", "dev": true }, - "node_modules/parse-json": { + "parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, - "dependencies": { + "requires": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/parse-passwd": { + "parse-passwd": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/parse5": { + "parse5": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", "dev": true, - "dependencies": { + "requires": { "entities": "^4.4.0" - }, - "funding": { - "url": "https://github.com/inikulin/parse5?sponsor=1" - } - }, - "node_modules/parse5/node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/parseurl": { + "parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } + "dev": true }, - "node_modules/pascal-case": { + "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": { + "requires": { "no-case": "^3.0.4", "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/path-case": { + "path-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", "dev": true, - "dependencies": { + "requires": { "dot-case": "^3.0.4", "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/path-exists": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", - "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true }, - "node_modules/path-is-absolute": { + "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/path-is-inside": { + "path-is-inside": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", "dev": true }, - "node_modules/path-key": { + "path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/path-parse": { + "path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, - "node_modules/path-sort": { + "path-sort": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/path-sort/-/path-sort-0.1.0.tgz", "integrity": "sha512-70MSq7edKtbODYKkqXYzSMQxtYMjDgP3K6D15Fu4KUvpyBPlxDWPvv8JI9GjNDF2K5baPHFEtlg818dOmf2ifg==", "dev": true }, - "node_modules/path-to-regexp": { + "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, - "node_modules/path-type": { + "path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/pend": { + "pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", "dev": true }, - "node_modules/php-parser": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.2.tgz", - "integrity": "sha512-RRCMK/bCKYPLRhlpfMlVVVsaIesuW+X6UxRqWjm7dTAmTZk8PvD6hCmG/RVeDzse7iqYWJwLJeqEbaGLC+aHeQ==", + "php-parser": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.5.tgz", + "integrity": "sha512-jEY2DcbgCm5aclzBdfW86GM6VEIWcSlhTBSHN1qhJguVePlYe28GhwS0yoeLYXpM2K8y6wzLwrbq814n2PHSoQ==", "dev": true }, - "node_modules/picocolors": { + "picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", "dev": true }, - "node_modules/picomatch": { + "picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } + "dev": true }, - "node_modules/pify": { + "pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/pinkie": { + "pinkie": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/pinkie-promise": { + "pinkie-promise": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", "dev": true, - "dependencies": { + "requires": { "pinkie": "^2.0.0" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/pirates": { + "pirates": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, - "engines": { - "node": ">= 6" - } + "dev": true }, - "node_modules/pkg-dir": { + "pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, - "dependencies": { + "requires": { "find-up": "^4.0.0" }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + } } }, - "node_modules/playwright-core": { - "version": "1.32.0", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.32.0.tgz", - "integrity": "sha512-Z9Ij17X5Z3bjpp6XKujGBp9Gv4eViESac9aDmwgQFUEJBW0K80T21m/Z+XJQlu4cNsvPygw33b6V1Va6Bda5zQ==", - "dev": true, - "bin": { - "playwright": "cli.js" - }, - "engines": { - "node": ">=14" - } + "playwright-core": { + "version": "1.39.0", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.39.0.tgz", + "integrity": "sha512-+k4pdZgs1qiM+OUkSjx96YiKsXsmb59evFoqv8SKO067qBA+Z2s/dCzJij/ZhdQcs2zlTAgRKfeiiLm8PQ2qvw==", + "dev": true }, - "node_modules/plur": { + "plur": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/plur/-/plur-4.0.0.tgz", "integrity": "sha512-4UGewrYgqDFw9vV6zNV+ADmPAUAfJPKtGvb/VdpQAx25X5f3xXdGdyOEVFwkl8Hl/tl7+xbeHqSEM+D5/TirUg==", "dev": true, - "dependencies": { + "requires": { "irregular-plurals": "^3.2.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss": { - "version": "8.4.31", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", - "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "postcss": { + "version": "8.4.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.35.tgz", + "integrity": "sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.6", + "requires": { + "nanoid": "^3.3.7", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" - }, - "engines": { - "node": "^10 || ^12 || >=14" } }, - "node_modules/postcss-calc": { + "postcss-calc": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", "dev": true, - "dependencies": { + "requires": { "postcss-selector-parser": "^6.0.11", "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.2" } }, - "node_modules/postcss-colormin": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.0.tgz", - "integrity": "sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw==", + "postcss-colormin": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.2.tgz", + "integrity": "sha512-TXKOxs9LWcdYo5cgmcSHPkyrLAh86hX1ijmyy6J8SbOhyv6ua053M3ZAM/0j44UsnQNIWdl8gb5L7xX2htKeLw==", "dev": true, - "dependencies": { - "browserslist": "^4.21.4", + "requires": { + "browserslist": "^4.22.2", "caniuse-api": "^3.0.0", "colord": "^2.9.1", "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-convert-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.0.tgz", - "integrity": "sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw==", + "postcss-convert-values": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.2.tgz", + "integrity": "sha512-aeBmaTnGQ+NUSVQT8aY0sKyAD/BaLJenEKZ03YK0JnDE1w1Rr8XShoxdal2V2H26xTJKr3v5haByOhJuyT4UYw==", "dev": true, - "dependencies": { - "browserslist": "^4.21.4", + "requires": { + "browserslist": "^4.22.2", "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-discard-comments": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.0.tgz", - "integrity": "sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw==", - "dev": true, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "postcss-discard-comments": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz", + "integrity": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==", + "dev": true }, - "node_modules/postcss-discard-duplicates": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.0.tgz", - "integrity": "sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA==", - "dev": true, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "postcss-discard-duplicates": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz", + "integrity": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==", + "dev": true }, - "node_modules/postcss-discard-empty": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.0.tgz", - "integrity": "sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ==", - "dev": true, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "postcss-discard-empty": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz", + "integrity": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==", + "dev": true }, - "node_modules/postcss-discard-overridden": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.0.tgz", - "integrity": "sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw==", - "dev": true, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "postcss-discard-overridden": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz", + "integrity": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==", + "dev": true }, - "node_modules/postcss-loader": { + "postcss-loader": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", "dev": true, - "dependencies": { + "requires": { "cosmiconfig": "^7.0.0", "klona": "^2.0.5", "semver": "^7.3.5" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "webpack": "^5.0.0" - } - }, - "node_modules/postcss-loader/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dev": true, - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/postcss-loader/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/postcss-loader/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" } }, - "node_modules/postcss-loader/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/postcss-media-query-parser": { + "postcss-media-query-parser": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/postcss-media-query-parser/-/postcss-media-query-parser-0.2.3.tgz", "integrity": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==", "dev": true }, - "node_modules/postcss-merge-longhand": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.0.tgz", - "integrity": "sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg==", + "postcss-merge-longhand": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.2.tgz", + "integrity": "sha512-+yfVB7gEM8SrCo9w2lCApKIEzrTKl5yS1F4yGhV3kSim6JzbfLGJyhR1B6X+6vOT0U33Mgx7iv4X9MVWuaSAfw==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0", - "stylehacks": "^6.0.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "stylehacks": "^6.0.2" } }, - "node_modules/postcss-merge-rules": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.1.tgz", - "integrity": "sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw==", + "postcss-merge-rules": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.3.tgz", + "integrity": "sha512-yfkDqSHGohy8sGYIJwBmIGDv4K4/WrJPX355XrxQb/CSsT4Kc/RxDi6akqn5s9bap85AWgv21ArcUWwWdGNSHA==", "dev": true, - "dependencies": { - "browserslist": "^4.21.4", + "requires": { + "browserslist": "^4.22.2", "caniuse-api": "^3.0.0", - "cssnano-utils": "^4.0.0", - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "cssnano-utils": "^4.0.1", + "postcss-selector-parser": "^6.0.15" } }, - "node_modules/postcss-minify-font-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.0.tgz", - "integrity": "sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA==", + "postcss-minify-font-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz", + "integrity": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-minify-gradients": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.0.tgz", - "integrity": "sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA==", + "postcss-minify-gradients": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz", + "integrity": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==", "dev": true, - "dependencies": { + "requires": { "colord": "^2.9.1", - "cssnano-utils": "^4.0.0", + "cssnano-utils": "^4.0.1", "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-minify-params": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.0.tgz", - "integrity": "sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ==", + "postcss-minify-params": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.2.tgz", + "integrity": "sha512-zwQtbrPEBDj+ApELZ6QylLf2/c5zmASoOuA4DzolyVGdV38iR2I5QRMsZcHkcdkZzxpN8RS4cN7LPskOkTwTZw==", "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^4.0.0", + "requires": { + "browserslist": "^4.22.2", + "cssnano-utils": "^4.0.1", "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-minify-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.0.tgz", - "integrity": "sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g==", + "postcss-minify-selectors": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.2.tgz", + "integrity": "sha512-0b+m+w7OAvZejPQdN2GjsXLv5o0jqYHX3aoV0e7RBKPCsB7TYG5KKWBFhGnB/iP3213Ts8c5H4wLPLMm7z28Sg==", "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "requires": { + "postcss-selector-parser": "^6.0.15" } }, - "node_modules/postcss-modules-extract-imports": { + "postcss-modules-extract-imports": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } + "dev": true }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "postcss-modules-local-by-default": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz", + "integrity": "sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q==", "dev": true, - "dependencies": { + "requires": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^6.0.2", "postcss-value-parser": "^4.1.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" } }, - "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "postcss-modules-scope": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz", + "integrity": "sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA==", "dev": true, - "dependencies": { + "requires": { "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" } }, - "node_modules/postcss-modules-values": { + "postcss-modules-values": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, - "dependencies": { + "requires": { "icss-utils": "^5.0.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" } }, - "node_modules/postcss-normalize-charset": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.0.tgz", - "integrity": "sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ==", - "dev": true, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "postcss-normalize-charset": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz", + "integrity": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==", + "dev": true }, - "node_modules/postcss-normalize-display-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.0.tgz", - "integrity": "sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw==", + "postcss-normalize-display-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz", + "integrity": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-normalize-positions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.0.tgz", - "integrity": "sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg==", + "postcss-normalize-positions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz", + "integrity": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-normalize-repeat-style": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.0.tgz", - "integrity": "sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A==", + "postcss-normalize-repeat-style": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz", + "integrity": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-normalize-string": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.0.tgz", - "integrity": "sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w==", + "postcss-normalize-string": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz", + "integrity": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-normalize-timing-functions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.0.tgz", - "integrity": "sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg==", + "postcss-normalize-timing-functions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz", + "integrity": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-normalize-unicode": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.0.tgz", - "integrity": "sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg==", + "postcss-normalize-unicode": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.2.tgz", + "integrity": "sha512-Ff2VdAYCTGyMUwpevTZPZ4w0+mPjbZzLLyoLh/RMpqUqeQKZ+xMm31hkxBavDcGKcxm6ACzGk0nBfZ8LZkStKA==", "dev": true, - "dependencies": { - "browserslist": "^4.21.4", + "requires": { + "browserslist": "^4.22.2", "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-normalize-url": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.0.tgz", - "integrity": "sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw==", + "postcss-normalize-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz", + "integrity": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-normalize-whitespace": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.0.tgz", - "integrity": "sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw==", + "postcss-normalize-whitespace": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz", + "integrity": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-ordered-values": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.0.tgz", - "integrity": "sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg==", + "postcss-ordered-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz", + "integrity": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==", "dev": true, - "dependencies": { - "cssnano-utils": "^4.0.0", + "requires": { + "cssnano-utils": "^4.0.1", "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-reduce-initial": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.0.tgz", - "integrity": "sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA==", + "postcss-reduce-initial": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.2.tgz", + "integrity": "sha512-YGKalhNlCLcjcLvjU5nF8FyeCTkCO5UtvJEt0hrPZVCTtRLSOH4z00T1UntQPj4dUmIYZgMj8qK77JbSX95hSw==", "dev": true, - "dependencies": { - "browserslist": "^4.21.4", + "requires": { + "browserslist": "^4.22.2", "caniuse-api": "^3.0.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-reduce-transforms": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.0.tgz", - "integrity": "sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w==", + "postcss-reduce-transforms": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz", + "integrity": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" } }, - "node_modules/postcss-resolve-nested-selector": { + "postcss-resolve-nested-selector": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/postcss-resolve-nested-selector/-/postcss-resolve-nested-selector-0.1.1.tgz", "integrity": "sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==", "dev": true }, - "node_modules/postcss-safe-parser": { + "postcss-safe-parser": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-6.0.0.tgz", "integrity": "sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==", - "dev": true, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.3.3" - } + "dev": true }, - "node_modules/postcss-scss": { + "postcss-scss": { "version": "4.0.9", "resolved": "https://registry.npmjs.org/postcss-scss/-/postcss-scss-4.0.9.tgz", "integrity": "sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss-scss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "engines": { - "node": ">=12.0" - }, - "peerDependencies": { - "postcss": "^8.4.29" - } + "dev": true }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "postcss-selector-parser": { + "version": "6.0.15", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz", + "integrity": "sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==", "dev": true, - "dependencies": { + "requires": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" } }, - "node_modules/postcss-svgo": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.0.tgz", - "integrity": "sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw==", + "postcss-svgo": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.2.tgz", + "integrity": "sha512-IH5R9SjkTkh0kfFOQDImyy1+mTCb+E830+9SV1O+AaDcoHTvfsvt6WwJeo7KwcHbFnevZVCsXhDmjFiGVuwqFQ==", "dev": true, - "dependencies": { + "requires": { "postcss-value-parser": "^4.2.0", - "svgo": "^3.0.2" - }, - "engines": { - "node": "^14 || ^16 || >= 18" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "svgo": "^3.2.0" } }, - "node_modules/postcss-unique-selectors": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.0.tgz", - "integrity": "sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw==", + "postcss-unique-selectors": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.2.tgz", + "integrity": "sha512-8IZGQ94nechdG7Y9Sh9FlIY2b4uS8/k8kdKRX040XHsS3B6d1HrJAkXrBSsSu4SuARruSsUjW3nlSw8BHkaAYQ==", "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "requires": { + "postcss-selector-parser": "^6.0.15" } }, - "node_modules/postcss-value-parser": { + "postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, - "node_modules/prelude-ls": { + "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "engines": { - "node": ">= 0.8.0" - } + "dev": true }, - "node_modules/prettier": { - "name": "wp-prettier", - "version": "3.0.3", + "prettier": { + "version": "npm:wp-prettier@3.0.3", "resolved": "https://registry.npmjs.org/wp-prettier/-/wp-prettier-3.0.3.tgz", "integrity": "sha512-X4UlrxDTH8oom9qXlcjnydsjAOD2BmB6yFmvS4Z2zdTzqqpRWb+fbqrH412+l+OUXmbzJlSXjlMFYPgYG12IAA==", "dev": true }, - "node_modules/prettier-linter-helpers": { + "prettier-linter-helpers": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, - "dependencies": { + "requires": { "fast-diff": "^1.1.2" - }, - "engines": { - "node": ">=6.0.0" } }, - "node_modules/pretty-format": { + "pretty-format": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", "dev": true, - "dependencies": { + "requires": { "@jest/schemas": "^29.6.3", "ansi-styles": "^5.0.0", "react-is": "^18.0.0" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - } - }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "dependencies": { + "ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true + }, + "react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + } } }, - "node_modules/pretty-format/node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - "dev": true - }, - "node_modules/process-nextick-args": { + "process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true }, - "node_modules/progress": { + "progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true, - "engines": { - "node": ">=0.4.0" - } + "dev": true }, - "node_modules/prompts": { + "prompts": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, - "dependencies": { + "requires": { "kleur": "^3.0.3", "sisteransi": "^1.0.5" - }, - "engines": { - "node": ">= 6" } }, - "node_modules/prop-types": { + "prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "dev": true, - "dependencies": { + "requires": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, - "node_modules/proxy-addr": { + "proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, - "dependencies": { + "requires": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" }, - "engines": { - "node": ">= 0.10" - } - }, - "node_modules/proxy-addr/node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", - "dev": true, - "engines": { - "node": ">= 0.10" + "dependencies": { + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "dev": true + } } }, - "node_modules/proxy-agent": { + "proxy-agent": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.3.0.tgz", "integrity": "sha512-0LdR757eTj/JfuU7TL2YCuAZnxWXu3tkJbg4Oq3geW/qFNT/32T0sp2HnZ9O0lMR4q3vwAt0+xCA8SR0WAD0og==", "dev": true, - "dependencies": { + "requires": { "agent-base": "^7.0.2", "debug": "^4.3.4", "http-proxy-agent": "^7.0.0", @@ -16074,99 +12402,80 @@ "proxy-from-env": "^1.1.0", "socks-proxy-agent": "^8.0.1" }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", - "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", - "dev": true, "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/proxy-agent/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", - "dev": true, - "engines": { - "node": ">=12" + "agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "requires": { + "debug": "^4.3.4" + } + }, + "https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dev": true, + "requires": { + "agent-base": "^7.0.2", + "debug": "4" + } + }, + "lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true + } } }, - "node_modules/proxy-from-env": { + "proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", "dev": true }, - "node_modules/ps-list": { + "ps-list": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/ps-list/-/ps-list-8.1.1.tgz", "integrity": "sha512-OPS9kEJYVmiO48u/B9qneqhkMvgCxT+Tm28VCEJpheTpl8cJ0ffZRRNgS5mrQRTrX5yRTpaJ+hRDeefXYmmorQ==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/pseudomap": { + "pseudomap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", "dev": true }, - "node_modules/psl": { + "psl": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", "dev": true }, - "node_modules/pump": { + "pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dev": true, - "dependencies": { + "requires": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, - "node_modules/punycode": { + "punycode": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/puppeteer-core": { + "puppeteer-core": { "version": "13.7.0", "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-13.7.0.tgz", "integrity": "sha512-rXja4vcnAzFAP1OVLq/5dWNfwBGuzcOARJ6qGV7oAZhnLmVRU8G5MsdeQEAOy332ZhkIOnn9jp15R89LKHyp2Q==", "dev": true, - "dependencies": { + "requires": { "cross-fetch": "3.1.5", "debug": "4.3.4", "devtools-protocol": "0.0.981744", @@ -16180,1071 +12489,716 @@ "unbzip2-stream": "1.4.3", "ws": "8.5.0" }, - "engines": { - "node": ">=10.18.1" - } - }, - "node_modules/puppeteer-core/node_modules/cross-fetch": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", - "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", - "dev": true, - "dependencies": { - "node-fetch": "2.6.7" - } - }, - "node_modules/puppeteer-core/node_modules/devtools-protocol": { - "version": "0.0.981744", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.981744.tgz", - "integrity": "sha512-0cuGS8+jhR67Fy7qG3i3Pc7Aw494sb9yG9QgpG97SFVWwolgYjlhJg7n+UaHxOQT30d1TYu/EYe9k01ivLErIg==", - "dev": true - }, - "node_modules/puppeteer-core/node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, - "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/puppeteer-core/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/puppeteer-core/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/puppeteer-core/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/puppeteer-core/node_modules/tar-fs": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", - "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", - "dev": true, - "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", - "pump": "^3.0.0", - "tar-stream": "^2.1.4" - } - }, - "node_modules/puppeteer-core/node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "dev": true, "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/puppeteer-core/node_modules/ws": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", - "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true + "cross-fetch": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/cross-fetch/-/cross-fetch-3.1.5.tgz", + "integrity": "sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw==", + "dev": true, + "requires": { + "node-fetch": "2.6.7" + } }, - "utf-8-validate": { - "optional": true + "devtools-protocol": { + "version": "0.0.981744", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.981744.tgz", + "integrity": "sha512-0cuGS8+jhR67Fy7qG3i3Pc7Aw494sb9yG9QgpG97SFVWwolgYjlhJg7n+UaHxOQT30d1TYu/EYe9k01ivLErIg==", + "dev": true + }, + "node-fetch": { + "version": "2.6.7", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", + "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", + "dev": true, + "requires": { + "whatwg-url": "^5.0.0" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "requires": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "requires": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + } + }, + "ws": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz", + "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==", + "dev": true } } }, - "node_modules/pure-rand": { + "pure-rand": { "version": "6.0.4", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", - "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/dubzzz" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/fast-check" - } - ] + "dev": true }, - "node_modules/qs": { + "qs": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", "dev": true, - "dependencies": { + "requires": { "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/querystringify": { + "querystringify": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", "dev": true }, - "node_modules/queue-microtask": { + "queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "dev": true }, - "node_modules/queue-tick": { + "queue-tick": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", "dev": true }, - "node_modules/quick-lru": { + "quick-lru": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/randombytes": { + "randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, - "dependencies": { + "requires": { "safe-buffer": "^5.1.0" } }, - "node_modules/range-parser": { + "range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } + "dev": true }, - "node_modules/raw-body": { + "raw-body": { "version": "2.5.1", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, - "dependencies": { + "requires": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, - "engines": { - "node": ">= 0.8" + "dependencies": { + "bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + } } }, - "node_modules/raw-body/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz", + "integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==", "dev": true, - "engines": { - "node": ">= 0.8" + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" } }, - "node_modules/raw-body/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "react-dom": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz", + "integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==", "dev": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.2" } }, - "node_modules/react-is": { + "react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "dev": true }, - "node_modules/react-refresh": { + "react-refresh": { "version": "0.14.0", "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/read-pkg": { + "read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, - "dependencies": { + "requires": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" }, - "engines": { - "node": ">=8" + "dependencies": { + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true + }, + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true + } } }, - "node_modules/read-pkg-up": { + "read-pkg-up": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, - "dependencies": { + "requires": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", "type-fest": "^0.8.1" }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", - "dev": true, - "engines": { - "node": ">=8" + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + } } }, - "node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } }, - "node_modules/readdirp": { + "readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, - "dependencies": { + "requires": { "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" } }, - "node_modules/readjson": { + "readjson": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/readjson/-/readjson-2.2.2.tgz", "integrity": "sha512-PdeC9tsmLWBiL8vMhJvocq+OezQ3HhsH2HrN7YkhfYcTjQSa/iraB15A7Qvt7Xpr0Yd2rDNt6GbFwVQDg3HcAw==", "dev": true, - "dependencies": { + "requires": { "jju": "^1.4.0", "try-catch": "^3.0.0" - }, - "engines": { - "node": ">=10" } }, - "node_modules/rechoir": { + "rechoir": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", "dev": true, - "dependencies": { + "requires": { "resolve": "^1.20.0" - }, - "engines": { - "node": ">= 10.13.0" } }, - "node_modules/redent": { + "redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, - "dependencies": { + "requires": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/reflect.getprototypeof": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", - "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "reflect.getprototypeof": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz", + "integrity": "sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", + "requires": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.0.0", + "get-intrinsic": "^1.2.3", "globalthis": "^1.0.3", "which-builtin-type": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/regenerate": { + "regenerate": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", "dev": true }, - "node_modules/regenerate-unicode-properties": { + "regenerate-unicode-properties": { "version": "10.1.1", "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", "dev": true, - "dependencies": { + "requires": { "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" } }, - "node_modules/regenerator-runtime": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", - "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", "dev": true }, - "node_modules/regenerator-transform": { + "regenerator-transform": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "dev": true, - "dependencies": { + "requires": { "@babel/runtime": "^7.8.4" } }, - "node_modules/regexp.prototype.flags": { + "regexp.prototype.flags": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "set-function-name": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/regexpu-core": { + "regexpu-core": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "dev": true, - "dependencies": { + "requires": { "@babel/regjsgen": "^0.8.0", "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.1.0", "regjsparser": "^0.9.1", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" } }, - "node_modules/regextras": { + "regextras": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/regextras/-/regextras-0.8.0.tgz", "integrity": "sha512-k519uI04Z3SaY0fLX843MRXnDeG2+vHOFsyhiPZvNLe7r8rD2YNRjq4BQLZZ0oAr2NrtvZlICsXysGNFPGa3CQ==", - "dev": true, - "engines": { - "node": ">=0.1.14" - } + "dev": true }, - "node_modules/regjsparser": { + "regjsparser": { "version": "0.9.1", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dev": true, - "dependencies": { + "requires": { "jsesc": "~0.5.0" }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "dev": true + } } }, - "node_modules/relateurl": { + "relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", - "dev": true, - "engines": { - "node": ">= 0.10" - } + "dev": true }, - "node_modules/remove-accents": { + "remove-accents": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/remove-accents/-/remove-accents-0.5.0.tgz", "integrity": "sha512-8g3/Otx1eJaVD12e31UbJj1YzdtVvzH85HV7t+9MJYk/u3XmkOUJ5Ys9wQrf9PCPK8+xn4ymzqYCiZl6QWKn+A==", "dev": true }, - "node_modules/require-directory": { + "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/require-from-string": { + "require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/requireindex": { + "requireindex": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/requireindex/-/requireindex-1.2.0.tgz", "integrity": "sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==", - "dev": true, - "engines": { - "node": ">=0.10.5" - } + "dev": true }, - "node_modules/requires-port": { + "requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true }, - "node_modules/resolve": { + "resolve": { "version": "1.22.8", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", "dev": true, - "dependencies": { + "requires": { "is-core-module": "^2.13.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/resolve-bin": { + "resolve-bin": { "version": "0.4.3", "resolved": "https://registry.npmjs.org/resolve-bin/-/resolve-bin-0.4.3.tgz", "integrity": "sha512-9u8TMpc+SEHXxQXblXHz5yRvRZERkCZimFN9oz85QI3uhkh7nqfjm6OGTLg+8vucpXGcY4jLK6WkylPmt7GSvw==", "dev": true, - "dependencies": { + "requires": { "find-parent-dir": "~0.3.0" } }, - "node_modules/resolve-cwd": { + "resolve-cwd": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, - "dependencies": { + "requires": { "resolve-from": "^5.0.0" }, - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-cwd/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + } } }, - "node_modules/resolve-dir": { + "resolve-dir": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-0.1.1.tgz", "integrity": "sha512-QxMPqI6le2u0dCLyiGzgy92kjkkL6zO0XyvHzjdTNH3zM6e5Hz3BwG6+aEyNgiQ5Xz6PwTwgQEj3U50dByPKIA==", "dev": true, - "dependencies": { + "requires": { "expand-tilde": "^1.2.2", "global-modules": "^0.2.3" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/resolve-from": { + "resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/resolve.exports": { + "resolve.exports": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", - "dev": true, - "engines": { - "node": ">=10" - } + "dev": true }, - "node_modules/retry": { + "retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", - "dev": true, - "engines": { - "node": ">= 4" - } + "dev": true }, - "node_modules/reusify": { + "reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/rimraf": { + "rimraf": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", "dev": true, - "dependencies": { + "requires": { "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" } }, - "node_modules/robots-parser": { + "robots-parser": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/robots-parser/-/robots-parser-3.0.1.tgz", "integrity": "sha512-s+pyvQeIKIZ0dx5iJiQk1tPLJAWln39+MI5jtM8wnyws+G5azk+dMnMX0qfbqNetKKNgcWWOdi0sfm+FbQbgdQ==", - "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/run-applescript": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", - "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", - "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/run-applescript/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/run-applescript/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/run-applescript/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/run-con": { + "run-con": { "version": "1.2.12", "resolved": "https://registry.npmjs.org/run-con/-/run-con-1.2.12.tgz", "integrity": "sha512-5257ILMYIF4RztL9uoZ7V9Q97zHtNHn5bN3NobeAnzB1P3ASLgg8qocM2u+R18ttp+VEM78N2LK8XcNVtnSRrg==", "dev": true, - "dependencies": { + "requires": { "deep-extend": "^0.6.0", "ini": "~3.0.0", "minimist": "^1.2.8", "strip-json-comments": "~3.1.1" }, - "bin": { - "run-con": "cli.js" - } - }, - "node_modules/run-con/node_modules/ini": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", - "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", - "dev": true, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/run-con/node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "ini": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-3.0.1.tgz", + "integrity": "sha512-it4HyVAUTKBc6m8e1iXWvXSTdndF7HbdN713+kvLrymxTaU4AUBWrJ4vEooP+V7fexnVD3LKcBshjGGPefSMUQ==", + "dev": true + } } }, - "node_modules/run-parallel": { + "run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { + "requires": { "queue-microtask": "^1.2.2" } }, - "node_modules/rxjs": { + "rxjs": { "version": "7.8.1", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dev": true, - "dependencies": { + "requires": { "tslib": "^2.1.0" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "safe-array-concat": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", + "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", + "requires": { + "call-bind": "^1.0.5", + "get-intrinsic": "^1.2.2", "has-symbols": "^1.0.3", "isarray": "^2.0.5" - }, - "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/safe-array-concat/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/safe-buffer": { + "safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "dev": true }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/safer-buffer": { + "safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true }, - "node_modules/sass": { - "version": "1.69.5", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.5.tgz", - "integrity": "sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==", + "sass": { + "version": "1.70.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.70.0.tgz", + "integrity": "sha512-uUxNQ3zAHeAx5nRFskBnrWzDUJrrvpCPD5FNAoRvTi0WwremlheES3tg+56PaVtCs5QDRX5CBLxxKMDJMEa1WQ==", "dev": true, - "dependencies": { + "requires": { "chokidar": ">=3.0.0 <4.0.0", "immutable": "^4.0.0", "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" - }, - "engines": { - "node": ">=14.0.0" } }, - "node_modules/sass-loader": { + "sass-loader": { "version": "12.6.0", "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-12.6.0.tgz", "integrity": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==", "dev": true, - "dependencies": { + "requires": { "klona": "^2.0.4", "neo-async": "^2.6.2" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "fibers": ">= 3.1.0", - "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", - "sass": "^1.3.0", - "sass-embedded": "*", - "webpack": "^5.0.0" - }, - "peerDependenciesMeta": { - "fibers": { - "optional": true - }, - "node-sass": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - } } }, - "node_modules/saxes": { + "saxes": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", "dev": true, - "dependencies": { + "requires": { "xmlchars": "^2.2.0" - }, - "engines": { - "node": ">=v12.22.7" } }, - "node_modules/schema-utils": { + "scheduler": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.2.tgz", + "integrity": "sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==", + "dev": true, + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, - "dependencies": { + "requires": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" } }, - "node_modules/select-hose": { + "select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", "dev": true }, - "node_modules/selfsigned": { + "selfsigned": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", "dev": true, - "dependencies": { + "requires": { "@types/node-forge": "^1.3.0", "node-forge": "^1" - }, - "engines": { - "node": ">=10" } }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "requires": { + "lru-cache": "^6.0.0" } }, - "node_modules/send": { + "send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", "dev": true, - "dependencies": { + "requires": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", @@ -17259,69 +13213,72 @@ "range-parser": "~1.2.1", "statuses": "2.0.1" }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/send/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4" + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + } + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + } } }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, - "node_modules/sentence-case": { + "sentence-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", "dev": true, - "dependencies": { + "requires": { "no-case": "^3.0.4", "tslib": "^2.0.3", "upper-case-first": "^2.0.2" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "dev": true, - "dependencies": { + "requires": { "randombytes": "^2.1.0" } }, - "node_modules/serve-index": { + "serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, - "dependencies": { + "requires": { "accepts": "~1.3.4", "batch": "0.6.1", "debug": "2.6.9", @@ -17330,476 +13287,416 @@ "mime-types": "~2.1.17", "parseurl": "~1.3.2" }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/serve-index/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/serve-index/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-index/node_modules/http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", - "dev": true, "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/serve-index/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", - "dev": true - }, - "node_modules/serve-index/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/serve-index/node_modules/setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - }, - "node_modules/serve-index/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "dev": true, - "engines": { - "node": ">= 0.6" + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "dev": true + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", + "dev": true, + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", + "dev": true + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "dev": true + } } }, - "node_modules/serve-static": { + "serve-static": { "version": "1.15.0", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", "dev": true, - "dependencies": { + "requires": { "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.18.0" - }, - "engines": { - "node": ">= 0.8.0" } }, - "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "set-function-length": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", + "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", "dev": true, - "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", + "requires": { + "define-data-property": "^1.1.2", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.3", "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" + "has-property-descriptors": "^1.0.1" } }, - "node_modules/set-function-name": { + "set-function-name": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", "dev": true, - "dependencies": { + "requires": { "define-data-property": "^1.0.1", "functions-have-names": "^1.2.3", "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" } }, - "node_modules/setprototypeof": { + "setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true }, - "node_modules/shallow-clone": { + "shallow-clone": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz", "integrity": "sha512-J1zdXCky5GmNnuauESROVu31MQSnLoYvlyEn6j2Ztk6Q5EHFIhxkMhYcv6vuDzl2XEzoRr856QwzMgWM/TmZgw==", "dev": true, - "dependencies": { + "requires": { "is-extendable": "^0.1.1", "kind-of": "^2.0.1", "lazy-cache": "^0.2.3", "mixin-object": "^2.0.1" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/shallow-clone/node_modules/kind-of": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", - "integrity": "sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==", - "dev": true, "dependencies": { - "is-buffer": "^1.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/shallow-clone/node_modules/lazy-cache": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz", - "integrity": "sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "kind-of": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", + "integrity": "sha512-0u8i1NZ/mg0b+W3MGGw5I7+6Eib2nx72S/QvXa0hYjEkjTknYmEYQJwGu3mLC0BrhtJjtQafTkyRUQ75Kx0LVg==", + "dev": true, + "requires": { + "is-buffer": "^1.0.2" + } + }, + "lazy-cache": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz", + "integrity": "sha512-gkX52wvU/R8DVMMt78ATVPFMJqfW8FPz1GZ1sVHBVQHmu/WvhIWE4cE1GBzhJNFicDeYhnwp6Rl35BcAIM3YOQ==", + "dev": true + } } }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" + "requires": { + "shebang-regex": "^1.0.0" } }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true }, - "node_modules/shell-quote": { + "shell-quote": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "side-channel": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz", + "integrity": "sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==", "dev": true, - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" } }, - "node_modules/signal-exit": { + "signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "node_modules/sirv": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.3.tgz", - "integrity": "sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==", + "sirv": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", + "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", "dev": true, - "dependencies": { - "@polka/url": "^1.0.0-next.20", - "mrmime": "^1.0.0", + "requires": { + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", "totalist": "^3.0.0" - }, - "engines": { - "node": ">= 10" } }, - "node_modules/sisteransi": { + "sisteransi": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", "dev": true }, - "node_modules/slash": { + "slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/slice-ansi": { + "slice-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, - "dependencies": { - "color-name": "~1.1.4" + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, - "engines": { - "node": ">=7.0.0" + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } } }, - "node_modules/slice-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/smart-buffer": { + "smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", - "dev": true, - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } + "dev": true }, - "node_modules/snake-case": { + "snake-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", "dev": true, - "dependencies": { + "requires": { "dot-case": "^3.0.4", "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/sockjs": { + "sockjs": { "version": "0.3.24", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dev": true, - "dependencies": { + "requires": { "faye-websocket": "^0.11.3", "uuid": "^8.3.2", "websocket-driver": "^0.7.4" } }, - "node_modules/socks": { + "socks": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", "dev": true, - "dependencies": { + "requires": { "ip": "^2.0.0", "smart-buffer": "^4.2.0" }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" + "dependencies": { + "ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + } } }, - "node_modules/socks-proxy-agent": { + "socks-proxy-agent": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", "dev": true, - "dependencies": { + "requires": { "agent-base": "^7.0.2", "debug": "^4.3.4", "socks": "^2.7.1" }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/socks-proxy-agent/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", - "dev": true, "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" + "agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "requires": { + "debug": "^4.3.4" + } + } } }, - "node_modules/socks/node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", "dev": true }, - "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-js": { + "source-map-js": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "dev": true }, - "node_modules/source-map-loader": { + "source-map-loader": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/source-map-loader/-/source-map-loader-3.0.2.tgz", "integrity": "sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==", "dev": true, - "dependencies": { + "requires": { "abab": "^2.0.5", "iconv-lite": "^0.6.3", "source-map-js": "^1.0.1" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" } }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, - "dependencies": { + "requires": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" + }, + "dependencies": { + "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 + } } }, - "node_modules/spawnd": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/spawnd/-/spawnd-6.2.0.tgz", - "integrity": "sha512-qX/I4lQy4KgVEcNle0kuc4FxFWHISzBhZW1YemPfwmrmQjyZmfTK/OhBKkhrD2ooAaFZEm1maEBLE6/6enwt+g==", + "spawnd": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/spawnd/-/spawnd-9.0.2.tgz", + "integrity": "sha512-nl8DVHEDQ57IcKakzpjanspVChkMpGLuVwMR/eOn9cXE55Qr6luD2Kn06sA0ootRMdgrU4tInN6lA6ohTNvysw==", "dev": true, - "dependencies": { - "exit": "^0.1.2", - "signal-exit": "^3.0.7", + "requires": { + "signal-exit": "^4.1.0", "tree-kill": "^1.2.2" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + } } }, - "node_modules/spdx-correct": { + "spdx-correct": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, - "dependencies": { + "requires": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "spdx-exceptions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz", + "integrity": "sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==", "dev": true }, - "node_modules/spdx-expression-parse": { + "spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, - "dependencies": { + "requires": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, - "node_modules/spdx-license-ids": { + "spdx-license-ids": { "version": "3.0.16", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", "dev": true }, - "node_modules/spdy": { + "spdy": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "dev": true, - "dependencies": { + "requires": { "debug": "^4.1.0", "handle-thing": "^2.0.0", "http-deceiver": "^1.2.7", "select-hose": "^2.0.0", "spdy-transport": "^3.0.0" - }, - "engines": { - "node": ">=6.0.0" } }, - "node_modules/spdy-transport": { + "spdy-transport": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "dev": true, - "dependencies": { + "requires": { "debug": "^4.1.0", "detect-node": "^2.0.4", "hpack.js": "^2.1.6", @@ -17808,134 +13705,97 @@ "wbuf": "^1.7.3" } }, - "node_modules/spdy-transport/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/spdy-transport/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/speedline-core": { + "speedline-core": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/speedline-core/-/speedline-core-1.4.3.tgz", "integrity": "sha512-DI7/OuAUD+GMpR6dmu8lliO2Wg5zfeh+/xsdyJZCzd8o5JgFUjCeLsBDuZjIQJdwXS3J0L/uZYrELKYqx+PXog==", "dev": true, - "dependencies": { + "requires": { "@types/node": "*", "image-ssim": "^0.2.0", "jpeg-js": "^0.4.1" - }, - "engines": { - "node": ">=8.0" } }, - "node_modules/sprintf-js": { + "sprintf-js": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", "dev": true }, - "node_modules/stack-utils": { + "stack-utils": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, - "dependencies": { + "requires": { "escape-string-regexp": "^2.0.0" }, - "engines": { - "node": ">=10" - } - }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", - "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true + } } }, - "node_modules/stackframe": { + "stackframe": { "version": "1.3.4", "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==", "dev": true }, - "node_modules/statuses": { + "statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } + "dev": true }, - "node_modules/streamx": { - "version": "2.15.5", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.5.tgz", - "integrity": "sha512-9thPGMkKC2GctCzyCUjME3yR03x2xNo0GPKGkRw2UMYN+gqWa9uqpyNWhmsNCutU5zHmkUum0LsCRQTXUgUCAg==", + "streamx": { + "version": "2.15.7", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.7.tgz", + "integrity": "sha512-NPEKS5+yjyo597eafGbKW5ujh7Sm6lDLHZQd/lRSz6S0VarpADBJItqfB4PnwpS+472oob1GX5cCY9vzfJpHUA==", "dev": true, - "dependencies": { + "requires": { "fast-fifo": "^1.1.0", "queue-tick": "^1.0.1" } }, - "node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "dev": true - }, - "node_modules/string-length": { + "string-length": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, - "dependencies": { + "requires": { "char-regex": "^1.0.2", "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" } }, - "node_modules/string-width": { + "string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, - "dependencies": { + "requires": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, - "engines": { - "node": ">=8" + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + } } }, - "node_modules/string.prototype.matchall": { + "string.prototype.matchall": { "version": "4.0.10", "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1", @@ -17945,150 +13805,117 @@ "regexp.prototype.flags": "^1.5.0", "set-function-name": "^2.0.0", "side-channel": "^1.0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/string.prototype.trim": { + "string.prototype.trim": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/string.prototype.trimend": { + "string.prototype.trimend": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/string.prototype.trimstart": { + "string.prototype.trimstart": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "define-properties": "^1.2.0", "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/strip-ansi": { + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, - "dependencies": { + "requires": { "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" } }, - "node_modules/strip-bom": { + "strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/strip-final-newline": { + "strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/strip-indent": { + "strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, - "dependencies": { + "requires": { "min-indent": "^1.0.0" - }, - "engines": { - "node": ">=8" } }, - "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": "sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==", - "dev": true, - "bin": { - "strip-json-comments": "cli.js" - }, - "engines": { - "node": ">=0.8.0" - } + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true }, - "node_modules/strip-outer": { + "strip-outer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", "dev": true, - "dependencies": { + "requires": { "escape-string-regexp": "^1.0.2" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/style-search": { + "style-search": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", "dev": true }, - "node_modules/stylehacks": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.0.tgz", - "integrity": "sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw==", + "stylehacks": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.2.tgz", + "integrity": "sha512-00zvJGnCu64EpMjX8b5iCZ3us2Ptyw8+toEkb92VdmkEaRaSGBNKAoK6aWZckhXxmQP8zWiTaFaiMGIU8Ve8sg==", "dev": true, - "dependencies": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "requires": { + "browserslist": "^4.22.2", + "postcss-selector-parser": "^6.0.15" } }, - "node_modules/stylelint": { + "stylelint": { "version": "14.16.1", "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.16.1.tgz", "integrity": "sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A==", "dev": true, - "dependencies": { + "requires": { "@csstools/selector-specificity": "^2.0.2", "balanced-match": "^2.0.0", "colord": "^2.9.3", @@ -18128,1217 +13955,877 @@ "v8-compile-cache": "^2.3.0", "write-file-atomic": "^4.0.2" }, - "bin": { - "stylelint": "bin/stylelint.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/stylelint" + "dependencies": { + "balanced-match": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", + "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", + "dev": true + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "dev": true, + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "dev": true, + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + } + } } }, - "node_modules/stylelint-config-recommended": { + "stylelint-config-recommended": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/stylelint-config-recommended/-/stylelint-config-recommended-6.0.0.tgz", "integrity": "sha512-ZorSSdyMcxWpROYUvLEMm0vSZud2uB7tX1hzBZwvVY9SV/uly4AvvJPPhCcymZL3fcQhEQG5AELmrxWqtmzacw==", - "dev": true, - "peerDependencies": { - "stylelint": "^14.0.0" - } + "dev": true }, - "node_modules/stylelint-config-recommended-scss": { + "stylelint-config-recommended-scss": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/stylelint-config-recommended-scss/-/stylelint-config-recommended-scss-5.0.2.tgz", "integrity": "sha512-b14BSZjcwW0hqbzm9b0S/ScN2+3CO3O4vcMNOw2KGf8lfVSwJ4p5TbNEXKwKl1+0FMtgRXZj6DqVUe/7nGnuBg==", "dev": true, - "dependencies": { + "requires": { "postcss-scss": "^4.0.2", "stylelint-config-recommended": "^6.0.0", "stylelint-scss": "^4.0.0" - }, - "peerDependencies": { - "stylelint": "^14.0.0" } }, - "node_modules/stylelint-scss": { + "stylelint-scss": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/stylelint-scss/-/stylelint-scss-4.7.0.tgz", "integrity": "sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg==", "dev": true, - "dependencies": { + "requires": { "postcss-media-query-parser": "^0.2.3", "postcss-resolve-nested-selector": "^0.1.1", "postcss-selector-parser": "^6.0.11", "postcss-value-parser": "^4.2.0" - }, - "peerDependencies": { - "stylelint": "^14.5.1 || ^15.0.0" - } - }, - "node_modules/stylelint/node_modules/balanced-match": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-2.0.0.tgz", - "integrity": "sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==", - "dev": true - }, - "node_modules/stylelint/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dev": true, - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/stylelint/node_modules/global-modules": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", - "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", - "dev": true, - "dependencies": { - "global-prefix": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/stylelint/node_modules/global-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", - "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", - "dev": true, - "dependencies": { - "ini": "^1.3.5", - "kind-of": "^6.0.2", - "which": "^1.3.1" - }, - "engines": { - "node": ">=6" } }, - "node_modules/stylelint/node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stylelint/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/stylelint/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/stylelint/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/stylelint/node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/supports-color": { + "supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, - "dependencies": { + "requires": { "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" } }, - "node_modules/supports-hyperlinks": { + "supports-hyperlinks": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", "dev": true, - "dependencies": { + "requires": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, - "node_modules/supports-preserve-symlinks-flag": { + "supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "dev": true }, - "node_modules/svg-parser": { + "svg-parser": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", "dev": true }, - "node_modules/svg-tags": { + "svg-tags": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", "dev": true }, - "node_modules/svgo": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.0.3.tgz", - "integrity": "sha512-X4UZvLhOglD5Xrp834HzGHf8RKUW0Ahigg/08yRO1no9t2NxffOkMiQ0WmaMIbaGlVTlSst2zWANsdhz5ybXgA==", + "svgo": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.2.0.tgz", + "integrity": "sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==", "dev": true, - "dependencies": { + "requires": { "@trysound/sax": "0.2.0", "commander": "^7.2.0", "css-select": "^5.1.0", - "css-tree": "^2.2.1", - "csso": "5.0.5", + "css-tree": "^2.3.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", "picocolors": "^1.0.0" - }, - "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/svgo" } }, - "node_modules/svgo/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/symbol-tree": { + "symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", "dev": true }, - "node_modules/synckit": { - "version": "0.8.6", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.6.tgz", - "integrity": "sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA==", + "synckit": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.8.tgz", + "integrity": "sha512-HwOKAP7Wc5aRGYdKH+dw0PRRpbO841v2DENBtjnR5HFWoiNByAl7vrx3p0G/rCyYXQsrxqtX48TImFtPcIHSpQ==", "dev": true, - "dependencies": { - "@pkgr/utils": "^2.4.2", + "requires": { + "@pkgr/core": "^0.1.0", "tslib": "^2.6.2" }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/unts" + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/synckit/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true - }, - "node_modules/table": { + "table": { "version": "6.8.1", "resolved": "https://registry.npmjs.org/table/-/table-6.8.1.tgz", "integrity": "sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==", "dev": true, - "dependencies": { + "requires": { "ajv": "^8.0.1", "lodash.truncate": "^4.4.2", "slice-ansi": "^4.0.0", "string-width": "^4.2.3", "strip-ansi": "^6.0.1" }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/table/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + } } }, - "node_modules/table/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/tannin": { + "tannin": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/tannin/-/tannin-1.2.0.tgz", "integrity": "sha512-U7GgX/RcSeUETbV7gYgoz8PD7Ni4y95pgIP/Z6ayI3CfhSujwKEBlGFTCRN+Aqnuyf4AN2yHL+L8x+TCGjb9uA==", "dev": true, - "dependencies": { + "requires": { "@tannin/plural-forms": "^1.1.0" } }, - "node_modules/tapable": { + "tapable": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/tar-fs": { + "tar-fs": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.4.tgz", "integrity": "sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==", "dev": true, - "dependencies": { + "requires": { "mkdirp-classic": "^0.5.2", "pump": "^3.0.0", "tar-stream": "^3.1.5" } }, - "node_modules/tar-stream": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.6.tgz", - "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "tar-stream": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", "dev": true, - "dependencies": { + "requires": { "b4a": "^1.6.4", "fast-fifo": "^1.2.0", "streamx": "^2.15.0" } }, - "node_modules/terser": { - "version": "5.16.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.16.1.tgz", - "integrity": "sha512-xvQfyfA1ayT0qdK47zskQgRZeWLoOQ8JQ6mIgRGVNwZKdQMU+5FkCBjmv4QjcrTzyZquRw2FVtlJSRUmMKQslw==", + "terser": { + "version": "5.27.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.27.0.tgz", + "integrity": "sha512-bi1HRwVRskAjheeYl291n3JC4GgO/Ty4z1nVs5AAsmonJulGxpSektecnNedrwK9C7vpvVtcX3cw00VSLt7U2A==", "dev": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", + "requires": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=10" + "dependencies": { + "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 + }, + "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 + }, + "source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + } } }, - "node_modules/terser-webpack-plugin": { - "version": "5.3.9", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", - "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.17", + "requires": { + "@jridgewell/trace-mapping": "^0.3.20", "jest-worker": "^27.4.5", "schema-utils": "^3.1.1", "serialize-javascript": "^6.0.1", - "terser": "^5.16.8" + "terser": "^5.26.0" }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.1.0" - }, - "peerDependenciesMeta": { - "@swc/core": { - "optional": true + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true }, - "esbuild": { - "optional": true + "jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + } }, - "uglify-js": { - "optional": true + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } } } }, - "node_modules/terser-webpack-plugin/node_modules/@jridgewell/source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", - "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "node_modules/terser-webpack-plugin/node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/terser-webpack-plugin/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-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/terser-webpack-plugin/node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", - "dev": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/terser-webpack-plugin/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/terser-webpack-plugin/node_modules/terser": { - "version": "5.24.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.24.0.tgz", - "integrity": "sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==", - "dev": true, - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "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/test-exclude": { + "test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, - "dependencies": { + "requires": { "@istanbuljs/schema": "^0.1.2", "glob": "^7.1.4", "minimatch": "^3.0.4" - }, - "engines": { - "node": ">=8" } }, - "node_modules/text-table": { + "text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true }, - "node_modules/third-party-web": { + "third-party-web": { "version": "0.23.4", "resolved": "https://registry.npmjs.org/third-party-web/-/third-party-web-0.23.4.tgz", "integrity": "sha512-kwYnSZRhEvv0SBW2fp8SBBKRglMoBjV8xz6C31m0ewqOtknB5UL+Ihg+M81hyFY5ldkZuGWPb+e4GVDkzf/gYg==", "dev": true }, - "node_modules/through": { + "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, - "node_modules/thunky": { + "thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, - "node_modules/titleize": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", - "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tmpl": { + "tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, - "node_modules/to-fast-properties": { + "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/to-regex-range": { + "to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, - "dependencies": { + "requires": { "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" } }, - "node_modules/toidentifier": { + "toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "dev": true, - "engines": { - "node": ">=0.6" - } + "dev": true }, - "node_modules/totalist": { + "totalist": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/tough-cookie": { + "tough-cookie": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, - "dependencies": { + "requires": { "psl": "^1.1.33", "punycode": "^2.1.1", "universalify": "^0.2.0", "url-parse": "^1.5.3" }, - "engines": { - "node": ">=6" - } - }, - "node_modules/tough-cookie/node_modules/universalify": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", - "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" + "dependencies": { + "universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true + } } }, - "node_modules/tr46": { + "tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, - "node_modules/tree-kill": { + "tree-kill": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", - "dev": true, - "bin": { - "tree-kill": "cli.js" - } + "dev": true }, - "node_modules/trim-newlines": { + "trim-newlines": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/trim-repeated": { + "trim-repeated": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", "dev": true, - "dependencies": { + "requires": { "escape-string-regexp": "^1.0.2" - }, - "engines": { - "node": ">=0.10.0" } }, - "node_modules/try-catch": { + "try-catch": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/try-catch/-/try-catch-3.0.1.tgz", "integrity": "sha512-91yfXw1rr/P6oLpHSyHDOHm0vloVvUoo9FVdw8YwY05QjJQG9OT0LUxe2VRAzmHG+0CUOmI3nhxDUMLxDN/NEQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true }, - "node_modules/try-to-catch": { + "try-to-catch": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/try-to-catch/-/try-to-catch-3.0.1.tgz", "integrity": "sha512-hOY83V84Hx/1sCzDSaJA+Xz2IIQOHRvjxzt+F0OjbQGPZ6yLPLArMA0gw/484MlfUkQbCpKYMLX3VDCAjWKfzQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "dev": true + }, + "ts-api-utils": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.2.1.tgz", + "integrity": "sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==", + "dev": true }, - "node_modules/tsconfig-paths": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", - "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, - "dependencies": { + "requires": { "@types/json5": "^0.0.29", "json5": "^1.0.2", "minimist": "^1.2.6", "strip-bom": "^3.0.0" - } - }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dev": true, - "dependencies": { - "minimist": "^1.2.0" }, - "bin": { - "json5": "lib/cli.js" + "dependencies": { + "json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "requires": { + "minimist": "^1.2.0" + } + } } }, - "node_modules/tslib": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==", + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", "dev": true }, - "node_modules/tsutils": { + "tsutils": { "version": "3.21.0", "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", "dev": true, - "dependencies": { + "requires": { "tslib": "^1.8.1" - }, - "engines": { - "node": ">= 6" - }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" } }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/type-check": { + "type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, - "dependencies": { + "requires": { "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" } }, - "node_modules/type-detect": { + "type-detect": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", - "dev": true, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/type-fest": { + "type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "dev": true }, - "node_modules/type-is": { + "type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, - "dependencies": { + "requires": { "media-typer": "0.3.0", "mime-types": "~2.1.24" - }, - "engines": { - "node": ">= 0.6" } }, - "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "typed-array-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.1.tgz", + "integrity": "sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" + "requires": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" } }, - "node_modules/typed-array-byte-length": { + "typed-array-byte-length": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "for-each": "^0.3.3", "has-proto": "^1.0.1", "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typed-array-byte-offset": { + "typed-array-byte-offset": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", "dev": true, - "dependencies": { + "requires": { "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", "for-each": "^0.3.3", "has-proto": "^1.0.1", "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typed-array-length": { + "typed-array-length": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "for-each": "^0.3.3", "is-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typedarray-to-buffer": { + "typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", "dev": true, - "dependencies": { + "requires": { "is-typedarray": "^1.0.0" } }, - "node_modules/uc.micro": { + "uc.micro": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz", "integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==", "dev": true }, - "node_modules/unbox-primitive": { + "unbox-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, - "dependencies": { + "requires": { "call-bind": "^1.0.2", "has-bigints": "^1.0.2", "has-symbols": "^1.0.3", "which-boxed-primitive": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/unbzip2-stream": { + "unbzip2-stream": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", "dev": true, - "dependencies": { + "requires": { "buffer": "^5.2.1", "through": "^2.3.8" } }, - "node_modules/undici-types": { + "undici-types": { "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", "dev": true }, - "node_modules/unicode-canonical-property-names-ecmascript": { + "unicode-canonical-property-names-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", - "dev": true, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/unicode-match-property-ecmascript": { + "unicode-match-property-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, - "dependencies": { + "requires": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" } }, - "node_modules/unicode-match-property-value-ecmascript": { + "unicode-match-property-value-ecmascript": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", - "dev": true, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/unicode-property-aliases-ecmascript": { + "unicode-property-aliases-ecmascript": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "dev": true, - "engines": { - "node": ">=4" - } + "dev": true }, - "node_modules/unique-string": { + "unique-string": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-2.0.0.tgz", "integrity": "sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==", "dev": true, - "dependencies": { + "requires": { "crypto-random-string": "^2.0.0" - }, - "engines": { - "node": ">=8" } }, - "node_modules/universalify": { + "universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true, - "engines": { - "node": ">= 4.0.0" - } + "dev": true }, - "node_modules/unpipe": { + "unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", - "dev": true, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/untildify": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", - "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/update-browserslist-db": { + "update-browserslist-db": { "version": "1.0.13", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { + "requires": { "escalade": "^3.1.1", "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" } }, - "node_modules/upper-case": { + "upper-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", "dev": true, - "dependencies": { + "requires": { "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/upper-case-first": { + "upper-case-first": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", "dev": true, - "dependencies": { + "requires": { "tslib": "^2.0.3" + }, + "dependencies": { + "tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true + } } }, - "node_modules/uri-js": { + "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, - "dependencies": { + "requires": { "punycode": "^2.1.0" } }, - "node_modules/url-loader": { + "url-loader": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", "dev": true, - "dependencies": { + "requires": { "loader-utils": "^2.0.0", "mime-types": "^2.1.27", "schema-utils": "^3.0.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "file-loader": "*", - "webpack": "^4.0.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "file-loader": { - "optional": true - } } }, - "node_modules/url-parse": { + "url-parse": { "version": "1.5.10", "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", "dev": true, - "dependencies": { + "requires": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, - "node_modules/util-deprecate": { + "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, - "node_modules/utils-merge": { + "utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", - "dev": true, - "engines": { - "node": ">= 0.4.0" - } + "dev": true }, - "node_modules/uuid": { + "uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", - "dev": true, - "bin": { - "uuid": "dist/bin/uuid" - } + "dev": true }, - "node_modules/v8-compile-cache": { + "v8-compile-cache": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.4.0.tgz", "integrity": "sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==", "dev": true }, - "node_modules/v8-to-istanbul": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.3.tgz", - "integrity": "sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==", + "v8-to-istanbul": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", "dev": true, - "dependencies": { + "requires": { "@jridgewell/trace-mapping": "^0.3.12", "@types/istanbul-lib-coverage": "^2.0.1", "convert-source-map": "^2.0.0" - }, - "engines": { - "node": ">=10.12.0" } }, - "node_modules/validate-npm-package-license": { + "validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, - "dependencies": { + "requires": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, - "node_modules/validate-npm-package-name": { + "validate-npm-package-name": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", "dev": true, - "dependencies": { + "requires": { "builtins": "^5.0.0" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/vary": { + "vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", - "dev": true, - "engines": { - "node": ">= 0.8" - } + "dev": true }, - "node_modules/w3c-xmlserializer": { + "w3c-xmlserializer": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-4.0.0.tgz", "integrity": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==", "dev": true, - "dependencies": { + "requires": { "xml-name-validator": "^4.0.0" - }, - "engines": { - "node": ">=14" } }, - "node_modules/wait-on": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-6.0.1.tgz", - "integrity": "sha512-zht+KASY3usTY5u2LgaNqn/Cd8MukxLGjdcZxT2ns5QzDmTFc4XoWBgC+C/na+sMRZTuVygQoMYwdcVjHnYIVw==", + "wait-on": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-7.2.0.tgz", + "integrity": "sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==", "dev": true, - "dependencies": { - "axios": "^0.25.0", - "joi": "^17.6.0", + "requires": { + "axios": "^1.6.1", + "joi": "^17.11.0", "lodash": "^4.17.21", - "minimist": "^1.2.5", - "rxjs": "^7.5.4" - }, - "bin": { - "wait-on": "bin/wait-on" - }, - "engines": { - "node": ">=10.0.0" + "minimist": "^1.2.8", + "rxjs": "^7.8.1" } }, - "node_modules/walker": { + "walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, - "dependencies": { + "requires": { "makeerror": "1.0.12" } }, - "node_modules/watchpack": { + "watchpack": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", "dev": true, - "dependencies": { + "requires": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" - }, - "engines": { - "node": ">=10.13.0" } }, - "node_modules/wbuf": { + "wbuf": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "dev": true, - "dependencies": { + "requires": { "minimalistic-assert": "^1.0.0" } }, - "node_modules/webidl-conversions": { + "web-vitals": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-3.5.2.tgz", + "integrity": "sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg==", + "dev": true + }, + "webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", "dev": true }, - "node_modules/webpack": { - "version": "5.89.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.89.0.tgz", - "integrity": "sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==", + "webpack": { + "version": "5.90.1", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.90.1.tgz", + "integrity": "sha512-SstPdlAC5IvgFnhiRok8hqJo/+ArAbNv7rhU4fnWGHNVfN59HSQFaxZDSAL3IFG2YmqxuRs+IU33milSxbPlog==", "dev": true, - "dependencies": { + "requires": { "@types/eslint-scope": "^3.7.3", - "@types/estree": "^1.0.0", + "@types/estree": "^1.0.5", "@webassemblyjs/ast": "^1.11.5", "@webassemblyjs/wasm-edit": "^1.11.5", "@webassemblyjs/wasm-parser": "^1.11.5", "acorn": "^8.7.1", "acorn-import-assertions": "^1.9.0", - "browserslist": "^4.14.5", + "browserslist": "^4.21.10", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.15.0", "es-module-lexer": "^1.2.1", @@ -19352,32 +14839,17 @@ "neo-async": "^2.6.2", "schema-utils": "^3.2.0", "tapable": "^2.1.1", - "terser-webpack-plugin": "^5.3.7", + "terser-webpack-plugin": "^5.3.10", "watchpack": "^2.4.0", "webpack-sources": "^3.2.3" - }, - "bin": { - "webpack": "bin/webpack.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - } } }, - "node_modules/webpack-bundle-analyzer": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.0.tgz", - "integrity": "sha512-j+apH0Cs+FY8IOIwxLbkgEJnbQgEPEG8uqLVnRb9tAoGbyKNxQA1u9wNDrTQHK3PinO4Pckew7AE7pnX/RS3wA==", + "webpack-bundle-analyzer": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.1.tgz", + "integrity": "sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==", "dev": true, - "dependencies": { + "requires": { "@discoveryjs/json-ext": "0.5.7", "acorn": "^8.0.4", "acorn-walk": "^8.0.0", @@ -19392,49 +14864,21 @@ "sirv": "^2.0.3", "ws": "^7.3.1" }, - "bin": { - "webpack-bundle-analyzer": "lib/bin/analyzer.js" - }, - "engines": { - "node": ">= 10.13.0" - } - }, - "node_modules/webpack-bundle-analyzer/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true, - "engines": { - "node": ">= 10" - } - }, - "node_modules/webpack-bundle-analyzer/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/webpack-bundle-analyzer/node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + } } }, - "node_modules/webpack-cli": { + "webpack-cli": { "version": "5.1.4", "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", "dev": true, - "dependencies": { + "requires": { "@discoveryjs/json-ext": "^0.5.0", "@webpack-cli/configtest": "^2.1.1", "@webpack-cli/info": "^2.0.2", @@ -19449,136 +14893,110 @@ "rechoir": "^0.8.0", "webpack-merge": "^5.7.3" }, - "bin": { - "webpack-cli": "bin/cli.js" - }, - "engines": { - "node": ">=14.15.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "5.x.x" - }, - "peerDependenciesMeta": { - "@webpack-cli/generators": { - "optional": true + "dependencies": { + "commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true }, - "webpack-bundle-analyzer": { - "optional": true + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } }, - "webpack-dev-server": { - "optional": true + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } } } }, - "node_modules/webpack-cli/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/webpack-cli/node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/webpack-dev-middleware": { + "webpack-dev-middleware": { "version": "5.3.3", "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", "dev": true, - "dependencies": { + "requires": { "colorette": "^2.0.10", "memfs": "^3.4.3", "mime-types": "^2.1.31", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/webpack-dev-middleware/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + } } }, - "node_modules/webpack-dev-server": { + "webpack-dev-server": { "version": "4.15.1", "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-4.15.1.tgz", "integrity": "sha512-5hbAst3h3C3L8w6W4P96L5vaV0PxSmJhxZvWKYIdgxOQm8pNZ5dEOmmSLBVpP85ReeyRt6AS1QJNyo/oFFPeVA==", "dev": true, - "dependencies": { + "requires": { "@types/bonjour": "^3.5.9", "@types/connect-history-api-fallback": "^1.3.5", "@types/express": "^4.17.13", @@ -19610,266 +15028,187 @@ "webpack-dev-middleware": "^5.3.1", "ws": "^8.13.0" }, - "bin": { - "webpack-dev-server": "bin/webpack-dev-server.js" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.37.0 || ^5.0.0" - }, - "peerDependenciesMeta": { - "webpack": { - "optional": true - }, - "webpack-cli": { - "optional": true - } - } - }, - "node_modules/webpack-dev-server/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack-dev-server/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/webpack-dev-server/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "dev": true, - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/webpack-dev-server/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dev": true, "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, - "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.14.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", - "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", - "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } }, - "utf-8-validate": { - "optional": true + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.3" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dev": true, + "requires": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + } + }, + "ws": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", + "dev": true } } }, - "node_modules/webpack-merge": { + "webpack-merge": { "version": "5.10.0", "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", "dev": true, - "dependencies": { + "requires": { "clone-deep": "^4.0.1", "flat": "^5.0.2", "wildcard": "^2.0.0" }, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/webpack-merge/node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", - "dev": true, - "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/webpack-merge/node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/webpack-merge/node_modules/shallow-clone": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", - "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", - "dev": true, "dependencies": { - "kind-of": "^6.0.2" - }, - "engines": { - "node": ">=8" + "clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + }, + "shallow-clone": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", + "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + } + } } }, - "node_modules/webpack-sources": { + "webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", - "dev": true, - "engines": { - "node": ">=10.13.0" - } + "dev": true }, - "node_modules/websocket-driver": { + "websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, - "dependencies": { + "requires": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" - }, - "engines": { - "node": ">=0.8.0" } }, - "node_modules/websocket-extensions": { + "websocket-extensions": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } + "dev": true }, - "node_modules/whatwg-encoding": { + "whatwg-encoding": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", "dev": true, - "dependencies": { + "requires": { "iconv-lite": "0.6.3" - }, - "engines": { - "node": ">=12" } }, - "node_modules/whatwg-mimetype": { + "whatwg-mimetype": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-3.0.0.tgz", "integrity": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==", - "dev": true, - "engines": { - "node": ">=12" - } + "dev": true }, - "node_modules/whatwg-url": { + "whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, - "dependencies": { + "requires": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, - "dependencies": { + "requires": { "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" } }, - "node_modules/which-boxed-primitive": { + "which-boxed-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, - "dependencies": { + "requires": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/which-builtin-type": { + "which-builtin-type": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", "dev": true, - "dependencies": { + "requires": { "function.prototype.name": "^1.1.5", "has-tostringtag": "^1.0.0", "is-async-function": "^2.0.0", @@ -19882,218 +15221,154 @@ "which-boxed-primitive": "^1.0.2", "which-collection": "^1.0.1", "which-typed-array": "^1.1.9" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/which-builtin-type/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/which-collection": { + "which-collection": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", "dev": true, - "dependencies": { + "requires": { "is-map": "^2.0.1", "is-set": "^2.0.1", "is-weakmap": "^2.0.1", "is-weakset": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/which-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", - "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "which-typed-array": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz", + "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==", "dev": true, - "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", + "requires": { + "available-typed-arrays": "^1.0.6", + "call-bind": "^1.0.5", "for-each": "^0.3.3", "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "has-tostringtag": "^1.0.1" } }, - "node_modules/wildcard": { + "wildcard": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", "dev": true }, - "node_modules/wp-pot": { + "wp-pot": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/wp-pot/-/wp-pot-1.10.2.tgz", "integrity": "sha512-NJ9+dsSilghAYMiuGdURJSbKFf9Z2mH+P6ojT8Nw1Pp8KuwvHdRTFTYK73THlYzohUEXlQGpvKkz+mJb8K1ToA==", "dev": true, - "dependencies": { + "requires": { "espree": "^9.3.1", "matched": "^5.0.1", "path-sort": "^0.1.0", "php-parser": "^3.0.3" - }, - "engines": { - "node": ">=14" } }, - "node_modules/wrap-ansi": { + "wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, - "dependencies": { + "requires": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } } }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrappy": { + "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "node_modules/write-file-atomic": { + "write-file-atomic": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", "dev": true, - "dependencies": { + "requires": { "imurmurhash": "^0.1.4", "is-typedarray": "^1.0.0", "signal-exit": "^3.0.2", "typedarray-to-buffer": "^3.1.5" } }, - "node_modules/ws": { + "ws": { "version": "7.5.9", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", - "dev": true, - "engines": { - "node": ">=8.3.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } - } + "dev": true }, - "node_modules/xdg-basedir": { + "xdg-basedir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-4.0.0.tgz", "integrity": "sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==", - "dev": true, - "engines": { - "node": ">=8" - } + "dev": true }, - "node_modules/xml-name-validator": { + "xml-name-validator": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "dev": true, - "engines": { - "node": ">=12" - } + "dev": true }, - "node_modules/xmlchars": { + "xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, - "node_modules/y18n": { + "y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "engines": { - "node": ">=10" - } + "dev": true }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/yaml": { + "yaml": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", - "dev": true, - "engines": { - "node": ">= 6" - } + "dev": true }, - "node_modules/yargs": { + "yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, - "dependencies": { + "requires": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", @@ -20101,41 +15376,29 @@ "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" } }, - "node_modules/yargs-parser": { + "yargs-parser": { "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, - "engines": { - "node": ">=12" - } + "dev": true }, - "node_modules/yauzl": { + "yauzl": { "version": "2.10.0", "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", "dev": true, - "dependencies": { + "requires": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } }, - "node_modules/yocto-queue": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", - "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true } } } diff --git a/package.json b/package.json index 6b7a6d055..f55e5a2df 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "woocommerce-mercadopago", "description": "Woocommerce MercadoPago Payment Gateway", - "version": "7.2.0", + "version": "7.2.1", "main": "main.js", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 5330b0a95..746022bf8 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: ecommerce, mercadopago, woocommerce Requires at least: 5.6 Tested up to: 6.4 Requires PHP: 7.4 to 8.3 -Stable tag: 7.2.0 +Stable tag: 7.2.1 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -136,15 +136,15 @@ Check out our getSettings("woocommerce_{$gatewayId}_settings"); } /** diff --git a/src/Configs/Seller.php b/src/Configs/Seller.php index a02fcdb9c..fdbb143af 100644 --- a/src/Configs/Seller.php +++ b/src/Configs/Seller.php @@ -6,6 +6,7 @@ use MercadoPago\Woocommerce\Helpers\Requester; use MercadoPago\Woocommerce\Hooks\Options; use MercadoPago\Woocommerce\Logs\Logs; +use MercadoPago\Woocommerce\Helpers\Device; if (!defined('ABSPATH')) { exit; @@ -792,8 +793,9 @@ private function validateCredentials(string $accessToken = null, string $publicK private function getPaymentMethods(string $publicKey = null, string $accessToken = null): array { try { - $key = sprintf('%sat%spk%s', __FUNCTION__, $accessToken, $publicKey); - $cache = $this->cache->getCache($key); + $key = sprintf('%sat%spk%s', __FUNCTION__, $accessToken, $publicKey); + $cache = $this->cache->getCache($key); + $productId = Device::getDeviceProductId(); if ($cache) { return $cache; @@ -802,10 +804,15 @@ private function getPaymentMethods(string $publicKey = null, string $accessToken $headers = []; $uri = '/v1/payment_methods'; + if ($productId) { + $headers[] = 'X-Product-Id: ' . $productId; + } + if ($accessToken) { $headers[] = 'Authorization: Bearer ' . $accessToken; } + if ($publicKey) { $uri = $uri . '?public_key=' . $publicKey; } @@ -841,16 +848,22 @@ private function getPaymentMethods(string $publicKey = null, string $accessToken private function getPaymentMethodsBySiteId(string $siteId): array { try { - $key = sprintf('%ssi%s', __FUNCTION__, $siteId); - $cache = $this->cache->getCache($key); + $key = sprintf('%ssi%s', __FUNCTION__, $siteId); + $cache = $this->cache->getCache($key); + $productId = Device::getDeviceProductId(); if ($cache) { return $cache; } + $headers = []; + if ($productId) { + $headers[] = 'X-Product-Id: ' . $productId; + } + $uri = '/sites/' . $siteId . '/payment_methods'; - $response = $this->requester->get($uri); + $response = $this->requester->get($uri, $headers); $serializedResponse = [ 'data' => $response->getData(), 'status' => $response->getStatus(), diff --git a/src/Entities/Metadata/PaymentMetadata.php b/src/Entities/Metadata/PaymentMetadata.php index 57e08da0d..80b8f51b5 100644 --- a/src/Entities/Metadata/PaymentMetadata.php +++ b/src/Entities/Metadata/PaymentMetadata.php @@ -56,37 +56,7 @@ class PaymentMetadata /** * @var string */ - public $basic_settings; - - /** - * @var string - */ - public $custom_settings; - - /** - * @var string - */ - public $ticket_settings; - - /** - * @var string - */ - public $pix_settings; - - /** - * @var string - */ - public $credits_settings; - - /** - * @var string - */ - public $pse_settings; - - /** - * @var string - */ - public $wallet_button_settings; + public $settings; /** * @var string diff --git a/src/Helpers/Cart.php b/src/Helpers/Cart.php index e3038d488..009bb9d68 100644 --- a/src/Helpers/Cart.php +++ b/src/Helpers/Cart.php @@ -118,13 +118,17 @@ public function getSubtotal(): float * * @return float */ - public function calculateSubtotalWithDiscount(AbstractGateway $gateway): float + public function calculateSubtotalWithDiscount(AbstractGateway $gateway, bool $toConvert = true): float { - $ratio = $this->currency->getRatio($gateway); - $currency = $this->country->getCountryConfigs()['currency']; - $discount = $this->getSubtotal() * ($gateway->discount / 100); + if ($toConvert) { + $ratio = $this->currency->getRatio($gateway); + $currency = $this->country->getCountryConfigs()['currency']; + $discount = $this->getSubtotal() * ($gateway->discount / 100); + + return Numbers::calculateByCurrency($currency, $discount, $ratio); + } - return Numbers::calculateByCurrency($currency, $discount, $ratio); + return $this->getSubtotal() * ($gateway->discount / 100); } /** @@ -134,13 +138,17 @@ public function calculateSubtotalWithDiscount(AbstractGateway $gateway): float * * @return float */ - public function calculateSubtotalWithCommission(AbstractGateway $gateway): float + public function calculateSubtotalWithCommission(AbstractGateway $gateway, bool $toConvert = true): float { - $ratio = $this->currency->getRatio($gateway); - $currency = $this->country->getCountryConfigs()['currency']; - $commission = $this->getSubtotal() * ($gateway->commission / 100); + if ($toConvert) { + $ratio = $this->currency->getRatio($gateway); + $currency = $this->country->getCountryConfigs()['currency']; + $commission = $this->getSubtotal() * ($gateway->commission / 100); + + return Numbers::calculateByCurrency($currency, $commission, $ratio); + } - return Numbers::calculateByCurrency($currency, $commission, $ratio); + return $this->getSubtotal() * ($gateway->commission / 100); } /** @@ -168,7 +176,7 @@ public function calculateTotalWithDiscountAndCommission(AbstractGateway $gateway */ public function addDiscountOnFees(AbstractGateway $gateway): void { - $discount = $this->calculateSubtotalWithDiscount($gateway); + $discount = $this->calculateSubtotalWithDiscount($gateway, false); $discountName = $this->storeTranslations->commonCheckout['cart_discount']; if ($discount > 0) { @@ -185,7 +193,7 @@ public function addDiscountOnFees(AbstractGateway $gateway): void */ public function addCommissionOnFees(AbstractGateway $gateway): void { - $commission = $this->calculateSubtotalWithCommission($gateway); + $commission = $this->calculateSubtotalWithCommission($gateway, false); $commissionName = $this->storeTranslations->commonCheckout['cart_commission']; if ($commission > 0) { diff --git a/src/Helpers/Country.php b/src/Helpers/Country.php index 432804a25..f5f97e4b6 100644 --- a/src/Helpers/Country.php +++ b/src/Helpers/Country.php @@ -119,6 +119,48 @@ public function siteIdToCountry($siteId): string : $siteIdToCountry[self::SITE_ID_MLA]; } + /** + * Get Wordpress default language configured. + * + * @return string + */ + private function getWordpressLanguage(): string + { + return get_option('WPLANG', ''); + } + + /** + * Get languages supported by plugin. + * + * @return array + */ + private function getLanguagesSupportedByPlugin(): array + { + return array( + 'es_AR', + 'es_CL', + 'es_CO', + 'es_MX', + 'es_PE', + 'es_UY', + 'pt_BR', + 'en_US', + 'es_ES' + ); + } + + /** + * Verify if WP selected lang is supported by plugin. + * + * @return bool + */ + public function isLanguageSupportedByPlugin(): bool + { + $languages = $this->getLanguagesSupportedByPlugin(); + $language_code = $this->getWordpressLanguage(); + return in_array($language_code, $languages); + } + /** * Get Woocommerce default country configured * diff --git a/src/Helpers/Url.php b/src/Helpers/Url.php index c825f136f..69ff630b0 100644 --- a/src/Helpers/Url.php +++ b/src/Helpers/Url.php @@ -46,8 +46,8 @@ public function getPluginFileUrl(string $path, string $extension, bool $ignoreSu { return sprintf( '%s%s%s%s', - plugin_dir_url(__FILE__), - '/../../../' . $path, + trailingslashit(rtrim(plugin_dir_url(plugin_dir_path(__FILE__)), '/src')), + $path, $ignoreSuffix ? '' : $this->getSuffix(), $extension ); diff --git a/src/Hooks/Scripts.php b/src/Hooks/Scripts.php index 5ea460a4e..522e7be34 100644 --- a/src/Hooks/Scripts.php +++ b/src/Hooks/Scripts.php @@ -5,6 +5,7 @@ use MercadoPago\Woocommerce\Helpers\Country; use MercadoPago\Woocommerce\Helpers\Url; use MercadoPago\Woocommerce\Configs\Seller; +use WC_Blocks_Utils; if (!defined('ABSPATH')) { exit; @@ -286,10 +287,13 @@ private function registerMelidataScript(string $type, string $location, string $ */ public function registerPaymentBlockScript(string $name, string $file, string $version, array $deps = [], array $variables = []): void { - wp_enqueue_script($name, $file, $deps, $version, true); - - if ($variables) { - wp_localize_script($name, $name . self::SUFFIX, $variables); + if (method_exists('WC_Blocks_Utils', 'has_block_in_page')) { + if (WC_Blocks_Utils::has_block_in_page(wc_get_page_id('checkout'), 'woocommerce/checkout')) { + wp_register_script($name, $file, $deps, $version, true); + if ($variables) { + wp_localize_script($name, $name . self::SUFFIX, $variables); + } + } } } diff --git a/src/Transactions/AbstractTransaction.php b/src/Transactions/AbstractTransaction.php index ae56bc570..aed567998 100644 --- a/src/Transactions/AbstractTransaction.php +++ b/src/Transactions/AbstractTransaction.php @@ -140,7 +140,7 @@ public function setCommonTransaction(): void { $this->transaction->binary_mode = $this->getBinaryMode(); $this->transaction->external_reference = $this->getExternalReference(); - $this->transaction->notification_url = $this->getNotificationUrl(); + $this->transaction->notification_url = $this->getNotificationUrl(); $this->transaction->metadata = (array) $this->getInternalMetadata(); $this->transaction->statement_descriptor = $this->mercadopago->storeConfig->getStoreName('Mercado Pago'); } @@ -229,13 +229,6 @@ public function getInternalMetadata(): PaymentMetadata $metadata->test_mode = $this->mercadopago->storeConfig->isTestMode(); $metadata->details = ''; $metadata->seller_website = $siteUrl; - $metadata->basic_settings = $this->mercadopago->metadataConfig->getGatewaySettings('basic'); - $metadata->custom_settings = $this->mercadopago->metadataConfig->getGatewaySettings('custom'); - $metadata->ticket_settings = $this->mercadopago->metadataConfig->getGatewaySettings('ticket'); - $metadata->pix_settings = $this->mercadopago->metadataConfig->getGatewaySettings('pix'); - $metadata->pse_settings = $this->mercadopago->metadataConfig->getGatewaySettings('pse'); - $metadata->credits_settings = $this->mercadopago->metadataConfig->getGatewaySettings('credits'); - $metadata->wallet_button_settings = $this->mercadopago->metadataConfig->getGatewaySettings('wallet_button'); $metadata->billing_address = new PaymentMetadataAddress(); $metadata->billing_address->zip_code = $zipCode; $metadata->billing_address->street_name = $this->mercadopago->orderBilling->getAddress1($this->order); @@ -250,6 +243,7 @@ public function getInternalMetadata(): PaymentMetadata $metadata->cpp_extra->platform_version = $this->mercadopago->woocommerce->version; $metadata->cpp_extra->module_version = MP_VERSION; $metadata->blocks_payment = $this->mercadopago->orderMetadata->getPaymentBlocks($this->order); + $metadata->settings = $this->mercadopago->metadataConfig->getGatewaySettings($this->gateway::ID); return $metadata; } diff --git a/src/Transactions/BasicTransaction.php b/src/Transactions/BasicTransaction.php index 6ba057302..03dfa0075 100644 --- a/src/Transactions/BasicTransaction.php +++ b/src/Transactions/BasicTransaction.php @@ -34,8 +34,8 @@ public function getInternalMetadata(): PaymentMetadata { $internalMetadata = parent::getInternalMetadata(); - $internalMetadata->checkout = 'smart'; - $internalMetadata->checkout_type = $this->mercadopago->hooks->options->getGatewayOption($this->gateway, 'method', 'redirect'); + $internalMetadata->checkout = 'smart'; + $internalMetadata->checkout_type = $this->mercadopago->hooks->options->getGatewayOption($this->gateway, 'method', 'redirect'); return $internalMetadata; } diff --git a/src/Transactions/CreditsTransaction.php b/src/Transactions/CreditsTransaction.php index c34405e40..6cc7f2247 100644 --- a/src/Transactions/CreditsTransaction.php +++ b/src/Transactions/CreditsTransaction.php @@ -34,8 +34,8 @@ public function getInternalMetadata(): PaymentMetadata { $internalMetadata = parent::getInternalMetadata(); - $internalMetadata->checkout = 'pro'; - $internalMetadata->checkout_type = self::ID; + $internalMetadata->checkout = 'pro'; + $internalMetadata->checkout_type = self::ID; return $internalMetadata; } diff --git a/src/Transactions/CustomTransaction.php b/src/Transactions/CustomTransaction.php index 369f3f052..b0d9113d2 100644 --- a/src/Transactions/CustomTransaction.php +++ b/src/Transactions/CustomTransaction.php @@ -39,8 +39,8 @@ public function getInternalMetadata(): PaymentMetadata { $internalMetadata = parent::getInternalMetadata(); - $internalMetadata->checkout = 'custom'; - $internalMetadata->checkout_type = self::ID; + $internalMetadata->checkout = 'custom'; + $internalMetadata->checkout_type = self::ID; return $internalMetadata; } diff --git a/src/Transactions/TicketTransaction.php b/src/Transactions/TicketTransaction.php index 4d406d9bd..9a45bfa43 100644 --- a/src/Transactions/TicketTransaction.php +++ b/src/Transactions/TicketTransaction.php @@ -60,8 +60,8 @@ public function getInternalMetadata(): PaymentMetadata { $internalMetadata = parent::getInternalMetadata(); - $internalMetadata->checkout = 'custom'; - $internalMetadata->checkout_type = self::ID; + $internalMetadata->checkout = 'custom'; + $internalMetadata->checkout_type = self::ID; if (!empty($this->paymentPlaceId)) { $internalMetadata->payment_option_id = $this->paymentPlaceId; diff --git a/src/Transactions/WalletButtonTransaction.php b/src/Transactions/WalletButtonTransaction.php index 0d4b74978..e1aa1317c 100644 --- a/src/Transactions/WalletButtonTransaction.php +++ b/src/Transactions/WalletButtonTransaction.php @@ -35,8 +35,8 @@ public function getInternalMetadata(): PaymentMetadata { $internalMetadata = parent::getInternalMetadata(); - $internalMetadata->checkout = 'pro'; - $internalMetadata->checkout_type = self::ID; + $internalMetadata->checkout = 'pro'; + $internalMetadata->checkout_type = self::ID; return $internalMetadata; } diff --git a/src/Translations/AdminTranslations.php b/src/Translations/AdminTranslations.php index 3d1097ba8..7697adc32 100644 --- a/src/Translations/AdminTranslations.php +++ b/src/Translations/AdminTranslations.php @@ -174,6 +174,7 @@ private function setNoticesTranslations(): void 'saved_cards_title' => __('Enable payments via Mercado Pago account', 'woocommerce-mercadopago'), 'saved_cards_subtitle' => __('When you enable this function, your customers pay faster using their Mercado Pago accounts.
The approval rate of these payments in your store can be 25% higher compared to other payment methods.', 'woocommerce-mercadopago'), 'saved_cards_button' => __('Activate', 'woocommerce-mercadopago'), + 'missing_translation' => __("Our plugin does not support the language you've chosen, so we've switched it to the English default. If you prefer, you can also select Spanish or Portuguese (Brazilian).", 'woocommerce-mercadopago'), ]; } diff --git a/src/WoocommerceMercadoPago.php b/src/WoocommerceMercadoPago.php index 6516aad1d..3ca125a5e 100644 --- a/src/WoocommerceMercadoPago.php +++ b/src/WoocommerceMercadoPago.php @@ -20,6 +20,7 @@ use MercadoPago\Woocommerce\Order\OrderStatus; use MercadoPago\Woocommerce\Translations\AdminTranslations; use MercadoPago\Woocommerce\Translations\StoreTranslations; +use MercadoPago\Woocommerce\Helpers\Country; if (!defined('ABSPATH')) { exit; @@ -30,7 +31,7 @@ class WoocommerceMercadoPago /** * @const */ - private const PLUGIN_VERSION = '7.2.0'; + private const PLUGIN_VERSION = '7.2.1'; /** * @const @@ -137,6 +138,11 @@ class WoocommerceMercadoPago */ public $storeTranslations; + /** + * @var Country + */ + public $country; + /** * WoocommerceMercadoPago constructor */ @@ -257,6 +263,10 @@ public function init(): void $this->verifyGdNotice(); } + if (!$this->country->isLanguageSupportedByPlugin()) { + $this->verifyCountryForTranslationsNotice(); + } + $this->registerBlocks(); $this->registerGateways(); $this->registerActionsWhenGatewayIsNotCalled(); @@ -304,6 +314,9 @@ public function setProperties(): void // Translations $this->adminTranslations = $dependencies->adminTranslations; $this->storeTranslations = $dependencies->storeTranslations; + + // Country + $this->country = $dependencies->countryHelper; } /** @@ -366,6 +379,16 @@ public function verifyGdNotice(): void $this->helpers->notices->adminNoticeWarning($this->adminTranslations->notices['missing_gd_extensions'], false); } + /** + * Show unsupported country for translations + * + * @return void + */ + public function verifyCountryForTranslationsNotice(): void + { + $this->helpers->notices->adminNoticeError($this->adminTranslations->notices['missing_translation'], true); + } + /** * Define plugin constants * diff --git a/woocommerce-mercadopago.php b/woocommerce-mercadopago.php index 4f0bb6a20..e105f621d 100644 --- a/woocommerce-mercadopago.php +++ b/woocommerce-mercadopago.php @@ -4,7 +4,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: 7.2.0 + * Version: 7.2.1 * Author: Mercado Pago * Author URI: https://developers.mercadopago.com/ * Text Domain: woocommerce-mercadopago