diff --git a/README.md b/README.md index 609857d0..a6a564cb 100644 --- a/README.md +++ b/README.md @@ -43,4 +43,72 @@ function EcommercePage(props) { } ``` -[More on NewFold WordPress Modules](https://github.com/newfold-labs/wp-module-loader) \ No newline at end of file +[More on NewFold WordPress Modules](https://github.com/newfold-labs/wp-module-loader) + +## Steps to create new release for Ecommerce module + +We have switched to GH packages for publishing newer versions of the ecommerce module. + +if you're doing something that will not break anything or not adding any new dependency. But, only doing basic stuff like bug fixes, copy changes etc. Change which doesn't really impact the plugin in bigger way you can put them under the last number of versions. + +If you're doing something, like adding a new library, or changing something in the way the plugin can use our module then it's better to upgrade the minor version which is the 2nd digit of version. + +In rare scenarios, like UI redesign where the change is bigger or a major refactor, we update the 1st digit of version. + +#### Changes to Ecommerce Module + +1. Merge approved PRs into trunk branch + +2. Do version update to new one in package.json + +3. Run, npm install (this will auto update version in package-lock.json) + +4. Commit above change in separate commit (commit message: Bump to new version value) + +5. Go to https://github.com/newfold-labs/wp-module-ecommerce/releases + +6. Click on Draft a new release button + +7. By default, you'll always create a release from target: trunk branch. In case we are making changes to crazydomains then we must switch to the legacy branch do the fixes there and create a release from target: legacy branch as it currently runs older version + +8. Give V dot version that you want to release and click on create a new tag. + +9. Click Generate release notes button it will basically collect all the pull requests that came in from the previous release to now and then just create a summary. (It won't track any direct comments to the trunk. It will just only track pull request) + +10. Keep Set as the latest release checkbox `checked` as it is by default. + +11. Click Publish a release button. + +12. Go to https://newfold-labs.github.io/satis/ Satis is a PHP registry for our packages. + +13. On above URL in `package` filter, you can search for ecommerce + +14. We have set up an integration within our workflow itself so once workflow completes, we trigger alert to Satis that newer version of ecommerce module is released and rebuild Satis so that it can show newer version in packages (Repo: https://github.com/newfold-labs/satis/actions) + +15. The newer version will appear in 5 to 10 minutes of rebuilding. + +16. We do not have permission to rerun Satis build, so in case it fails PRESS1 team can help. + +17. You can check the status of Statis build & Publish workflow here https://github.com/newfold-labs/wp-module-ecommerce/actions + +18. On successful completion you can see latest package here https://github.com/newfold-labs/wp-module-ecommerce/pkgs/npm/wp-module-ecommerce + +#### Changes to BlueHost plugin repo + +1. In composer.json file, update version of newfold-labs/wp-module-ecommerce + +2. In package.json file, newfold-labs/wp-module-ecommerce : version number + +3. Run command, +```npm i --legacy-peer-deps``` + +4. Package-lock.json should auto update. + +5. Once Satis starts showing updated version run below command for composer update, +```$ composer update newfold-labs/wp-module-ecommerce -W``` + +6. We need to create a branch (naming convention: dependencies/newfold-labs/wp-module-ecommerce-version_number). + +7. Currently we don't have the permission to publish directly to the BlueHost plugin So, we need to create a fork basically of the repo then push it to that fork and then create a pull request against the develop branch. + +8. The new release process is thus completed. \ No newline at end of file diff --git a/bootstrap.php b/bootstrap.php index 6f6ceb80..a1989b27 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -37,8 +37,10 @@ function () { 'name' => 'ecommerce', 'label' => __( 'eCommerce', 'wp-module-ecommerce' ), 'callback' => function ( Container $container ) { + define( 'NFD_ECOMMERCE_DIR', __DIR__ ); define( 'NFD_ECOMMERCE_BUILD_DIR', __DIR__ . '/build/' ); define( 'NFD_ECOMMERCE_PLUGIN_URL', $container->plugin()->url ); + define( 'NFD_ECOMMERCE_PLUGIN_DIRNAME', dirname( $container->plugin()->basename ) ); new ECommerce( $container ); }, 'isActive' => true, diff --git a/build/index.asset.php b/build/index.asset.php index b16b2a19..04dea8f0 100644 --- a/build/index.asset.php +++ b/build/index.asset.php @@ -1 +1 @@ - array('lodash', 'moment', 'react', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => 'a5f290ac68f9d69a100b'); + array('lodash', 'moment', 'react', 'wp-api-fetch', 'wp-data', 'wp-date', 'wp-dom-ready', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => 'd92107dfb0bd29fc36c3'); diff --git a/composer.lock b/composer.lock index b692e7e1..f6e38396 100644 --- a/composer.lock +++ b/composer.lock @@ -52,16 +52,16 @@ "packages-dev": [ { "name": "composer/ca-bundle", - "version": "1.3.6", + "version": "1.3.7", "source": { "type": "git", "url": "https://github.com/composer/ca-bundle.git", - "reference": "90d087e988ff194065333d16bc5cf649872d9cdb" + "reference": "76e46335014860eec1aa5a724799a00a2e47cc85" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/ca-bundle/zipball/90d087e988ff194065333d16bc5cf649872d9cdb", - "reference": "90d087e988ff194065333d16bc5cf649872d9cdb", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/76e46335014860eec1aa5a724799a00a2e47cc85", + "reference": "76e46335014860eec1aa5a724799a00a2e47cc85", "shasum": "" }, "require": { @@ -108,7 +108,7 @@ "support": { "irc": "irc://irc.freenode.org/composer", "issues": "https://github.com/composer/ca-bundle/issues", - "source": "https://github.com/composer/ca-bundle/tree/1.3.6" + "source": "https://github.com/composer/ca-bundle/tree/1.3.7" }, "funding": [ { @@ -124,7 +124,7 @@ "type": "tidelift" } ], - "time": "2023-06-06T12:02:59+00:00" + "time": "2023-08-30T09:31:38+00:00" }, { "name": "composer/composer", @@ -367,16 +367,16 @@ }, { "name": "composer/semver", - "version": "3.3.2", + "version": "3.4.0", "source": { "type": "git", "url": "https://github.com/composer/semver.git", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9" + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9", - "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9", + "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32", + "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32", "shasum": "" }, "require": { @@ -426,9 +426,9 @@ "versioning" ], "support": { - "irc": "irc://irc.freenode.org/composer", + "irc": "ircs://irc.libera.chat:6697/composer", "issues": "https://github.com/composer/semver/issues", - "source": "https://github.com/composer/semver/tree/3.3.2" + "source": "https://github.com/composer/semver/tree/3.4.0" }, "funding": [ { @@ -444,7 +444,7 @@ "type": "tidelift" } ], - "time": "2022-04-01T19:23:25+00:00" + "time": "2023-08-31T09:50:34+00:00" }, { "name": "composer/spdx-licenses", @@ -3364,16 +3364,16 @@ }, { "name": "wp-cli/media-command", - "version": "v2.0.18", + "version": "v2.0.19", "source": { "type": "git", "url": "https://github.com/wp-cli/media-command.git", - "reference": "92fc32580a16a70ccc028786896d22f6ca51a261" + "reference": "3d167f43b019a13738f4e082c3c33f8f9ea82bbb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/wp-cli/media-command/zipball/92fc32580a16a70ccc028786896d22f6ca51a261", - "reference": "92fc32580a16a70ccc028786896d22f6ca51a261", + "url": "https://api.github.com/repos/wp-cli/media-command/zipball/3d167f43b019a13738f4e082c3c33f8f9ea82bbb", + "reference": "3d167f43b019a13738f4e082c3c33f8f9ea82bbb", "shasum": "" }, "require": { @@ -3420,9 +3420,9 @@ "homepage": "https://github.com/wp-cli/media-command", "support": { "issues": "https://github.com/wp-cli/media-command/issues", - "source": "https://github.com/wp-cli/media-command/tree/v2.0.18" + "source": "https://github.com/wp-cli/media-command/tree/v2.0.19" }, - "time": "2023-07-13T14:04:45+00:00" + "time": "2023-08-30T11:14:00+00:00" }, { "name": "wp-cli/mustangostang-spyc", diff --git a/includes/ECommerce.php b/includes/ECommerce.php index 9a507104..cfa120c5 100644 --- a/includes/ECommerce.php +++ b/includes/ECommerce.php @@ -5,6 +5,7 @@ use NewfoldLabs\WP\Module\ECommerce\Data\Brands; use NewfoldLabs\WP\Module\ECommerce\Partials\CaptiveFlow; use NewfoldLabs\WP\Module\ECommerce\Partials\WooCommerceBacklink; +use NewfoldLabs\WP\Module\ECommerce\I18nService; use NewfoldLabs\WP\Module\Installer\Services\PluginInstaller; use NewfoldLabs\WP\ModuleLoader\Container; @@ -66,7 +67,8 @@ class ECommerce { */ public function __construct( Container $container ) { $this->container = $container; - // Module functionality goes here + // Module functionality goes here + add_action( 'init', array( $this, 'load_php_textdomain' ) ); add_action( 'admin_init', array( $this, 'maybe_do_dash_redirect' ) ); add_action( 'admin_bar_menu', array( $this, 'newfold_site_status' ), 200 ); add_action( 'rest_api_init', array( $this, 'register_routes' ) ); @@ -87,6 +89,18 @@ public function __construct( Container $container ) { add_filter( 'newfold-runtime', array( $this, 'add_to_runtime' ) ); } + /** + * Loads the textdomain for the module. This applies only to PHP strings. + * + * @return boolean + */ + public static function load_php_textdomain() { + return I18nService::load_php_translations( + 'wp-module-ecommerce', + NFD_ECOMMERCE_PLUGIN_DIRNAME . '/vendor/newfold-labs/wp-module-ecommerce/languages' + ); + } + public function add_to_runtime( $sdk ) { $values = array( 'brand_settings' => Brands::get_config( $this->container ), @@ -191,6 +205,11 @@ public function register_assets() { array_merge( $asset['dependencies'], array() ), $asset['version'] ); + I18nService::load_js_translations( + 'wp-module-ecommerce', + 'nfd-ecommerce-dependency', + NFD_ECOMMERCE_DIR . '/languages' + ); \wp_enqueue_script( 'nfd-ecommerce-dependency' ); } } diff --git a/includes/I18nService.php b/includes/I18nService.php new file mode 100644 index 00000000..75956e83 --- /dev/null +++ b/includes/I18nService.php @@ -0,0 +1,44 @@ +\n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" -"Language: en_US\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "POT-Creation-Date: \n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Language: en_US\n" "X-Generator: WP-CLI 2.7.1\n" "X-Domain: wp-module-ecommerce\n" -#: bootstrap.php:16 +#: bootstrap.php:38 msgid "eCommerce" msgstr "" -#: includes/ECommerce.php:108 -#: includes/ECommerce.php:119 +#: includes/ECommerce.php:132 +#: includes/ECommerce.php:143 msgid "NFD eCommerce Options" msgstr "" -#: includes/ECommerce.php:133 +#: includes/ECommerce.php:157 msgid "Coming Soon" msgstr "" -#: includes/ECommerce.php:134 -#: build/index.js:3233 -#: build/index.js:2460 +#: includes/ECommerce.php:158 +#: build/index.js:7257 +#: build/index.js:6220 msgid "Live" msgstr "" -#: includes/ECommerce.php:139 +#: includes/ECommerce.php:163 msgid "Site Status: " msgstr "" -#: includes/ECommerce.php:141 +#: includes/ECommerce.php:165 msgid "Launch Your Site" msgstr "" @@ -44,342 +44,846 @@ msgstr "" msgid "NFD eCommerce RazorPay Options" msgstr "" -#: build/index.js:2814 -#: build/index.js:2113 +#: build/index.js:5759 +#: build/index.js:4578 +msgid "Payments" +msgstr "" + +#: build/index.js:5797 +#: build/index.js:4622 +msgid "yes" +msgstr "" + +#: build/index.js:5798 +#: build/index.js:4623 +msgid "Credit Card/Debit Card/NetBanking" +msgstr "" + +#: build/index.js:5799 +#: build/index.js:4627 +msgid "Pay securely by Credit or Debit card or Internet Banking through Razorpay." +msgstr "" + +#: build/index.js:5800 +#: build/index.js:4631 +msgid "capture" +msgstr "" + +#: build/index.js:5801 +#: build/index.js:4632 +msgid "Thank you for shopping with us. Your account has been charged and your transaction is successful. We will be processing your order soon." +msgstr "" + +#: build/index.js:5809 +#: build/index.js:4643 +msgid "Successfully saved the Payment Details" +msgstr "" + +#: build/index.js:5843 +#: build/index.js:7539 +#: build/index.js:4688 +#: build/index.js:6495 +msgid "Discard Changes" +msgstr "" + +#: build/index.js:5847 +#: build/index.js:7543 +#: build/index.js:4691 +#: build/index.js:6498 +msgid "Save Changes" +msgstr "" + +#: build/index.js:5883 +#: build/index.js:4712 +msgid "Key ID *" +msgstr "" + +#: build/index.js:5884 +#: build/index.js:4713 +msgid "Test Key ID *" +msgstr "" + +#: build/index.js:5885 +#: build/index.js:4714 +msgid "Key Secret *" +msgstr "" + +#: build/index.js:5886 +#: build/index.js:4715 +msgid "Test Key Secret *" +msgstr "" + +#: build/index.js:5887 +#: build/index.js:4717 +msgid "The key ID can be found in the \"%1$sAPI Keys%2$s\" section of your Razorpay dashboard." +msgstr "" + +#: build/index.js:5888 +#: build/index.js:4724 +msgid "That is not a valid test key ID. Please check your key ID and enter it again." +msgstr "" + +#: build/index.js:5889 +#: build/index.js:4728 +msgid "That is not a valid production key ID. Please check your key ID and enter it again." +msgstr "" + +#: build/index.js:5890 +#: build/index.js:4733 +msgid "The key secret can be found in the \"%1$sAPI Keys%2$s\" section of your Razorpay dashboard." +msgstr "" + +#: build/index.js:5928 +#: build/index.js:4784 +msgid "Create an Account" +msgstr "" + +#: build/index.js:5930 +#: build/index.js:4789 +msgid "Already have an account? " +msgstr "" + +#: build/index.js:5933 +#: build/index.js:4794 +msgid "Login" +msgstr "" + +#: build/index.js:5935 +#: build/index.js:4798 +msgid "After you login to Razorpay, you will need to generate your key ID and key secret codes, you will then need to switch back to this tab in your browser and paste your codes into the fields below." +msgstr "" + +#: build/index.js:5940 +#: build/index.js:4809 +msgid "Enable Test Mode" +msgstr "" + +#: build/index.js:6085 +#: build/index.js:4924 msgid "Learn More" msgstr "" -#: build/index.js:2816 -#: build/index.js:2120 +#: build/index.js:6087 +#: build/index.js:4932 msgid "please wait while other features are installed..." msgstr "" -#: build/index.js:2831 -#: build/index.js:2155 +#: build/index.js:6102 +#: build/index.js:4965 +msgid "Purchase" +msgstr "" + +#: build/index.js:6108 +#: build/index.js:6498 +#: build/index.js:6929 +#: build/index.js:7188 +#: build/index.js:4984 +#: build/index.js:5345 +#: build/index.js:5848 +#: build/index.js:6143 msgid "Installing..." msgstr "" -#: build/index.js:2831 -#: build/index.js:2157 -msgid "Purchase" +#: build/index.js:6143 +#: build/index.js:5004 +msgid "Improve your store with these free add-ons included in your plan." msgstr "" -#: build/index.js:2864 -#: build/index.js:3539 -#: build/index.js:2178 -#: build/index.js:2716 +#: build/index.js:6143 +#: build/index.js:5008 +msgid "Improve your site with these free add-ons included in your plan." +msgstr "" + +#: build/index.js:6154 +#: build/index.js:8057 +#: build/index.js:5018 +#: build/index.js:7012 msgid "Additional Features" msgstr "" -#: build/index.js:2865 -#: build/index.js:2179 -msgid "Improve your site with these free add-ons included in your plan." +#: build/index.js:6260 +#: build/index.js:5111 +msgid "Next steps for your store" msgstr "" -#: build/index.js:2909 -#: build/index.js:2206 -msgid "Store" +#: build/index.js:6260 +#: build/index.js:5112 +msgid "Next steps for your site" +msgstr "" + +#: build/index.js:6260 +#: build/index.js:5118 +msgid "Great job! You've completed all the current tasks to get your store up and running successfully!" +msgstr "" + +#: build/index.js:6260 +#: build/index.js:5122 +msgid "Great job! You've completed all the current tasks to get your site up and running successfully!" +msgstr "" + +#: build/index.js:6260 +#: build/index.js:5129 +msgid "If you want to edit any of the info from the steps you've completed, simply click on the \"View completed tasks\" link below." +msgstr "" + +#: build/index.js:6271 +#: build/index.js:5153 +msgid "View remaining tasks" +msgstr "" + +#: build/index.js:6271 +#: build/index.js:5154 +msgid "View completed tasks" +msgstr "" + +#: build/index.js:6312 +#: build/index.js:5174 +msgid "Congrats on your new store!" +msgstr "" + +#: build/index.js:6312 +#: build/index.js:5175 +msgid "Congrats on your new site!" +msgstr "" + +#: build/index.js:6313 +#: build/index.js:5177 +msgid "You're just a few steps away from sharing your store with the world!" +msgstr "" + +#: build/index.js:6313 +#: build/index.js:5181 +msgid "You're just a few steps away from sharing your site with the world!" +msgstr "" + +#: build/index.js:6317 +#: build/index.js:5188 +msgid "Ready to go to the next level?" +msgstr "" + +#: build/index.js:6318 +#: build/index.js:5190 +msgid "Increase your store's performance by helping people find your store and engaging more with them once they have." +msgstr "" + +#: build/index.js:6318 +#: build/index.js:5194 +msgid "Increase your site's performance by helping people find your site and engaging more with them once they have." +msgstr "" + +#: build/index.js:6405 +#: build/index.js:5264 +msgid "Offline Payments" +msgstr "" + +#: build/index.js:6406 +#: build/index.js:5264 +msgid "Accept payments (money orders, bank transfers or C.O.D.) that are made outside your online store. " +msgstr "" + +#: build/index.js:6411 +#: build/index.js:5268 +msgid "Manual Payment methods" +msgstr "" + +#: build/index.js:6413 +#: build/index.js:5270 +msgid "When a customer selects a manual payment method, you'll need to approve their order before it can be fulfilled." +msgstr "" + +#: build/index.js:6480 +#: build/index.js:5317 +msgid "Paypal" +msgstr "" + +#: build/index.js:6481 +#: build/index.js:5318 +msgid "Online payments built for success. We help you do business in 200+ markets and 100+ currencies—even if your customers don't have PayPal." +msgstr "" + +#: build/index.js:6503 +#: build/index.js:6922 +#: build/index.js:7181 +#: build/index.js:5357 +#: build/index.js:5822 +#: build/index.js:6120 +msgid "Manage" +msgstr "" + +#: build/index.js:6506 +#: build/index.js:7184 +#: build/index.js:5367 +#: build/index.js:6130 +msgid "Connect" +msgstr "" + +#: build/index.js:6508 +#: build/index.js:6937 +#: build/index.js:7190 +#: build/index.js:5373 +#: build/index.js:5879 +#: build/index.js:6155 +msgid "Environment:" +msgstr "" + +#: build/index.js:6518 +#: build/index.js:5393 +msgid "White-Labeling" +msgstr "" + +#: build/index.js:6518 +#: build/index.js:5395 +msgid "Country-specific payment methods" msgstr "" -#: build/index.js:2968 -#: build/index.js:2237 +#: build/index.js:6520 +#: build/index.js:5402 +msgid " Uses many popular payment methods" +msgstr "" + +#: build/index.js:6580 +#: build/index.js:5450 msgid "Products & Services" msgstr "" -#: build/index.js:2969 -#: build/index.js:2238 +#: build/index.js:6581 +#: build/index.js:5451 msgid "Come here to manage products and services or add new ones to your store." msgstr "" -#: build/index.js:2977 -#: build/index.js:2247 +#: build/index.js:6589 +#: build/index.js:5466 msgid "Want help adding products?" msgstr "" -#: build/index.js:2979 -#: build/index.js:2250 +#: build/index.js:6591 +#: build/index.js:5469 msgid "" "Read this helpful knowledge base article to understand how to\n" "add different products to your store" msgstr "" -#: build/index.js:2986 -#: build/index.js:2267 +#: build/index.js:6600 +#: build/index.js:5489 msgid " How to add products" msgstr "" -#: build/index.js:3252 -#: build/index.js:2475 +#: build/index.js:6818 +#: build/index.js:5680 +msgid "No orders yet. When you start getting orders, they will show up here." +msgstr "" + +#: build/index.js:6902 +#: build/index.js:5790 +msgid "Razorpay" +msgstr "" + +#: build/index.js:6903 +#: build/index.js:5791 +msgid "Build specifically for companies based in India, manage all your payments and financial operations from a consolidated dashboard" +msgstr "" + +#: build/index.js:6933 +#: build/index.js:5855 +msgid "Complete control over the receiving and managing payments" +msgstr "" + +#: build/index.js:6935 +#: build/index.js:5862 +msgid "Immediate capture of funds" +msgstr "" + +#: build/index.js:6935 +#: build/index.js:5865 +msgid "Instant refunds and settlements" +msgstr "" + +#: build/index.js:6935 +#: build/index.js:5871 +msgid "Fight fraud with Thirdwatch" +msgstr "" + +#: build/index.js:6935 +#: build/index.js:5873 +msgid "Intuitive reporting" +msgstr "" + +#: build/index.js:6991 +#: build/index.js:5928 +msgid " vs prior period" +msgstr "" + +#: build/index.js:7162 +#: build/index.js:6089 +msgid "Shipping Options" +msgstr "" + +#: build/index.js:7163 +#: build/index.js:6090 +msgid "Setup a shipping account for delivering products to your customers" +msgstr "" + +#: build/index.js:7188 +#: build/index.js:6148 +msgid "The best multi-carrier shipping software for e-commerce businesses." +msgstr "" + +#: build/index.js:7230 +#: build/index.js:6187 +msgid "Coming Soon activated" +msgstr "" + +#: build/index.js:7230 +#: build/index.js:6189 msgid "Your store is online and ready for business!" msgstr "" -#: build/index.js:3254 -#: build/index.js:2481 -msgid "Not ready? You can re-enable the \"Coming Soon\" mode if you need." +#: build/index.js:7230 +#: build/index.js:6190 +msgid "Your site is online now!" msgstr "" -#: build/index.js:3259 -#: build/index.js:2492 -msgid "Okay" +#: build/index.js:7231 +#: build/index.js:6195 +msgid "You can re-enable the 'Coming Soon' mode in “Settings”." msgstr "" -#: build/index.js:3273 -#: build/index.js:2506 +#: build/index.js:7271 +#: build/index.js:6237 msgid "Ready to go live?" msgstr "" -#: build/index.js:3275 -#: build/index.js:2509 +#: build/index.js:7273 +#: build/index.js:6241 msgid "" "Preview your store before setting it live to make sure everything is how you want it.\n" "Once you're ready, set your store live!" msgstr "" -#: build/index.js:3283 -#: build/index.js:2523 +#: build/index.js:7273 +#: build/index.js:6245 +msgid "" +"Preview your Site before setting it live to make sure everything is how you want it.\n" +"Once you're ready, set your site live!" +msgstr "" + +#: build/index.js:7281 +#: build/index.js:6267 msgid "Preview your store" msgstr "" -#: build/index.js:3288 -#: build/index.js:2532 +#: build/index.js:7281 +#: build/index.js:6268 +msgid "Preview your site" +msgstr "" + +#: build/index.js:7286 +#: build/index.js:6278 msgid "Launch your store" msgstr "" -#: build/index.js:3437 -#: build/index.js:2642 +#: build/index.js:7286 +#: build/index.js:6279 +msgid "Launch your site" +msgstr "" + +#: build/index.js:7318 +#: build/index.js:6296 +msgid "Store" +msgstr "" + +#: build/index.js:7457 +#: build/index.js:6409 msgid "Store Details" msgstr "" -#: build/index.js:3438 -#: build/index.js:2643 +#: build/index.js:7458 +#: build/index.js:6410 msgid "This is the place for all your general store details and setup." msgstr "" -#: build/index.js:3490 -#: build/index.js:2676 +#: build/index.js:7611 +#: build/index.js:6548 +msgid "Store Info" +msgstr "" + +#: build/index.js:7612 +#: build/index.js:6549 +msgid "We'll use this information to help you setup your online store" +msgstr "" + +#: build/index.js:7754 +#: build/index.js:6737 +msgid "Yes, enable sales tax." +msgstr "" + +#: build/index.js:7757 +#: build/index.js:6741 +msgid "No, don't enable sales tax." +msgstr "" + +#: build/index.js:7766 +#: build/index.js:6751 +msgid "Tax Settings" +msgstr "" + +#: build/index.js:7767 +#: build/index.js:6752 +msgid "Decide whether you want to collect sales tax on items you sell. You can change this setting at anytime" +msgstr "" + +#: build/index.js:7768 +#: build/index.js:6758 +msgid "Would you like to enable sales tax?" +msgstr "" + +#: build/index.js:7930 +#: build/index.js:6899 +msgid "Sales & Discounts" +msgstr "" + +#: build/index.js:7940 +#: build/index.js:6911 +msgid "Add Upsells, Cross-sells, and other Promotions to your store" +msgstr "" + +#: build/index.js:7942 +#: build/index.js:9355 +#: build/index.js:6917 +#: build/index.js:8403 +msgid "Create and manage deals, sales promotions and upsell campaigns like Buy-One-Get-One and more." +msgstr "" + +#: build/index.js:7949 +#: build/index.js:6930 +msgid "Install now" +msgstr "" + +#: build/index.js:8001 +#: build/index.js:6968 msgid "Add a store to your site" msgstr "" -#: build/index.js:3492 -#: build/index.js:2679 +#: build/index.js:8003 +#: build/index.js:6971 msgid "" "Adding a store to your website is quick and easy!\n" "Just install WooCommerce and get ready to start making money!" msgstr "" -#: build/index.js:3499 -#: build/index.js:2692 +#: build/index.js:8010 +#: build/index.js:6984 msgid "Install WooCommerce" msgstr "" -#: build/index.js:3540 -#: build/index.js:2717 +#: build/index.js:8058 +#: build/index.js:7013 msgid "Improve your store with these powerful add-ons." msgstr "" -#: build/index.js:3727 -#: build/index.js:3812 -#: build/index.js:4060 -#: build/index.js:4535 -#: build/index.js:2843 -#: build/index.js:2888 -#: build/index.js:3132 -#: build/index.js:3544 +#: build/index.js:8246 +#: build/index.js:8303 +#: build/index.js:9412 +#: build/index.js:7166 +#: build/index.js:7204 +#: build/index.js:8454 msgid "Please try again, or " msgstr "" -#: build/index.js:3730 -#: build/index.js:3815 -#: build/index.js:4063 -#: build/index.js:4538 -#: build/index.js:2845 -#: build/index.js:2890 -#: build/index.js:3134 -#: build/index.js:3546 +#: build/index.js:8249 +#: build/index.js:8306 +#: build/index.js:9415 +#: build/index.js:7168 +#: build/index.js:7206 +#: build/index.js:8456 msgid "contact support" msgstr "" -#: build/index.js:3854 -#: build/index.js:2928 +#: build/index.js:8377 +#: build/index.js:7268 msgid "Jetpack Boost - Website Speed, Performance and Critical CSS" msgstr "" -#: build/index.js:3855 -#: build/index.js:2932 +#: build/index.js:8378 +#: build/index.js:7272 msgid "Speed up your WordPress site by optimizing page performance with Jetpack Boost." msgstr "" -#: build/index.js:3881 -#: build/index.js:2958 +#: build/index.js:8399 +#: build/index.js:7297 msgid "Contact Form by WPForms - Drag & Drop Form Builder for WordPress" msgstr "" -#: build/index.js:3882 -#: build/index.js:2962 +#: build/index.js:8400 +#: build/index.js:7301 msgid "The best WordPress contact form plugin. Drag & Drop online form builder to create beautiful contact forms, payment forms, & other custom forms." msgstr "" -#: build/index.js:3908 -#: build/index.js:2988 +#: build/index.js:8421 +#: build/index.js:7326 msgid "MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)" msgstr "" -#: build/index.js:3909 -#: build/index.js:2992 +#: build/index.js:8422 +#: build/index.js:7330 msgid "The best free Google Analytics plugin for WordPress. See how visitors find and use your website, so you can grow your business." msgstr "" -#: build/index.js:3935 -#: build/index.js:3022 +#: build/index.js:8443 +#: build/index.js:7359 msgid "Yoast SEO" msgstr "" -#: build/index.js:3936 -#: build/index.js:3023 +#: build/index.js:8444 +#: build/index.js:7360 msgid "Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin." msgstr "" -#: build/index.js:3962 -#: build/index.js:3049 +#: build/index.js:8465 +#: build/index.js:7385 msgid "Creative Mail - Easier WordPress & WooCommerce Email Marketing" msgstr "" -#: build/index.js:3963 -#: build/index.js:3053 +#: build/index.js:8466 +#: build/index.js:7389 msgid "Creative Mail was designed specifically for WordPress and WooCommerce. Our intelligent (and super fun) email editor simplifies email marketing campaign." msgstr "" -#: build/index.js:3990 -#: build/index.js:3083 +#: build/index.js:8487 +#: build/index.js:7418 msgid "OptinMonster - Lead Generation" msgstr "" -#: build/index.js:3991 -#: build/index.js:3084 +#: build/index.js:8488 +#: build/index.js:7419 msgid "OptinMonster is the best WordPress popup builder plugin that helps you grow your email newsletter list and sales with email popups, exit intent popups, floating bars and more!" msgstr "" -#: build/index.js:4099 -#: build/index.js:3173 +#: build/index.js:8554 +#: build/index.js:7472 +msgid "Add your store info" +msgstr "" + +#: build/index.js:8571 +#: build/index.js:7487 +msgid "Connect a payment processor" +msgstr "" + +#: build/index.js:8588 +#: build/index.js:7507 +msgid "Setup shipping options" +msgstr "" + +#: build/index.js:8605 +#: build/index.js:7527 +msgid "Configure tax settings" +msgstr "" + +#: build/index.js:8622 +#: build/index.js:8763 +#: build/index.js:7542 +#: build/index.js:7685 +msgid "Add a product" +msgstr "" + +#: build/index.js:8638 +#: build/index.js:7559 +msgid "Add a new page to your store" +msgstr "" + +#: build/index.js:8638 +#: build/index.js:7560 +msgid "Add a new page to your site" +msgstr "" + +#: build/index.js:8655 +#: build/index.js:7580 +msgid "Connect to your social media accounts" +msgstr "" + +#: build/index.js:8676 +#: build/index.js:7604 +msgid "Enable Jetpack to connect to your social media accounts" +msgstr "" + +#: build/index.js:8762 +#: build/index.js:7684 msgid "Add a Product" msgstr "" -#: build/index.js:4129 -#: build/index.js:3201 +#: build/index.js:8786 +#: build/index.js:7713 msgid "Manage Your Products" msgstr "" -#: build/index.js:4164 -#: build/index.js:3230 +#: build/index.js:8787 +#: build/index.js:7714 +msgid "Manage products" +msgstr "" + +#: build/index.js:8814 +#: build/index.js:7748 msgid "Import Products via CSV" msgstr "" -#: build/index.js:4191 -#: build/index.js:3258 +#: build/index.js:8815 +#: build/index.js:7749 +msgid "Import products" +msgstr "" + +#: build/index.js:8841 +#: build/index.js:7783 msgid "Bookings" msgstr "" -#: build/index.js:4250 -#: build/index.js:3312 +#: build/index.js:8842 +#: build/index.js:8879 +#: build/index.js:7785 +#: build/index.js:7839 +msgid "Enable" +msgstr "" + +#: build/index.js:8842 +#: build/index.js:7787 +msgid "Manage bookings" +msgstr "" + +#: build/index.js:8842 +#: build/index.js:7788 +msgid "Create a booking" +msgstr "" + +#: build/index.js:8878 +#: build/index.js:7837 msgid "Gift Cards" msgstr "" -#: build/index.js:4356 -#: build/index.js:3400 +#: build/index.js:8879 +#: build/index.js:7841 +msgid "Manage gift cards" +msgstr "" + +#: build/index.js:8879 +#: build/index.js:7842 +msgid "Create a gift card" +msgstr "" + +#: build/index.js:8991 +#: build/index.js:7942 msgid "Total Sales" msgstr "" -#: build/index.js:4373 -#: build/index.js:3418 +#: build/index.js:9008 +#: build/index.js:7963 msgid "Net Sales" msgstr "" -#: build/index.js:4390 -#: build/index.js:3436 +#: build/index.js:9025 +#: build/index.js:7984 msgid "Orders" msgstr "" -#: build/index.js:4407 -#: build/index.js:3456 +#: build/index.js:9043 +#: build/index.js:8007 msgid "Products Sold" msgstr "" -#: build/index.js:4424 -#: build/index.js:3476 +#: build/index.js:9061 +#: build/index.js:8030 msgid "Visitors" msgstr "" -#: build/index.js:4438 -#: build/index.js:3495 +#: build/index.js:9079 +#: build/index.js:8057 msgid "Views" msgstr "" -#: build/index.js:4578 -#: build/index.js:3584 +#: build/index.js:9168 +#: build/index.js:8130 msgid "YITH Booking and Appointment for WooCommerce" msgstr "" -#: build/index.js:4579 -#: build/index.js:3588 +#: build/index.js:9169 +#: build/index.js:8134 msgid "Enable a booking/appointment system to manage renting or booking of services, rooms, houses, cars, accommodation and more to make it easy for your customers to do business with you." msgstr "" -#: build/index.js:4605 -#: build/index.js:3618 +#: build/index.js:9193 +#: build/index.js:8169 msgid "YITH WooCommerce AJAX Search" msgstr "" -#: build/index.js:4606 -#: build/index.js:3619 +#: build/index.js:9194 +#: build/index.js:8170 msgid "YITH WooCommerce AJAX Search is an effective and predictive real-time search engine on your store so users can quickly find products they want. Speed up your search and boost your sales." msgstr "" -#: build/index.js:4633 -#: build/index.js:3650 +#: build/index.js:9220 +#: build/index.js:8206 msgid "YITH WooCommerce Wishlist" msgstr "" -#: build/index.js:4634 -#: build/index.js:3651 +#: build/index.js:9221 +#: build/index.js:8207 msgid "Allow your customers to create lists of products they want and share them with family and friends." msgstr "" -#: build/index.js:4661 -#: build/index.js:3682 +#: build/index.js:9247 +#: build/index.js:8243 msgid "YITH WooCommerce AJAX Product Filter" msgstr "" -#: build/index.js:4662 -#: build/index.js:3686 +#: build/index.js:9248 +#: build/index.js:8247 msgid "YITH WooCommerce Ajax Product Filter is the perfect way to add an advanced filter to all products in your store by size, color, price, and more to find the right product or gift with ease." msgstr "" -#: build/index.js:4689 -#: build/index.js:3719 +#: build/index.js:9274 +#: build/index.js:8285 msgid "YITH WooCommerce Gift Cards" msgstr "" -#: build/index.js:4690 -#: build/index.js:3720 +#: build/index.js:9275 +#: build/index.js:8286 msgid "Sell gift cards to increase your store's revenue and win new customers." msgstr "" -#: build/index.js:4717 -#: build/index.js:3753 +#: build/index.js:9301 +#: build/index.js:8324 msgid "YITH WooCommerce Customize My Account Page" msgstr "" -#: build/index.js:4718 -#: build/index.js:3757 +#: build/index.js:9302 +#: build/index.js:8328 msgid "Customize the My Account page of your customers by creating custom sections with promotions and ad-hoc content based on your needs." msgstr "" -#: build/index.js:4746 -#: build/index.js:3789 +#: build/index.js:9327 +#: build/index.js:8364 msgid "Ecomdash" msgstr "" -#: build/index.js:4747 -#: build/index.js:3790 +#: build/index.js:9328 +#: build/index.js:8365 msgid "All your sales channels and products, managed in one place. See how this dashboard puts selling, updating, and inventory all at your fingertips. Perfect for selling on Amazon, Etsy, eBay and more." msgstr "" + +#: build/index.js:9354 +#: build/index.js:8399 +msgid "Complete Upsell, Cross sell & Promotions Solution" +msgstr "" + +#: build/index.js:9411 +#: build/index.js:8451 +msgid "Plugin failed to install" +msgstr "" + +#: build/index.js:9421 +#: build/index.js:8465 +msgid "Plugin installation is in progress" +msgstr "" + +#: build/index.js:9422 +#: build/index.js:8466 +msgid "We'll be done in sometime" +msgstr "" diff --git a/languages/wp-module-ecommerce-pt_BR-nfd-ecommerce-dependency.json b/languages/wp-module-ecommerce-pt_BR-nfd-ecommerce-dependency.json new file mode 100644 index 00000000..5c6e995e --- /dev/null +++ b/languages/wp-module-ecommerce-pt_BR-nfd-ecommerce-dependency.json @@ -0,0 +1,498 @@ +{ + "translation-revision-date": "2023-09-05 19:28+0530", + "generator": "WP-CLI\/2.8.1", + "source": "build\/index.js", + "domain": "messages", + "locale_data": { + "messages": { + "": { + "domain": "messages", + "lang": "pt_BR", + "plural-forms": "nplurals=2; plural=(n != 1);" + }, + "Live": [ + "No ar" + ], + "Payments": [ + "Pagamentos" + ], + "yes": [ + "sim" + ], + "Credit Card\/Debit Card\/NetBanking": [ + "Cart\u00e3o de Cr\u00e9dito\/Cart\u00e3o de D\u00e9bito\/D\u00e9bito em Conta" + ], + "Pay securely by Credit or Debit card or Internet Banking through Razorpay.": [ + "Pague com seguran\u00e7a em Cart\u00f5es de Cr\u00e9dito, D\u00e9bito ou D\u00e9bito em Conta via Razorpay." + ], + "capture": [ + "capturar" + ], + "Thank you for shopping with us. Your account has been charged and your transaction is successful. We will be processing your order soon.": [ + "Obrigado por comprar conosco. Seu pagamento foi feito com sucesso. Enviaremos sua compra em breve." + ], + "Successfully saved the Payment Details": [ + "Dados de Pagamento Salvos com Sucesso" + ], + "Discard Changes": [ + "Descartar Altera\u00e7\u00f5es" + ], + "Save Changes": [ + "Salvar Altera\u00e7\u00f5es" + ], + "Key ID *": [ + "ID da Chave *" + ], + "Test Key ID *": [ + "ID da Chave Teste *" + ], + "Key Secret *": [ + "Segredo da Chave *" + ], + "Test Key Secret *": [ + "Segredo da Chave Teste *" + ], + "The key ID can be found in the \"%1$sAPI Keys%2$s\" section of your Razorpay dashboard.": [ + "O ID da chave pode ser encontrado na se\u00e7\u00e3o \\\u201d%1$sAPI Keys%2$s\\\u201d de seu \u201c painel RazorPay." + ], + "That is not a valid test key ID. Please check your key ID and enter it again.": [ + "ID da Chave Teste inv\u00e1lido. Verifique o ID e tente novamente." + ], + "That is not a valid production key ID. Please check your key ID and enter it again.": [ + "ID da Chave inv\u00e1lido. Verifique o ID e tente novamente." + ], + "The key secret can be found in the \"%1$sAPI Keys%2$s\" section of your Razorpay dashboard.": [ + "O segredo da chave pode ser encontrado na se\u00e7\u00e3o \\\u201d%1$sAPI Keys%2$s\\\u201d de \u201c seu painel RazorPay." + ], + "Create an Account": [ + "Crie uma Conta" + ], + "Already have an account? ": [ + "J\u00e1 possui uma conta? " + ], + "Login": [ + "Login" + ], + "After you login to Razorpay, you will need to generate your key ID and key secret codes, you will then need to switch back to this tab in your browser and paste your codes into the fields below.": [ + "Ap\u00f3s fazer login no Razorpay, voc\u00ea precisar\u00e1 gerar seus c\u00f3digos de ID da \nchave e segredo da chave. Na sequ\u00eancia, volte para esta guia do seu \nnavegador e informe os c\u00f3digos nos campos abaixo." + ], + "Enable Test Mode": [ + "Habilite o Modo Teste" + ], + "Learn More": [ + "Saber Mais" + ], + "please wait while other features are installed...": [ + "aguarde enquanto outros recursos s\u00e3o instalados\u2026" + ], + "Purchase": [ + "Comprar" + ], + "Installing...": [ + "Instalando\u2026" + ], + "Improve your store with these free add-ons included in your plan.": [ + "Aprimore sua loja com esses adicionais gratuitos inclusos em seu plano." + ], + "Improve your site with these free add-ons included in your plan.": [ + "Aprimore seu site com esses adicionais gratuitos inclusos em seu plano." + ], + "Additional Features": [ + "Recursos Adicionais" + ], + "Next steps for your store": [ + "Pr\u00f3ximos passos para sua loja" + ], + "Next steps for your site": [ + "Pr\u00f3ximos passos para seu site" + ], + "Great job! You've completed all the current tasks to get your store up and running successfully!": [ + "\u00d3timo! Voc\u00ea completou todas as tarefas para colocar sua loja no ar com sucesso!" + ], + "Great job! You've completed all the current tasks to get your site up and running successfully!": [ + "\u00d3timo! Voc\u00ea completou todas as tarefas para colocar seu site no ar com sucesso!" + ], + "If you want to edit any of the info from the steps you've completed, simply click on the \"View completed tasks\" link below.": [ + "Se quiser editar qualquer informa\u00e7\u00e3o dos passos anteriores, clique em \u201cVer tarefas conclu\u00eddas\u201d abaixo." + ], + "View remaining tasks": [ + "Ver tarefas restantes" + ], + "View completed tasks": [ + "Ver tarefas conclu\u00eddas" + ], + "Congrats on your new store!": [ + "Parab\u00e9ns por sua nova loja!" + ], + "Congrats on your new site!": [ + "Parab\u00e9ns por seu novo site!" + ], + "You're just a few steps away from sharing your store with the world!": [ + "Voc\u00ea est\u00e1 h\u00e1 poucos passos de mostrar sua loja com ao mundo!" + ], + "You're just a few steps away from sharing your site with the world!": [ + "Voc\u00ea est\u00e1 h\u00e1 poucos passos de mostrar seu site com ao mundo!" + ], + "Ready to go to the next level?": [ + "Que tal subir de n\u00edvel?" + ], + "Increase your store's performance by helping people find your store and engaging more with them once they have.": [ + "Aumente a performance da sua loja ajudando visitantes a encontrar e interagir com ela." + ], + "Increase your site's performance by helping people find your site and engaging more with them once they have.": [ + "Aumente a performance do seu site ajudando visitantes a encontrar e interagir com ela." + ], + "Offline Payments": [ + "Pagamentos Offline" + ], + "Accept payments (money orders, bank transfers or C.O.D.) that are made outside your online store. ": [ + "Aceite pagamentos (pix, transfer\u00eancias banc\u00e1rias ou outros) feitos fora de sua loja virtual. " + ], + "Manual Payment methods": [ + "M\u00e9todos de Pagamento Manuais" + ], + "When a customer selects a manual payment method, you'll need to approve their order before it can be fulfilled.": [ + "Quando um cliente escolher um m\u00e9todo de pagamento manual, voc\u00ea precisar\u00e1 aprovar a compra para que ela seja efetivada." + ], + "Paypal": [ + "Paypal" + ], + "Online payments built for success. We help you do business in 200+ markets and 100+ currencies\u2014even if your customers don't have PayPal.": [ + "Pagamentos online criados para o sucesso. Ajudamos voc\u00ea a fazer neg\u00f3cios em 200+ mercados e 100+ moedas." + ], + "Manage": [ + "Gerenciar" + ], + "Connect": [ + "Conectar" + ], + "Environment:": [ + "Ambiente:" + ], + "White-Labeling": [ + "White-Label" + ], + "Country-specific payment methods": [ + "Meios de pagamento por pa\u00eds" + ], + " Uses many popular payment methods": [ + " Utiliza v\u00e1rios meios de pagamento populares" + ], + "Products & Services": [ + "Produtos & Servi\u00e7os" + ], + "Come here to manage products and services or add new ones to your store.": [ + "Gerencie aqui seus produtos e servi\u00e7os ou adicione novos \u00e0 sua loja." + ], + "Want help adding products?": [ + "Precisa de ajuda para adicionar produtos?" + ], + "Read this helpful knowledge base article to understand how to\nadd different products to your store": [ + "Acesse a base de conhecimento para saber como\u201d adicionar diferentes produtos \u00e0 sua loja" + ], + " How to add products": [ + " Como adicionar produtos" + ], + "No orders yet. When you start getting orders, they will show up here.": [ + "Sem vendas ainda. Quando chegarem, elas aparecer\u00e3o aqui." + ], + "Razorpay": [ + "Razorpay" + ], + "Build specifically for companies based in India, manage all your payments and financial operations from a consolidated dashboard": [ + "Criado especialmente para empresas da India, gerencie seus pagamentos e opera\u00e7\u00f5es financeiras em um relat\u00f3rio consolidado" + ], + "Complete control over the receiving and managing payments": [ + "Controle completo sobre recebimento e gerenciamento de pagamentos" + ], + "Immediate capture of funds": [ + "Recebimento imediato" + ], + "Instant refunds and settlements": [ + "Reembolso & acordos" + ], + "Fight fraud with Thirdwatch": [ + "Combata a fraude com Thirdwatch" + ], + "Intuitive reporting": [ + "Relat\u00f3rios intuitivos" + ], + " vs prior period": [ + " vs per\u00edodo anterior" + ], + "Shipping Options": [ + "Op\u00e7\u00f5es de Envio" + ], + "Setup a shipping account for delivering products to your customers": [ + "Crie uma conta para enviar produtos para seus clientes" + ], + "The best multi-carrier shipping software for e-commerce businesses.": [ + "A melhor plataforma multi-transportadoras para lojas virtuais." + ], + "Coming Soon activated": [ + "Em Breve ativado" + ], + "Your store is online and ready for business!": [ + "Sua loja virtual est\u00e1 no ar e pronta para vender!" + ], + "Your site is online now!": [ + "Seu site est\u00e1 no ar!" + ], + "You can re-enable the 'Coming Soon' mode in \u201cSettings\u201d.": [ + "Voc\u00ea pode habilitar o modo \u201cEm Breve\u201d novamente em \u201cConfigura\u00e7\u00f5es\u201d." + ], + "Ready to go live?": [ + "Tudo pronto para lan\u00e7ar?" + ], + "Preview your store before setting it live to make sure everything is how you want it.\nOnce you're ready, set your store live!": [ + "Visualize sua loja antes de ir ao ar para garantir que tudo esteja ok. Depois de tudo pronto, coloque sua loja no ar!" + ], + "Preview your Site before setting it live to make sure everything is how you want it.\nOnce you're ready, set your site live!": [ + "Visualize seu site antes de ir ao ar para garantir que tudo esteja ok. Depois de tudo pronto, coloque seu site no ar!" + ], + "Preview your store": [ + "Visualize sua loja" + ], + "Preview your site": [ + "Visualize seu site" + ], + "Launch your store": [ + "Coloque sua loja no ar" + ], + "Launch your site": [ + "Coloque seu site no ar" + ], + "Store": [ + "Loja" + ], + "Store Details": [ + "Detalhes da Loja" + ], + "This is the place for all your general store details and setup.": [ + "Este \u00e9 o local para todos os detalhes e configura\u00e7\u00f5es gerais da sua loja." + ], + "Store Info": [ + "Informa\u00e7\u00f5es da Loja" + ], + "We'll use this information to help you setup your online store": [ + "Usaremos essas informa\u00e7\u00f5es para te ajudar a configurar sua loja virtual" + ], + "Yes, enable sales tax.": [ + "Sim, habilitar imposto sobre vendas." + ], + "No, don't enable sales tax.": [ + "N\u00e3o, n\u00e3o habilitar imposto sobre vendas." + ], + "Tax Settings": [ + "Configura\u00e7\u00f5es de Impostos" + ], + "Decide whether you want to collect sales tax on items you sell. You can change this setting at anytime": [ + "Decida se deseja coletar imposto sobre vendas dos itens da sua loja. Voc\u00ea. Pode alterar essa configura\u00e7\u00e3o a qualquer momento" + ], + "Would you like to enable sales tax?": [ + "Gostaria de ativar o imposto sobre vendas?" + ], + "Sales & Discounts": [ + "Vendas & Descontos" + ], + "Add Upsells, Cross-sells, and other Promotions to your store": [ + "Adicione Upsell, Cross-sell e outras a\u00e7\u00f5es \u00e0 sua loja" + ], + "Create and manage deals, sales promotions and upsell campaigns like Buy-One-Get-One and more.": [ + "Crie e gerencie promo\u00e7\u00f5es e campanhas de upsell como pague 1 leve 2 e muito mais." + ], + "Install now": [ + "Instale agora" + ], + "Add a store to your site": [ + "Adicione uma loja ao seu site" + ], + "Adding a store to your website is quick and easy!\nJust install WooCommerce and get ready to start making money!": [ + "Adicionar uma loja ao seui site \u00e9 f\u00e1cil e r\u00e1pido! Instale o WooCommerce e se prepare para come\u00e7ar a vender!" + ], + "Install WooCommerce": [ + "Instale o WooCommerce" + ], + "Improve your store with these powerful add-ons.": [ + "Aprimore sua loja com esses add-ons poderosos." + ], + "Please try again, or ": [ + "Por favor tente novamente, ou " + ], + "contact support": [ + "contatar suporte" + ], + "Jetpack Boost - Website Speed, Performance and Critical CSS": [ + "Jetpack Boost \u2013 Velocidade do Site, Performance e CSS" + ], + "Speed up your WordPress site by optimizing page performance with Jetpack Boost.": [ + "Acelere seu site WordPress otimizando a performance das p\u00e1ginas com Jetpack Boost." + ], + "Contact Form by WPForms - Drag & Drop Form Builder for WordPress": [ + "Formul\u00e1rio de Contato by WPForms \u2013 Criador de Formul\u00e1rio Arraste & Solte para WP" + ], + "The best WordPress contact form plugin. Drag & Drop online form builder to create beautiful contact forms, payment forms, & other custom forms.": [ + "O melhor plugin de formul\u00e1rios para WordPress. Criador de formul\u00e1rios arraste & solte para obter lindos formul\u00e1rios de contato, pagamento e personalizados." + ], + "MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)": [ + "MonsterInsights - Painel do Google Analytics para WordPress (Estat\u00edsticas do Site Facilitadas)" + ], + "The best free Google Analytics plugin for WordPress. See how visitors find and use your website, so you can grow your business.": [ + "O melhor plugin gratuito do Google Analytics para WP. Veja como visitantes encontram e usam seu site para expandir seus neg\u00f3cios." + ], + "Yoast SEO": [ + "Yoast SEO" + ], + "Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin.": [ + "Aprimore o SEO do seu WordPress: Escreva conte\u00fado melhor e tenha um site totalmente otimizado usando o Yoast SEO." + ], + "Creative Mail - Easier WordPress & WooCommerce Email Marketing": [ + "Creative Mail \u2013 E-mail Marketing f\u00e1cil para WordPress & WooCommerce" + ], + "Creative Mail was designed specifically for WordPress and WooCommerce. Our intelligent (and super fun) email editor simplifies email marketing campaign.": [ + "Creative Mail foi projetado especificamente para WordPress e WooCommerce. Nosso editor de e-mail inteligente (e divertido) simplifica a campanha de e-mail marketing." + ], + "OptinMonster - Lead Generation": [ + "OptinMonster \u2013 Gerador de Leads" + ], + "OptinMonster is the best WordPress popup builder plugin that helps you grow your email newsletter list and sales with email popups, exit intent popups, floating bars and more!": [ + "OptinMonster \u00e9 o melhor plugin de cria\u00e7\u00e3o de pop-up para WP que ajuda voc\u00ea a aumentar suas listas de e-mail e suas vendas com pop-ups de e-mail, de sa\u00edda, barras flutuantes e muito mais!" + ], + "Add your store info": [ + "Adicione as informa\u00e7\u00f5es da sua loja" + ], + "Connect a payment processor": [ + "Conecte uma plataforma de pagamento" + ], + "Setup shipping options": [ + "Configure op\u00e7\u00f5es de envio" + ], + "Configure tax settings": [ + "Configure impostos" + ], + "Add a product": [ + "Adicione produtos" + ], + "Add a new page to your store": [ + "Adicione uma nova p\u00e1gina \u00e0 sua loja" + ], + "Add a new page to your site": [ + "Adicione uma nova p\u00e1gina ao seu site" + ], + "Connect to your social media accounts": [ + "Conecte suas redes sociais" + ], + "Enable Jetpack to connect to your social media accounts": [ + "Habilite o Jetpack para se conectar \u00e0s suas redes sociais" + ], + "Add a Product": [ + "Adicione produtos" + ], + "Manage Your Products": [ + "Gerencie Seus Produtos" + ], + "Manage products": [ + "Importe produtos" + ], + "Import Products via CSV": [ + "Importe produtos via CSV" + ], + "Import products": [ + "Importe produtos" + ], + "Bookings": [ + "Reservas" + ], + "Enable": [ + "Habilitar" + ], + "Manage bookings": [ + "Gerencias reservas" + ], + "Create a booking": [ + "Crie uma reserva" + ], + "Gift Cards": [ + "Cart\u00f5es-presente" + ], + "Manage gift cards": [ + "Gerencie cart\u00f5es-presente" + ], + "Create a gift card": [ + "Crie um cart\u00e3o-presente" + ], + "Total Sales": [ + "Vendas Totais" + ], + "Net Sales": [ + "Vendas L\u00edquidas" + ], + "Orders": [ + "Pedidos" + ], + "Products Sold": [ + "Produtos Vendidos" + ], + "Visitors": [ + "Visitantes" + ], + "Views": [ + "Visualiza\u00e7\u00f5es" + ], + "YITH Booking and Appointment for WooCommerce": [ + "Reserva e Agendamentos YITH para WooCommerce" + ], + "Enable a booking\/appointment system to manage renting or booking of services, rooms, houses, cars, accommodation and more to make it easy for your customers to do business with you.": [ + "Habilite um sistema de reservas\/agendamento para gerenciar aluguel ou reserva de servi\u00e7os, quartos, casas, carros, acomoda\u00e7\u00f5es e muito mais para facilitar aos seus clientes fazer neg\u00f3cios com voc\u00ea." + ], + "YITH WooCommerce AJAX Search": [ + "YITH WooCommerce AJAX Search" + ], + "YITH WooCommerce AJAX Search is an effective and predictive real-time search engine on your store so users can quickly find products they want. Speed up your search and boost your sales.": [ + "YITH WooCommerce AJAX Search \u00e9 um mecanismo de pesquisa eficaz e preditivo em tempo real na sua loja, para que usu\u00e1rios possam encontrar rapidamente os produtos que desejam. Acelere sua pesquisa e aumente suas vendas." + ], + "YITH WooCommerce Wishlist": [ + "Lista de desejos YITH para WooCommerce" + ], + "Allow your customers to create lists of products they want and share them with family and friends.": [ + "Permita que seus clientes criem listas de produtos que desejam e as compartilhem com familiares e amigos." + ], + "YITH WooCommerce AJAX Product Filter": [ + "Filtro de Produto AJAX YITH para WooCommerce" + ], + "YITH WooCommerce Ajax Product Filter is the perfect way to add an advanced filter to all products in your store by size, color, price, and more to find the right product or gift with ease.": [ + "Ajax YITH para WooCommerce \u00e9 a forma perfeita de ter um filtro avan\u00e7ado para os produtos da sua loja por tamanho, cor, pre\u00e7o e muito mais para encontrar o produto certo com facilidade." + ], + "YITH WooCommerce Gift Cards": [ + "Cart\u00f5es-Presente YITH para WooCommerce" + ], + "Sell gift cards to increase your store's revenue and win new customers.": [ + "Venda cart\u00f5es-presente para aumentar a receita da sua loja e conquistar novos clientes." + ], + "YITH WooCommerce Customize My Account Page": [ + "Personaliza\u00e7\u00e3o da P\u00e1gina Minha Conta YITH para WooCommerce" + ], + "Customize the My Account page of your customers by creating custom sections with promotions and ad-hoc content based on your needs.": [ + "Personalize a p\u00e1gina Minha conta de seus clientes criando se\u00e7\u00f5es personalizadas com promo\u00e7\u00f5es com base em suas necessidades." + ], + "Ecomdash": [ + "Ecomdash" + ], + "All your sales channels and products, managed in one place. See how this dashboard puts selling, updating, and inventory all at your fingertips. Perfect for selling on Amazon, Etsy, eBay and more.": [ + "Todos os seus canais de vendas e produtos gerenciados em um s\u00f3 lugar. Veja como este painel coloca vendas, atualiza\u00e7\u00e3o e estoque ao seu alcance. Perfeito para vender na Amazon, eBay e muito mais." + ], + "Complete Upsell, Cross sell & Promotions Solution": [ + "Solu\u00e7\u00e3o completa de Upsell, Cross-sell e promo\u00e7\u00f5es" + ], + "Plugin failed to install": [ + "Erro na instala\u00e7\u00e3o do plugin" + ], + "Plugin installation is in progress": [ + "Instala\u00e7\u00e3o do plugin em andamento" + ], + "We'll be done in sometime": [ + "Finalizaremos em alguns instantes" + ] + } + } +} \ No newline at end of file diff --git a/languages/wp-module-ecommerce-pt_BR.mo b/languages/wp-module-ecommerce-pt_BR.mo new file mode 100644 index 00000000..db5c58b3 Binary files /dev/null and b/languages/wp-module-ecommerce-pt_BR.mo differ diff --git a/languages/wp-module-ecommerce-pt_BR.po b/languages/wp-module-ecommerce-pt_BR.po new file mode 100644 index 00000000..6a018223 --- /dev/null +++ b/languages/wp-module-ecommerce-pt_BR.po @@ -0,0 +1,854 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-04T10:06:14+00:00\n" +"PO-Revision-Date: 2023-09-05 19:28+0530\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 3.3.2\n" +"X-Domain: wp-module-ecommerce\n" + +#: bootstrap.php:38 +msgid "eCommerce" +msgstr "E-commerce" + +#: includes/ECommerce.php:132 includes/ECommerce.php:143 +msgid "NFD eCommerce Options" +msgstr "Opções NFD E-commerce" + +#: includes/ECommerce.php:157 +msgid "Coming Soon" +msgstr "Em breve" + +#: includes/ECommerce.php:158 build/index.js:7257 build/index.js:6220 +msgid "Live" +msgstr "No ar" + +#: includes/ECommerce.php:163 +msgid "Site Status: " +msgstr "Status do Site: " + +#: includes/ECommerce.php:165 +msgid "Launch Your Site" +msgstr "Coloque Seu Site no Ar" + +#: includes/Partials/CaptiveFlow.php:59 +msgid "NFD eCommerce RazorPay Options" +msgstr "Opções RazorPay NFD E-commerce" + +#: build/index.js:5759 build/index.js:4578 +msgid "Payments" +msgstr "Pagamentos" + +#: build/index.js:5797 build/index.js:4622 +msgid "yes" +msgstr "sim" + +#: build/index.js:5798 build/index.js:4623 +msgid "Credit Card/Debit Card/NetBanking" +msgstr "Cartão de Crédito/Cartão de Débito/Débito em Conta" + +#: build/index.js:5799 build/index.js:4627 +msgid "" +"Pay securely by Credit or Debit card or Internet Banking through Razorpay." +msgstr "" +"Pague com segurança em Cartões de Crédito, Débito ou Débito em Conta via " +"Razorpay." + +#: build/index.js:5800 build/index.js:4631 +msgid "capture" +msgstr "capturar" + +#: build/index.js:5801 build/index.js:4632 +msgid "" +"Thank you for shopping with us. Your account has been charged and your " +"transaction is successful. We will be processing your order soon." +msgstr "" +"Obrigado por comprar conosco. Seu pagamento foi feito com sucesso. " +"Enviaremos sua compra em breve." + +#: build/index.js:5809 build/index.js:4643 +msgid "Successfully saved the Payment Details" +msgstr "Dados de Pagamento Salvos com Sucesso" + +#: build/index.js:5843 build/index.js:7539 build/index.js:4688 +#: build/index.js:6495 +msgid "Discard Changes" +msgstr "Descartar Alterações" + +#: build/index.js:5847 build/index.js:7543 build/index.js:4691 +#: build/index.js:6498 +msgid "Save Changes" +msgstr "Salvar Alterações" + +#: build/index.js:5883 build/index.js:4712 +msgid "Key ID *" +msgstr "ID da Chave *" + +#: build/index.js:5884 build/index.js:4713 +msgid "Test Key ID *" +msgstr "ID da Chave Teste *" + +#: build/index.js:5885 build/index.js:4714 +msgid "Key Secret *" +msgstr "Segredo da Chave *" + +#: build/index.js:5886 build/index.js:4715 +msgid "Test Key Secret *" +msgstr "Segredo da Chave Teste *" + +#: build/index.js:5887 build/index.js:4717 +msgid "" +"The key ID can be found in the \"%1$sAPI Keys%2$s\" section of your Razorpay " +"dashboard." +msgstr "" +"O ID da chave pode ser encontrado na seção \\”%1$sAPI Keys%2$s\\” de seu “ " +"painel RazorPay." + +#: build/index.js:5888 build/index.js:4724 +msgid "" +"That is not a valid test key ID. Please check your key ID and enter it again." +msgstr "ID da Chave Teste inválido. Verifique o ID e tente novamente." + +#: build/index.js:5889 build/index.js:4728 +msgid "" +"That is not a valid production key ID. Please check your key ID and enter it " +"again." +msgstr "ID da Chave inválido. Verifique o ID e tente novamente." + +#: build/index.js:5890 build/index.js:4733 +msgid "" +"The key secret can be found in the \"%1$sAPI Keys%2$s\" section of your " +"Razorpay dashboard." +msgstr "" +"O segredo da chave pode ser encontrado na seção \\”%1$sAPI Keys%2$s\\” de “ " +"seu painel RazorPay." + +#: build/index.js:5928 build/index.js:4784 +msgid "Create an Account" +msgstr "Crie uma Conta" + +#: build/index.js:5930 build/index.js:4789 +msgid "Already have an account? " +msgstr "Já possui uma conta? " + +#: build/index.js:5933 build/index.js:4794 +msgid "Login" +msgstr "Login" + +#: build/index.js:5935 build/index.js:4798 +msgid "" +"After you login to Razorpay, you will need to generate your key ID and key " +"secret codes, you will then need to switch back to this tab in your browser " +"and paste your codes into the fields below." +msgstr "" +"Após fazer login no Razorpay, você precisará gerar seus códigos de ID da \n" +"chave e segredo da chave. Na sequência, volte para esta guia do seu \n" +"navegador e informe os códigos nos campos abaixo." + +#: build/index.js:5940 build/index.js:4809 +msgid "Enable Test Mode" +msgstr "Habilite o Modo Teste" + +#: build/index.js:6085 build/index.js:4924 +msgid "Learn More" +msgstr "Saber Mais" + +#: build/index.js:6087 build/index.js:4932 +msgid "please wait while other features are installed..." +msgstr "aguarde enquanto outros recursos são instalados…" + +#: build/index.js:6102 build/index.js:4965 +msgid "Purchase" +msgstr "Comprar" + +#: build/index.js:6108 build/index.js:6498 build/index.js:6929 +#: build/index.js:7188 build/index.js:4984 build/index.js:5345 +#: build/index.js:5848 build/index.js:6143 +msgid "Installing..." +msgstr "Instalando…" + +#: build/index.js:6143 build/index.js:5004 +msgid "Improve your store with these free add-ons included in your plan." +msgstr "" +"Aprimore sua loja com esses adicionais gratuitos inclusos em seu plano." + +#: build/index.js:6143 build/index.js:5008 +msgid "Improve your site with these free add-ons included in your plan." +msgstr "" +"Aprimore seu site com esses adicionais gratuitos inclusos em seu plano." + +#: build/index.js:6154 build/index.js:8057 build/index.js:5018 +#: build/index.js:7012 +msgid "Additional Features" +msgstr "Recursos Adicionais" + +#: build/index.js:6260 build/index.js:5111 +msgid "Next steps for your store" +msgstr "Próximos passos para sua loja" + +#: build/index.js:6260 build/index.js:5112 +msgid "Next steps for your site" +msgstr "Próximos passos para seu site" + +#: build/index.js:6260 build/index.js:5118 +msgid "" +"Great job! You've completed all the current tasks to get your store up and " +"running successfully!" +msgstr "" +"Ótimo! Você completou todas as tarefas para colocar sua loja no ar com " +"sucesso!" + +#: build/index.js:6260 build/index.js:5122 +msgid "" +"Great job! You've completed all the current tasks to get your site up and " +"running successfully!" +msgstr "" +"Ótimo! Você completou todas as tarefas para colocar seu site no ar com " +"sucesso!" + +#: build/index.js:6260 build/index.js:5129 +msgid "" +"If you want to edit any of the info from the steps you've completed, simply " +"click on the \"View completed tasks\" link below." +msgstr "" +"Se quiser editar qualquer informação dos passos anteriores, clique em “Ver " +"tarefas concluídas” abaixo." + +#: build/index.js:6271 build/index.js:5153 +msgid "View remaining tasks" +msgstr "Ver tarefas restantes" + +#: build/index.js:6271 build/index.js:5154 +msgid "View completed tasks" +msgstr "Ver tarefas concluídas" + +#: build/index.js:6312 build/index.js:5174 +msgid "Congrats on your new store!" +msgstr "Parabéns por sua nova loja!" + +#: build/index.js:6312 build/index.js:5175 +msgid "Congrats on your new site!" +msgstr "Parabéns por seu novo site!" + +#: build/index.js:6313 build/index.js:5177 +msgid "You're just a few steps away from sharing your store with the world!" +msgstr "Você está há poucos passos de mostrar sua loja com ao mundo!" + +#: build/index.js:6313 build/index.js:5181 +msgid "You're just a few steps away from sharing your site with the world!" +msgstr "Você está há poucos passos de mostrar seu site com ao mundo!" + +#: build/index.js:6317 build/index.js:5188 +msgid "Ready to go to the next level?" +msgstr "Que tal subir de nível?" + +#: build/index.js:6318 build/index.js:5190 +msgid "" +"Increase your store's performance by helping people find your store and " +"engaging more with them once they have." +msgstr "" +"Aumente a performance da sua loja ajudando visitantes a encontrar e " +"interagir com ela." + +#: build/index.js:6318 build/index.js:5194 +msgid "" +"Increase your site's performance by helping people find your site and " +"engaging more with them once they have." +msgstr "" +"Aumente a performance do seu site ajudando visitantes a encontrar e " +"interagir com ela." + +#: build/index.js:6405 build/index.js:5264 +msgid "Offline Payments" +msgstr "Pagamentos Offline" + +#: build/index.js:6406 build/index.js:5264 +msgid "" +"Accept payments (money orders, bank transfers or C.O.D.) that are made " +"outside your online store. " +msgstr "" +"Aceite pagamentos (pix, transferências bancárias ou outros) feitos fora de " +"sua loja virtual. " + +#: build/index.js:6411 build/index.js:5268 +msgid "Manual Payment methods" +msgstr "Métodos de Pagamento Manuais" + +#: build/index.js:6413 build/index.js:5270 +msgid "" +"When a customer selects a manual payment method, you'll need to approve " +"their order before it can be fulfilled." +msgstr "" +"Quando um cliente escolher um método de pagamento manual, você precisará " +"aprovar a compra para que ela seja efetivada." + +#: build/index.js:6480 build/index.js:5317 +msgid "Paypal" +msgstr "Paypal" + +#: build/index.js:6481 build/index.js:5318 +msgid "" +"Online payments built for success. We help you do business in 200+ markets " +"and 100+ currencies—even if your customers don't have PayPal." +msgstr "" +"Pagamentos online criados para o sucesso. Ajudamos você a fazer negócios em " +"200+ mercados e 100+ moedas." + +#: build/index.js:6503 build/index.js:6922 build/index.js:7181 +#: build/index.js:5357 build/index.js:5822 build/index.js:6120 +msgid "Manage" +msgstr "Gerenciar" + +#: build/index.js:6506 build/index.js:7184 build/index.js:5367 +#: build/index.js:6130 +msgid "Connect" +msgstr "Conectar" + +#: build/index.js:6508 build/index.js:6937 build/index.js:7190 +#: build/index.js:5373 build/index.js:5879 build/index.js:6155 +msgid "Environment:" +msgstr "Ambiente:" + +#: build/index.js:6518 build/index.js:5393 +msgid "White-Labeling" +msgstr "White-Label" + +#: build/index.js:6518 build/index.js:5395 +msgid "Country-specific payment methods" +msgstr "Meios de pagamento por país" + +#: build/index.js:6520 build/index.js:5402 +msgid " Uses many popular payment methods" +msgstr " Utiliza vários meios de pagamento populares" + +#: build/index.js:6580 build/index.js:5450 +msgid "Products & Services" +msgstr "Produtos & Serviços" + +#: build/index.js:6581 build/index.js:5451 +msgid "" +"Come here to manage products and services or add new ones to your store." +msgstr "Gerencie aqui seus produtos e serviços ou adicione novos à sua loja." + +#: build/index.js:6589 build/index.js:5466 +msgid "Want help adding products?" +msgstr "Precisa de ajuda para adicionar produtos?" + +#: build/index.js:6591 build/index.js:5469 +msgid "" +"Read this helpful knowledge base article to understand how to\n" +"add different products to your store" +msgstr "" +"Acesse a base de conhecimento para saber como” adicionar diferentes produtos " +"à sua loja" + +#: build/index.js:6600 build/index.js:5489 +msgid " How to add products" +msgstr " Como adicionar produtos" + +#: build/index.js:6818 build/index.js:5680 +msgid "No orders yet. When you start getting orders, they will show up here." +msgstr "Sem vendas ainda. Quando chegarem, elas aparecerão aqui." + +#: build/index.js:6902 build/index.js:5790 +msgid "Razorpay" +msgstr "Razorpay" + +#: build/index.js:6903 build/index.js:5791 +msgid "" +"Build specifically for companies based in India, manage all your payments " +"and financial operations from a consolidated dashboard" +msgstr "" +"Criado especialmente para empresas da India, gerencie seus pagamentos e " +"operações financeiras em um relatório consolidado" + +#: build/index.js:6933 build/index.js:5855 +msgid "Complete control over the receiving and managing payments" +msgstr "Controle completo sobre recebimento e gerenciamento de pagamentos" + +#: build/index.js:6935 build/index.js:5862 +msgid "Immediate capture of funds" +msgstr "Recebimento imediato" + +#: build/index.js:6935 build/index.js:5865 +msgid "Instant refunds and settlements" +msgstr "Reembolso & acordos" + +#: build/index.js:6935 build/index.js:5871 +msgid "Fight fraud with Thirdwatch" +msgstr "Combata a fraude com Thirdwatch" + +#: build/index.js:6935 build/index.js:5873 +msgid "Intuitive reporting" +msgstr "Relatórios intuitivos" + +#: build/index.js:6991 build/index.js:5928 +msgid " vs prior period" +msgstr " vs período anterior" + +#: build/index.js:7162 build/index.js:6089 +msgid "Shipping Options" +msgstr "Opções de Envio" + +#: build/index.js:7163 build/index.js:6090 +msgid "Setup a shipping account for delivering products to your customers" +msgstr "Crie uma conta para enviar produtos para seus clientes" + +#: build/index.js:7188 build/index.js:6148 +msgid "The best multi-carrier shipping software for e-commerce businesses." +msgstr "A melhor plataforma multi-transportadoras para lojas virtuais." + +#: build/index.js:7230 build/index.js:6187 +msgid "Coming Soon activated" +msgstr "Em Breve ativado" + +#: build/index.js:7230 build/index.js:6189 +msgid "Your store is online and ready for business!" +msgstr "Sua loja virtual está no ar e pronta para vender!" + +#: build/index.js:7230 build/index.js:6190 +msgid "Your site is online now!" +msgstr "Seu site está no ar!" + +#: build/index.js:7231 build/index.js:6195 +msgid "You can re-enable the 'Coming Soon' mode in “Settings”." +msgstr "Você pode habilitar o modo “Em Breve” novamente em “Configurações”." + +#: build/index.js:7271 build/index.js:6237 +msgid "Ready to go live?" +msgstr "Tudo pronto para lançar?" + +#: build/index.js:7273 build/index.js:6241 +msgid "" +"Preview your store before setting it live to make sure everything is how you " +"want it.\n" +"Once you're ready, set your store live!" +msgstr "" +"Visualize sua loja antes de ir ao ar para garantir que tudo esteja ok. " +"Depois de tudo pronto, coloque sua loja no ar!" + +#: build/index.js:7273 build/index.js:6245 +msgid "" +"Preview your Site before setting it live to make sure everything is how you " +"want it.\n" +"Once you're ready, set your site live!" +msgstr "" +"Visualize seu site antes de ir ao ar para garantir que tudo esteja ok. " +"Depois de tudo pronto, coloque seu site no ar!" + +#: build/index.js:7281 build/index.js:6267 +msgid "Preview your store" +msgstr "Visualize sua loja" + +#: build/index.js:7281 build/index.js:6268 +msgid "Preview your site" +msgstr "Visualize seu site" + +#: build/index.js:7286 build/index.js:6278 +msgid "Launch your store" +msgstr "Coloque sua loja no ar" + +#: build/index.js:7286 build/index.js:6279 +msgid "Launch your site" +msgstr "Coloque seu site no ar" + +#: build/index.js:7318 build/index.js:6296 +msgid "Store" +msgstr "Loja" + +#: build/index.js:7457 build/index.js:6409 +msgid "Store Details" +msgstr "Detalhes da Loja" + +#: build/index.js:7458 build/index.js:6410 +msgid "This is the place for all your general store details and setup." +msgstr "" +"Este é o local para todos os detalhes e configurações gerais da sua loja." + +#: build/index.js:7611 build/index.js:6548 +msgid "Store Info" +msgstr "Informações da Loja" + +#: build/index.js:7612 build/index.js:6549 +msgid "We'll use this information to help you setup your online store" +msgstr "" +"Usaremos essas informações para te ajudar a configurar sua loja virtual" + +#: build/index.js:7754 build/index.js:6737 +msgid "Yes, enable sales tax." +msgstr "Sim, habilitar imposto sobre vendas." + +#: build/index.js:7757 build/index.js:6741 +msgid "No, don't enable sales tax." +msgstr "Não, não habilitar imposto sobre vendas." + +#: build/index.js:7766 build/index.js:6751 +msgid "Tax Settings" +msgstr "Configurações de Impostos" + +#: build/index.js:7767 build/index.js:6752 +msgid "" +"Decide whether you want to collect sales tax on items you sell. You can " +"change this setting at anytime" +msgstr "" +"Decida se deseja coletar imposto sobre vendas dos itens da sua loja. Você. " +"Pode alterar essa configuração a qualquer momento" + +#: build/index.js:7768 build/index.js:6758 +msgid "Would you like to enable sales tax?" +msgstr "Gostaria de ativar o imposto sobre vendas?" + +#: build/index.js:7930 build/index.js:6899 +msgid "Sales & Discounts" +msgstr "Vendas & Descontos" + +#: build/index.js:7940 build/index.js:6911 +msgid "Add Upsells, Cross-sells, and other Promotions to your store" +msgstr "Adicione Upsell, Cross-sell e outras ações à sua loja" + +#: build/index.js:7942 build/index.js:9355 build/index.js:6917 +#: build/index.js:8403 +msgid "" +"Create and manage deals, sales promotions and upsell campaigns like Buy-One-" +"Get-One and more." +msgstr "" +"Crie e gerencie promoções e campanhas de upsell como pague 1 leve 2 e muito " +"mais." + +#: build/index.js:7949 build/index.js:6930 +msgid "Install now" +msgstr "Instale agora" + +#: build/index.js:8001 build/index.js:6968 +msgid "Add a store to your site" +msgstr "Adicione uma loja ao seu site" + +#: build/index.js:8003 build/index.js:6971 +msgid "" +"Adding a store to your website is quick and easy!\n" +"Just install WooCommerce and get ready to start making money!" +msgstr "" +"Adicionar uma loja ao seui site é fácil e rápido! Instale o WooCommerce e se " +"prepare para começar a vender!" + +#: build/index.js:8010 build/index.js:6984 +msgid "Install WooCommerce" +msgstr "Instale o WooCommerce" + +#: build/index.js:8058 build/index.js:7013 +msgid "Improve your store with these powerful add-ons." +msgstr "Aprimore sua loja com esses add-ons poderosos." + +#: build/index.js:8246 build/index.js:8303 build/index.js:9412 +#: build/index.js:7166 build/index.js:7204 build/index.js:8454 +msgid "Please try again, or " +msgstr "Por favor tente novamente, ou " + +#: build/index.js:8249 build/index.js:8306 build/index.js:9415 +#: build/index.js:7168 build/index.js:7206 build/index.js:8456 +msgid "contact support" +msgstr "contatar suporte" + +#: build/index.js:8377 build/index.js:7268 +msgid "Jetpack Boost - Website Speed, Performance and Critical CSS" +msgstr "Jetpack Boost – Velocidade do Site, Performance e CSS" + +#: build/index.js:8378 build/index.js:7272 +msgid "" +"Speed up your WordPress site by optimizing page performance with Jetpack " +"Boost." +msgstr "" +"Acelere seu site WordPress otimizando a performance das páginas com Jetpack " +"Boost." + +#: build/index.js:8399 build/index.js:7297 +msgid "Contact Form by WPForms - Drag & Drop Form Builder for WordPress" +msgstr "" +"Formulário de Contato by WPForms – Criador de Formulário Arraste & Solte " +"para WP" + +#: build/index.js:8400 build/index.js:7301 +msgid "" +"The best WordPress contact form plugin. Drag & Drop online form builder to " +"create beautiful contact forms, payment forms, & other custom forms." +msgstr "" +"O melhor plugin de formulários para WordPress. Criador de formulários " +"arraste & solte para obter lindos formulários de contato, pagamento e " +"personalizados." + +#: build/index.js:8421 build/index.js:7326 +msgid "" +"MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats " +"Made Easy)" +msgstr "" +"MonsterInsights - Painel do Google Analytics para WordPress (Estatísticas do " +"Site Facilitadas)" + +#: build/index.js:8422 build/index.js:7330 +msgid "" +"The best free Google Analytics plugin for WordPress. See how visitors find " +"and use your website, so you can grow your business." +msgstr "" +"O melhor plugin gratuito do Google Analytics para WP. Veja como visitantes " +"encontram e usam seu site para expandir seus negócios." + +#: build/index.js:8443 build/index.js:7359 +msgid "Yoast SEO" +msgstr "Yoast SEO" + +#: build/index.js:8444 build/index.js:7360 +msgid "" +"Improve your WordPress SEO: Write better content and have a fully optimized " +"WordPress site using the Yoast SEO plugin." +msgstr "" +"Aprimore o SEO do seu WordPress: Escreva conteúdo melhor e tenha um site " +"totalmente otimizado usando o Yoast SEO." + +#: build/index.js:8465 build/index.js:7385 +msgid "Creative Mail - Easier WordPress & WooCommerce Email Marketing" +msgstr "Creative Mail – E-mail Marketing fácil para WordPress & WooCommerce" + +#: build/index.js:8466 build/index.js:7389 +msgid "" +"Creative Mail was designed specifically for WordPress and WooCommerce. Our " +"intelligent (and super fun) email editor simplifies email marketing campaign." +msgstr "" +"Creative Mail foi projetado especificamente para WordPress e WooCommerce. " +"Nosso editor de e-mail inteligente (e divertido) simplifica a campanha de e-" +"mail marketing." + +#: build/index.js:8487 build/index.js:7418 +msgid "OptinMonster - Lead Generation" +msgstr "OptinMonster – Gerador de Leads" + +#: build/index.js:8488 build/index.js:7419 +msgid "" +"OptinMonster is the best WordPress popup builder plugin that helps you grow " +"your email newsletter list and sales with email popups, exit intent popups, " +"floating bars and more!" +msgstr "" +"OptinMonster é o melhor plugin de criação de pop-up para WP que ajuda você a " +"aumentar suas listas de e-mail e suas vendas com pop-ups de e-mail, de " +"saída, barras flutuantes e muito mais!" + +#: build/index.js:8554 build/index.js:7472 +msgid "Add your store info" +msgstr "Adicione as informações da sua loja" + +#: build/index.js:8571 build/index.js:7487 +msgid "Connect a payment processor" +msgstr "Conecte uma plataforma de pagamento" + +#: build/index.js:8588 build/index.js:7507 +msgid "Setup shipping options" +msgstr "Configure opções de envio" + +#: build/index.js:8605 build/index.js:7527 +msgid "Configure tax settings" +msgstr "Configure impostos" + +#: build/index.js:8622 build/index.js:8763 build/index.js:7542 +#: build/index.js:7685 +msgid "Add a product" +msgstr "Adicione produtos" + +#: build/index.js:8638 build/index.js:7559 +msgid "Add a new page to your store" +msgstr "Adicione uma nova página à sua loja" + +#: build/index.js:8638 build/index.js:7560 +msgid "Add a new page to your site" +msgstr "Adicione uma nova página ao seu site" + +#: build/index.js:8655 build/index.js:7580 +msgid "Connect to your social media accounts" +msgstr "Conecte suas redes sociais" + +#: build/index.js:8676 build/index.js:7604 +msgid "Enable Jetpack to connect to your social media accounts" +msgstr "Habilite o Jetpack para se conectar às suas redes sociais" + +#: build/index.js:8762 build/index.js:7684 +msgid "Add a Product" +msgstr "Adicione produtos" + +#: build/index.js:8786 build/index.js:7713 +msgid "Manage Your Products" +msgstr "Gerencie Seus Produtos" + +#: build/index.js:8787 build/index.js:7714 +msgid "Manage products" +msgstr "Importe produtos" + +#: build/index.js:8814 build/index.js:7748 +msgid "Import Products via CSV" +msgstr "Importe produtos via CSV" + +#: build/index.js:8815 build/index.js:7749 +msgid "Import products" +msgstr "Importe produtos" + +#: build/index.js:8841 build/index.js:7783 +msgid "Bookings" +msgstr "Reservas" + +#: build/index.js:8842 build/index.js:8879 build/index.js:7785 +#: build/index.js:7839 +msgid "Enable" +msgstr "Habilitar" + +#: build/index.js:8842 build/index.js:7787 +msgid "Manage bookings" +msgstr "Gerencias reservas" + +#: build/index.js:8842 build/index.js:7788 +msgid "Create a booking" +msgstr "Crie uma reserva" + +#: build/index.js:8878 build/index.js:7837 +msgid "Gift Cards" +msgstr "Cartões-presente" + +#: build/index.js:8879 build/index.js:7841 +msgid "Manage gift cards" +msgstr "Gerencie cartões-presente" + +#: build/index.js:8879 build/index.js:7842 +msgid "Create a gift card" +msgstr "Crie um cartão-presente" + +#: build/index.js:8991 build/index.js:7942 +msgid "Total Sales" +msgstr "Vendas Totais" + +#: build/index.js:9008 build/index.js:7963 +msgid "Net Sales" +msgstr "Vendas Líquidas" + +#: build/index.js:9025 build/index.js:7984 +msgid "Orders" +msgstr "Pedidos" + +#: build/index.js:9043 build/index.js:8007 +msgid "Products Sold" +msgstr "Produtos Vendidos" + +#: build/index.js:9061 build/index.js:8030 +msgid "Visitors" +msgstr "Visitantes" + +#: build/index.js:9079 build/index.js:8057 +msgid "Views" +msgstr "Visualizações" + +#: build/index.js:9168 build/index.js:8130 +msgid "YITH Booking and Appointment for WooCommerce" +msgstr "Reserva e Agendamentos YITH para WooCommerce" + +#: build/index.js:9169 build/index.js:8134 +msgid "" +"Enable a booking/appointment system to manage renting or booking of " +"services, rooms, houses, cars, accommodation and more to make it easy for " +"your customers to do business with you." +msgstr "" +"Habilite um sistema de reservas/agendamento para gerenciar aluguel ou " +"reserva de serviços, quartos, casas, carros, acomodações e muito mais para " +"facilitar aos seus clientes fazer negócios com você." + +#: build/index.js:9193 build/index.js:8169 +msgid "YITH WooCommerce AJAX Search" +msgstr "YITH WooCommerce AJAX Search" + +#: build/index.js:9194 build/index.js:8170 +msgid "" +"YITH WooCommerce AJAX Search is an effective and predictive real-time search " +"engine on your store so users can quickly find products they want. Speed up " +"your search and boost your sales." +msgstr "" +"YITH WooCommerce AJAX Search é um mecanismo de pesquisa eficaz e preditivo " +"em tempo real na sua loja, para que usuários possam encontrar rapidamente os " +"produtos que desejam. Acelere sua pesquisa e aumente suas vendas." + +#: build/index.js:9220 build/index.js:8206 +msgid "YITH WooCommerce Wishlist" +msgstr "Lista de desejos YITH para WooCommerce" + +#: build/index.js:9221 build/index.js:8207 +msgid "" +"Allow your customers to create lists of products they want and share them " +"with family and friends." +msgstr "" +"Permita que seus clientes criem listas de produtos que desejam e as " +"compartilhem com familiares e amigos." + +#: build/index.js:9247 build/index.js:8243 +msgid "YITH WooCommerce AJAX Product Filter" +msgstr "Filtro de Produto AJAX YITH para WooCommerce" + +#: build/index.js:9248 build/index.js:8247 +msgid "" +"YITH WooCommerce Ajax Product Filter is the perfect way to add an advanced " +"filter to all products in your store by size, color, price, and more to find " +"the right product or gift with ease." +msgstr "" +"Ajax YITH para WooCommerce é a forma perfeita de ter um filtro avançado para " +"os produtos da sua loja por tamanho, cor, preço e muito mais para encontrar " +"o produto certo com facilidade." + +#: build/index.js:9274 build/index.js:8285 +msgid "YITH WooCommerce Gift Cards" +msgstr "Cartões-Presente YITH para WooCommerce" + +#: build/index.js:9275 build/index.js:8286 +msgid "Sell gift cards to increase your store's revenue and win new customers." +msgstr "" +"Venda cartões-presente para aumentar a receita da sua loja e conquistar " +"novos clientes." + +#: build/index.js:9301 build/index.js:8324 +msgid "YITH WooCommerce Customize My Account Page" +msgstr "Personalização da Página Minha Conta YITH para WooCommerce" + +#: build/index.js:9302 build/index.js:8328 +msgid "" +"Customize the My Account page of your customers by creating custom sections " +"with promotions and ad-hoc content based on your needs." +msgstr "" +"Personalize a página Minha conta de seus clientes criando seções " +"personalizadas com promoções com base em suas necessidades." + +#: build/index.js:9327 build/index.js:8364 +msgid "Ecomdash" +msgstr "Ecomdash" + +#: build/index.js:9328 build/index.js:8365 +msgid "" +"All your sales channels and products, managed in one place. See how this " +"dashboard puts selling, updating, and inventory all at your fingertips. " +"Perfect for selling on Amazon, Etsy, eBay and more." +msgstr "" +"Todos os seus canais de vendas e produtos gerenciados em um só lugar. Veja " +"como este painel coloca vendas, atualização e estoque ao seu alcance. " +"Perfeito para vender na Amazon, eBay e muito mais." + +#: build/index.js:9354 build/index.js:8399 +msgid "Complete Upsell, Cross sell & Promotions Solution" +msgstr "Solução completa de Upsell, Cross-sell e promoções" + +#: build/index.js:9411 build/index.js:8451 +msgid "Plugin failed to install" +msgstr "Erro na instalação do plugin" + +#: build/index.js:9421 build/index.js:8465 +msgid "Plugin installation is in progress" +msgstr "Instalação do plugin em andamento" + +#: build/index.js:9422 build/index.js:8466 +msgid "We'll be done in sometime" +msgstr "Finalizaremos em alguns instantes" diff --git a/languages/wp-module-ecommerce.pot b/languages/wp-module-ecommerce.pot index 35dd1401..38b48f8e 100644 --- a/languages/wp-module-ecommerce.pot +++ b/languages/wp-module-ecommerce.pot @@ -1,41 +1,41 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"Report-Msgid-Bugs-To: https://github.com/aulisius/bluehost-wordpress-plugin/issues\n" +"Report-Msgid-Bugs-To: \n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: \n" +"POT-Creation-Date: 2023-09-04T10:06:14+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.7.1\n" +"X-Generator: WP-CLI 2.8.1\n" "X-Domain: wp-module-ecommerce\n" -#: bootstrap.php:16 +#: bootstrap.php:38 msgid "eCommerce" msgstr "" -#: includes/ECommerce.php:108 -#: includes/ECommerce.php:119 +#: includes/ECommerce.php:132 +#: includes/ECommerce.php:143 msgid "NFD eCommerce Options" msgstr "" -#: includes/ECommerce.php:133 +#: includes/ECommerce.php:157 msgid "Coming Soon" msgstr "" -#: includes/ECommerce.php:134 -#: build/index.js:3233 -#: build/index.js:2460 +#: includes/ECommerce.php:158 +#: build/index.js:7257 +#: build/index.js:6220 msgid "Live" msgstr "" -#: includes/ECommerce.php:139 +#: includes/ECommerce.php:163 msgid "Site Status: " msgstr "" -#: includes/ECommerce.php:141 +#: includes/ECommerce.php:165 msgid "Launch Your Site" msgstr "" @@ -43,342 +43,846 @@ msgstr "" msgid "NFD eCommerce RazorPay Options" msgstr "" -#: build/index.js:2814 -#: build/index.js:2113 +#: build/index.js:5759 +#: build/index.js:4578 +msgid "Payments" +msgstr "" + +#: build/index.js:5797 +#: build/index.js:4622 +msgid "yes" +msgstr "" + +#: build/index.js:5798 +#: build/index.js:4623 +msgid "Credit Card/Debit Card/NetBanking" +msgstr "" + +#: build/index.js:5799 +#: build/index.js:4627 +msgid "Pay securely by Credit or Debit card or Internet Banking through Razorpay." +msgstr "" + +#: build/index.js:5800 +#: build/index.js:4631 +msgid "capture" +msgstr "" + +#: build/index.js:5801 +#: build/index.js:4632 +msgid "Thank you for shopping with us. Your account has been charged and your transaction is successful. We will be processing your order soon." +msgstr "" + +#: build/index.js:5809 +#: build/index.js:4643 +msgid "Successfully saved the Payment Details" +msgstr "" + +#: build/index.js:5843 +#: build/index.js:7539 +#: build/index.js:4688 +#: build/index.js:6495 +msgid "Discard Changes" +msgstr "" + +#: build/index.js:5847 +#: build/index.js:7543 +#: build/index.js:4691 +#: build/index.js:6498 +msgid "Save Changes" +msgstr "" + +#: build/index.js:5883 +#: build/index.js:4712 +msgid "Key ID *" +msgstr "" + +#: build/index.js:5884 +#: build/index.js:4713 +msgid "Test Key ID *" +msgstr "" + +#: build/index.js:5885 +#: build/index.js:4714 +msgid "Key Secret *" +msgstr "" + +#: build/index.js:5886 +#: build/index.js:4715 +msgid "Test Key Secret *" +msgstr "" + +#: build/index.js:5887 +#: build/index.js:4717 +msgid "The key ID can be found in the \"%1$sAPI Keys%2$s\" section of your Razorpay dashboard." +msgstr "" + +#: build/index.js:5888 +#: build/index.js:4724 +msgid "That is not a valid test key ID. Please check your key ID and enter it again." +msgstr "" + +#: build/index.js:5889 +#: build/index.js:4728 +msgid "That is not a valid production key ID. Please check your key ID and enter it again." +msgstr "" + +#: build/index.js:5890 +#: build/index.js:4733 +msgid "The key secret can be found in the \"%1$sAPI Keys%2$s\" section of your Razorpay dashboard." +msgstr "" + +#: build/index.js:5928 +#: build/index.js:4784 +msgid "Create an Account" +msgstr "" + +#: build/index.js:5930 +#: build/index.js:4789 +msgid "Already have an account? " +msgstr "" + +#: build/index.js:5933 +#: build/index.js:4794 +msgid "Login" +msgstr "" + +#: build/index.js:5935 +#: build/index.js:4798 +msgid "After you login to Razorpay, you will need to generate your key ID and key secret codes, you will then need to switch back to this tab in your browser and paste your codes into the fields below." +msgstr "" + +#: build/index.js:5940 +#: build/index.js:4809 +msgid "Enable Test Mode" +msgstr "" + +#: build/index.js:6085 +#: build/index.js:4924 msgid "Learn More" msgstr "" -#: build/index.js:2816 -#: build/index.js:2120 +#: build/index.js:6087 +#: build/index.js:4932 msgid "please wait while other features are installed..." msgstr "" -#: build/index.js:2831 -#: build/index.js:2155 +#: build/index.js:6102 +#: build/index.js:4965 +msgid "Purchase" +msgstr "" + +#: build/index.js:6108 +#: build/index.js:6498 +#: build/index.js:6929 +#: build/index.js:7188 +#: build/index.js:4984 +#: build/index.js:5345 +#: build/index.js:5848 +#: build/index.js:6143 msgid "Installing..." msgstr "" -#: build/index.js:2831 -#: build/index.js:2157 -msgid "Purchase" +#: build/index.js:6143 +#: build/index.js:5004 +msgid "Improve your store with these free add-ons included in your plan." +msgstr "" + +#: build/index.js:6143 +#: build/index.js:5008 +msgid "Improve your site with these free add-ons included in your plan." msgstr "" -#: build/index.js:2864 -#: build/index.js:3539 -#: build/index.js:2178 -#: build/index.js:2716 +#: build/index.js:6154 +#: build/index.js:8057 +#: build/index.js:5018 +#: build/index.js:7012 msgid "Additional Features" msgstr "" -#: build/index.js:2865 -#: build/index.js:2179 -msgid "Improve your site with these free add-ons included in your plan." +#: build/index.js:6260 +#: build/index.js:5111 +msgid "Next steps for your store" msgstr "" -#: build/index.js:2909 -#: build/index.js:2206 -msgid "Store" +#: build/index.js:6260 +#: build/index.js:5112 +msgid "Next steps for your site" +msgstr "" + +#: build/index.js:6260 +#: build/index.js:5118 +msgid "Great job! You've completed all the current tasks to get your store up and running successfully!" +msgstr "" + +#: build/index.js:6260 +#: build/index.js:5122 +msgid "Great job! You've completed all the current tasks to get your site up and running successfully!" +msgstr "" + +#: build/index.js:6260 +#: build/index.js:5129 +msgid "If you want to edit any of the info from the steps you've completed, simply click on the \"View completed tasks\" link below." +msgstr "" + +#: build/index.js:6271 +#: build/index.js:5153 +msgid "View remaining tasks" +msgstr "" + +#: build/index.js:6271 +#: build/index.js:5154 +msgid "View completed tasks" +msgstr "" + +#: build/index.js:6312 +#: build/index.js:5174 +msgid "Congrats on your new store!" +msgstr "" + +#: build/index.js:6312 +#: build/index.js:5175 +msgid "Congrats on your new site!" +msgstr "" + +#: build/index.js:6313 +#: build/index.js:5177 +msgid "You're just a few steps away from sharing your store with the world!" +msgstr "" + +#: build/index.js:6313 +#: build/index.js:5181 +msgid "You're just a few steps away from sharing your site with the world!" +msgstr "" + +#: build/index.js:6317 +#: build/index.js:5188 +msgid "Ready to go to the next level?" +msgstr "" + +#: build/index.js:6318 +#: build/index.js:5190 +msgid "Increase your store's performance by helping people find your store and engaging more with them once they have." msgstr "" -#: build/index.js:2968 -#: build/index.js:2237 +#: build/index.js:6318 +#: build/index.js:5194 +msgid "Increase your site's performance by helping people find your site and engaging more with them once they have." +msgstr "" + +#: build/index.js:6405 +#: build/index.js:5264 +msgid "Offline Payments" +msgstr "" + +#: build/index.js:6406 +#: build/index.js:5264 +msgid "Accept payments (money orders, bank transfers or C.O.D.) that are made outside your online store. " +msgstr "" + +#: build/index.js:6411 +#: build/index.js:5268 +msgid "Manual Payment methods" +msgstr "" + +#: build/index.js:6413 +#: build/index.js:5270 +msgid "When a customer selects a manual payment method, you'll need to approve their order before it can be fulfilled." +msgstr "" + +#: build/index.js:6480 +#: build/index.js:5317 +msgid "Paypal" +msgstr "" + +#: build/index.js:6481 +#: build/index.js:5318 +msgid "Online payments built for success. We help you do business in 200+ markets and 100+ currencies—even if your customers don't have PayPal." +msgstr "" + +#: build/index.js:6503 +#: build/index.js:6922 +#: build/index.js:7181 +#: build/index.js:5357 +#: build/index.js:5822 +#: build/index.js:6120 +msgid "Manage" +msgstr "" + +#: build/index.js:6506 +#: build/index.js:7184 +#: build/index.js:5367 +#: build/index.js:6130 +msgid "Connect" +msgstr "" + +#: build/index.js:6508 +#: build/index.js:6937 +#: build/index.js:7190 +#: build/index.js:5373 +#: build/index.js:5879 +#: build/index.js:6155 +msgid "Environment:" +msgstr "" + +#: build/index.js:6518 +#: build/index.js:5393 +msgid "White-Labeling" +msgstr "" + +#: build/index.js:6518 +#: build/index.js:5395 +msgid "Country-specific payment methods" +msgstr "" + +#: build/index.js:6520 +#: build/index.js:5402 +msgid " Uses many popular payment methods" +msgstr "" + +#: build/index.js:6580 +#: build/index.js:5450 msgid "Products & Services" msgstr "" -#: build/index.js:2969 -#: build/index.js:2238 +#: build/index.js:6581 +#: build/index.js:5451 msgid "Come here to manage products and services or add new ones to your store." msgstr "" -#: build/index.js:2977 -#: build/index.js:2247 +#: build/index.js:6589 +#: build/index.js:5466 msgid "Want help adding products?" msgstr "" -#: build/index.js:2979 -#: build/index.js:2250 +#: build/index.js:6591 +#: build/index.js:5469 msgid "" "Read this helpful knowledge base article to understand how to\n" "add different products to your store" msgstr "" -#: build/index.js:2986 -#: build/index.js:2267 +#: build/index.js:6600 +#: build/index.js:5489 msgid " How to add products" msgstr "" -#: build/index.js:3252 -#: build/index.js:2475 +#: build/index.js:6818 +#: build/index.js:5680 +msgid "No orders yet. When you start getting orders, they will show up here." +msgstr "" + +#: build/index.js:6902 +#: build/index.js:5790 +msgid "Razorpay" +msgstr "" + +#: build/index.js:6903 +#: build/index.js:5791 +msgid "Build specifically for companies based in India, manage all your payments and financial operations from a consolidated dashboard" +msgstr "" + +#: build/index.js:6933 +#: build/index.js:5855 +msgid "Complete control over the receiving and managing payments" +msgstr "" + +#: build/index.js:6935 +#: build/index.js:5862 +msgid "Immediate capture of funds" +msgstr "" + +#: build/index.js:6935 +#: build/index.js:5865 +msgid "Instant refunds and settlements" +msgstr "" + +#: build/index.js:6935 +#: build/index.js:5871 +msgid "Fight fraud with Thirdwatch" +msgstr "" + +#: build/index.js:6935 +#: build/index.js:5873 +msgid "Intuitive reporting" +msgstr "" + +#: build/index.js:6991 +#: build/index.js:5928 +msgid " vs prior period" +msgstr "" + +#: build/index.js:7162 +#: build/index.js:6089 +msgid "Shipping Options" +msgstr "" + +#: build/index.js:7163 +#: build/index.js:6090 +msgid "Setup a shipping account for delivering products to your customers" +msgstr "" + +#: build/index.js:7188 +#: build/index.js:6148 +msgid "The best multi-carrier shipping software for e-commerce businesses." +msgstr "" + +#: build/index.js:7230 +#: build/index.js:6187 +msgid "Coming Soon activated" +msgstr "" + +#: build/index.js:7230 +#: build/index.js:6189 msgid "Your store is online and ready for business!" msgstr "" -#: build/index.js:3254 -#: build/index.js:2481 -msgid "Not ready? You can re-enable the \"Coming Soon\" mode if you need." +#: build/index.js:7230 +#: build/index.js:6190 +msgid "Your site is online now!" msgstr "" -#: build/index.js:3259 -#: build/index.js:2492 -msgid "Okay" +#: build/index.js:7231 +#: build/index.js:6195 +msgid "You can re-enable the 'Coming Soon' mode in “Settings”." msgstr "" -#: build/index.js:3273 -#: build/index.js:2506 +#: build/index.js:7271 +#: build/index.js:6237 msgid "Ready to go live?" msgstr "" -#: build/index.js:3275 -#: build/index.js:2509 +#: build/index.js:7273 +#: build/index.js:6241 msgid "" "Preview your store before setting it live to make sure everything is how you want it.\n" "Once you're ready, set your store live!" msgstr "" -#: build/index.js:3283 -#: build/index.js:2523 +#: build/index.js:7273 +#: build/index.js:6245 +msgid "" +"Preview your Site before setting it live to make sure everything is how you want it.\n" +"Once you're ready, set your site live!" +msgstr "" + +#: build/index.js:7281 +#: build/index.js:6267 msgid "Preview your store" msgstr "" -#: build/index.js:3288 -#: build/index.js:2532 +#: build/index.js:7281 +#: build/index.js:6268 +msgid "Preview your site" +msgstr "" + +#: build/index.js:7286 +#: build/index.js:6278 msgid "Launch your store" msgstr "" -#: build/index.js:3437 -#: build/index.js:2642 +#: build/index.js:7286 +#: build/index.js:6279 +msgid "Launch your site" +msgstr "" + +#: build/index.js:7318 +#: build/index.js:6296 +msgid "Store" +msgstr "" + +#: build/index.js:7457 +#: build/index.js:6409 msgid "Store Details" msgstr "" -#: build/index.js:3438 -#: build/index.js:2643 +#: build/index.js:7458 +#: build/index.js:6410 msgid "This is the place for all your general store details and setup." msgstr "" -#: build/index.js:3490 -#: build/index.js:2676 +#: build/index.js:7611 +#: build/index.js:6548 +msgid "Store Info" +msgstr "" + +#: build/index.js:7612 +#: build/index.js:6549 +msgid "We'll use this information to help you setup your online store" +msgstr "" + +#: build/index.js:7754 +#: build/index.js:6737 +msgid "Yes, enable sales tax." +msgstr "" + +#: build/index.js:7757 +#: build/index.js:6741 +msgid "No, don't enable sales tax." +msgstr "" + +#: build/index.js:7766 +#: build/index.js:6751 +msgid "Tax Settings" +msgstr "" + +#: build/index.js:7767 +#: build/index.js:6752 +msgid "Decide whether you want to collect sales tax on items you sell. You can change this setting at anytime" +msgstr "" + +#: build/index.js:7768 +#: build/index.js:6758 +msgid "Would you like to enable sales tax?" +msgstr "" + +#: build/index.js:7930 +#: build/index.js:6899 +msgid "Sales & Discounts" +msgstr "" + +#: build/index.js:7940 +#: build/index.js:6911 +msgid "Add Upsells, Cross-sells, and other Promotions to your store" +msgstr "" + +#: build/index.js:7942 +#: build/index.js:9355 +#: build/index.js:6917 +#: build/index.js:8403 +msgid "Create and manage deals, sales promotions and upsell campaigns like Buy-One-Get-One and more." +msgstr "" + +#: build/index.js:7949 +#: build/index.js:6930 +msgid "Install now" +msgstr "" + +#: build/index.js:8001 +#: build/index.js:6968 msgid "Add a store to your site" msgstr "" -#: build/index.js:3492 -#: build/index.js:2679 +#: build/index.js:8003 +#: build/index.js:6971 msgid "" "Adding a store to your website is quick and easy!\n" "Just install WooCommerce and get ready to start making money!" msgstr "" -#: build/index.js:3499 -#: build/index.js:2692 +#: build/index.js:8010 +#: build/index.js:6984 msgid "Install WooCommerce" msgstr "" -#: build/index.js:3540 -#: build/index.js:2717 +#: build/index.js:8058 +#: build/index.js:7013 msgid "Improve your store with these powerful add-ons." msgstr "" -#: build/index.js:3727 -#: build/index.js:3812 -#: build/index.js:4060 -#: build/index.js:4535 -#: build/index.js:2843 -#: build/index.js:2888 -#: build/index.js:3132 -#: build/index.js:3544 +#: build/index.js:8246 +#: build/index.js:8303 +#: build/index.js:9412 +#: build/index.js:7166 +#: build/index.js:7204 +#: build/index.js:8454 msgid "Please try again, or " msgstr "" -#: build/index.js:3730 -#: build/index.js:3815 -#: build/index.js:4063 -#: build/index.js:4538 -#: build/index.js:2845 -#: build/index.js:2890 -#: build/index.js:3134 -#: build/index.js:3546 +#: build/index.js:8249 +#: build/index.js:8306 +#: build/index.js:9415 +#: build/index.js:7168 +#: build/index.js:7206 +#: build/index.js:8456 msgid "contact support" msgstr "" -#: build/index.js:3854 -#: build/index.js:2928 +#: build/index.js:8377 +#: build/index.js:7268 msgid "Jetpack Boost - Website Speed, Performance and Critical CSS" msgstr "" -#: build/index.js:3855 -#: build/index.js:2932 +#: build/index.js:8378 +#: build/index.js:7272 msgid "Speed up your WordPress site by optimizing page performance with Jetpack Boost." msgstr "" -#: build/index.js:3881 -#: build/index.js:2958 +#: build/index.js:8399 +#: build/index.js:7297 msgid "Contact Form by WPForms - Drag & Drop Form Builder for WordPress" msgstr "" -#: build/index.js:3882 -#: build/index.js:2962 +#: build/index.js:8400 +#: build/index.js:7301 msgid "The best WordPress contact form plugin. Drag & Drop online form builder to create beautiful contact forms, payment forms, & other custom forms." msgstr "" -#: build/index.js:3908 -#: build/index.js:2988 +#: build/index.js:8421 +#: build/index.js:7326 msgid "MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)" msgstr "" -#: build/index.js:3909 -#: build/index.js:2992 +#: build/index.js:8422 +#: build/index.js:7330 msgid "The best free Google Analytics plugin for WordPress. See how visitors find and use your website, so you can grow your business." msgstr "" -#: build/index.js:3935 -#: build/index.js:3022 +#: build/index.js:8443 +#: build/index.js:7359 msgid "Yoast SEO" msgstr "" -#: build/index.js:3936 -#: build/index.js:3023 +#: build/index.js:8444 +#: build/index.js:7360 msgid "Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using the Yoast SEO plugin." msgstr "" -#: build/index.js:3962 -#: build/index.js:3049 +#: build/index.js:8465 +#: build/index.js:7385 msgid "Creative Mail - Easier WordPress & WooCommerce Email Marketing" msgstr "" -#: build/index.js:3963 -#: build/index.js:3053 +#: build/index.js:8466 +#: build/index.js:7389 msgid "Creative Mail was designed specifically for WordPress and WooCommerce. Our intelligent (and super fun) email editor simplifies email marketing campaign." msgstr "" -#: build/index.js:3990 -#: build/index.js:3083 +#: build/index.js:8487 +#: build/index.js:7418 msgid "OptinMonster - Lead Generation" msgstr "" -#: build/index.js:3991 -#: build/index.js:3084 +#: build/index.js:8488 +#: build/index.js:7419 msgid "OptinMonster is the best WordPress popup builder plugin that helps you grow your email newsletter list and sales with email popups, exit intent popups, floating bars and more!" msgstr "" -#: build/index.js:4099 -#: build/index.js:3173 +#: build/index.js:8554 +#: build/index.js:7472 +msgid "Add your store info" +msgstr "" + +#: build/index.js:8571 +#: build/index.js:7487 +msgid "Connect a payment processor" +msgstr "" + +#: build/index.js:8588 +#: build/index.js:7507 +msgid "Setup shipping options" +msgstr "" + +#: build/index.js:8605 +#: build/index.js:7527 +msgid "Configure tax settings" +msgstr "" + +#: build/index.js:8622 +#: build/index.js:8763 +#: build/index.js:7542 +#: build/index.js:7685 +msgid "Add a product" +msgstr "" + +#: build/index.js:8638 +#: build/index.js:7559 +msgid "Add a new page to your store" +msgstr "" + +#: build/index.js:8638 +#: build/index.js:7560 +msgid "Add a new page to your site" +msgstr "" + +#: build/index.js:8655 +#: build/index.js:7580 +msgid "Connect to your social media accounts" +msgstr "" + +#: build/index.js:8676 +#: build/index.js:7604 +msgid "Enable Jetpack to connect to your social media accounts" +msgstr "" + +#: build/index.js:8762 +#: build/index.js:7684 msgid "Add a Product" msgstr "" -#: build/index.js:4129 -#: build/index.js:3201 +#: build/index.js:8786 +#: build/index.js:7713 msgid "Manage Your Products" msgstr "" -#: build/index.js:4164 -#: build/index.js:3230 +#: build/index.js:8787 +#: build/index.js:7714 +msgid "Manage products" +msgstr "" + +#: build/index.js:8814 +#: build/index.js:7748 msgid "Import Products via CSV" msgstr "" -#: build/index.js:4191 -#: build/index.js:3258 +#: build/index.js:8815 +#: build/index.js:7749 +msgid "Import products" +msgstr "" + +#: build/index.js:8841 +#: build/index.js:7783 msgid "Bookings" msgstr "" -#: build/index.js:4250 -#: build/index.js:3312 +#: build/index.js:8842 +#: build/index.js:8879 +#: build/index.js:7785 +#: build/index.js:7839 +msgid "Enable" +msgstr "" + +#: build/index.js:8842 +#: build/index.js:7787 +msgid "Manage bookings" +msgstr "" + +#: build/index.js:8842 +#: build/index.js:7788 +msgid "Create a booking" +msgstr "" + +#: build/index.js:8878 +#: build/index.js:7837 msgid "Gift Cards" msgstr "" -#: build/index.js:4356 -#: build/index.js:3400 +#: build/index.js:8879 +#: build/index.js:7841 +msgid "Manage gift cards" +msgstr "" + +#: build/index.js:8879 +#: build/index.js:7842 +msgid "Create a gift card" +msgstr "" + +#: build/index.js:8991 +#: build/index.js:7942 msgid "Total Sales" msgstr "" -#: build/index.js:4373 -#: build/index.js:3418 +#: build/index.js:9008 +#: build/index.js:7963 msgid "Net Sales" msgstr "" -#: build/index.js:4390 -#: build/index.js:3436 +#: build/index.js:9025 +#: build/index.js:7984 msgid "Orders" msgstr "" -#: build/index.js:4407 -#: build/index.js:3456 +#: build/index.js:9043 +#: build/index.js:8007 msgid "Products Sold" msgstr "" -#: build/index.js:4424 -#: build/index.js:3476 +#: build/index.js:9061 +#: build/index.js:8030 msgid "Visitors" msgstr "" -#: build/index.js:4438 -#: build/index.js:3495 +#: build/index.js:9079 +#: build/index.js:8057 msgid "Views" msgstr "" -#: build/index.js:4578 -#: build/index.js:3584 +#: build/index.js:9168 +#: build/index.js:8130 msgid "YITH Booking and Appointment for WooCommerce" msgstr "" -#: build/index.js:4579 -#: build/index.js:3588 +#: build/index.js:9169 +#: build/index.js:8134 msgid "Enable a booking/appointment system to manage renting or booking of services, rooms, houses, cars, accommodation and more to make it easy for your customers to do business with you." msgstr "" -#: build/index.js:4605 -#: build/index.js:3618 +#: build/index.js:9193 +#: build/index.js:8169 msgid "YITH WooCommerce AJAX Search" msgstr "" -#: build/index.js:4606 -#: build/index.js:3619 +#: build/index.js:9194 +#: build/index.js:8170 msgid "YITH WooCommerce AJAX Search is an effective and predictive real-time search engine on your store so users can quickly find products they want. Speed up your search and boost your sales." msgstr "" -#: build/index.js:4633 -#: build/index.js:3650 +#: build/index.js:9220 +#: build/index.js:8206 msgid "YITH WooCommerce Wishlist" msgstr "" -#: build/index.js:4634 -#: build/index.js:3651 +#: build/index.js:9221 +#: build/index.js:8207 msgid "Allow your customers to create lists of products they want and share them with family and friends." msgstr "" -#: build/index.js:4661 -#: build/index.js:3682 +#: build/index.js:9247 +#: build/index.js:8243 msgid "YITH WooCommerce AJAX Product Filter" msgstr "" -#: build/index.js:4662 -#: build/index.js:3686 +#: build/index.js:9248 +#: build/index.js:8247 msgid "YITH WooCommerce Ajax Product Filter is the perfect way to add an advanced filter to all products in your store by size, color, price, and more to find the right product or gift with ease." msgstr "" -#: build/index.js:4689 -#: build/index.js:3719 +#: build/index.js:9274 +#: build/index.js:8285 msgid "YITH WooCommerce Gift Cards" msgstr "" -#: build/index.js:4690 -#: build/index.js:3720 +#: build/index.js:9275 +#: build/index.js:8286 msgid "Sell gift cards to increase your store's revenue and win new customers." msgstr "" -#: build/index.js:4717 -#: build/index.js:3753 +#: build/index.js:9301 +#: build/index.js:8324 msgid "YITH WooCommerce Customize My Account Page" msgstr "" -#: build/index.js:4718 -#: build/index.js:3757 +#: build/index.js:9302 +#: build/index.js:8328 msgid "Customize the My Account page of your customers by creating custom sections with promotions and ad-hoc content based on your needs." msgstr "" -#: build/index.js:4746 -#: build/index.js:3789 +#: build/index.js:9327 +#: build/index.js:8364 msgid "Ecomdash" msgstr "" -#: build/index.js:4747 -#: build/index.js:3790 +#: build/index.js:9328 +#: build/index.js:8365 msgid "All your sales channels and products, managed in one place. See how this dashboard puts selling, updating, and inventory all at your fingertips. Perfect for selling on Amazon, Etsy, eBay and more." msgstr "" + +#: build/index.js:9354 +#: build/index.js:8399 +msgid "Complete Upsell, Cross sell & Promotions Solution" +msgstr "" + +#: build/index.js:9411 +#: build/index.js:8451 +msgid "Plugin failed to install" +msgstr "" + +#: build/index.js:9421 +#: build/index.js:8465 +msgid "Plugin installation is in progress" +msgstr "" + +#: build/index.js:9422 +#: build/index.js:8466 +msgid "We'll be done in sometime" +msgstr ""