From 4b3b55cc5de766354a2bc4b0e819904bb1ccf883 Mon Sep 17 00:00:00 2001 From: Manos Psychogyiopoulos Date: Tue, 8 Aug 2023 13:18:18 +0300 Subject: [PATCH 01/81] Revert the "Blog Home" template name change in the Site Editor to "Home" --- class-wc-calypso-bridge.php | 3 +- includes/class-wc-calypso-bridge-fse.php | 63 ++++++++++++++++++++++++ readme.txt | 1 + 3 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 includes/class-wc-calypso-bridge-fse.php diff --git a/class-wc-calypso-bridge.php b/class-wc-calypso-bridge.php index 0a42e1cf..f551121b 100644 --- a/class-wc-calypso-bridge.php +++ b/class-wc-calypso-bridge.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version 2.2.2 + * @version x.x.x */ defined( 'ABSPATH' ) || exit; @@ -107,6 +107,7 @@ public function includes() { */ require_once WC_CALYPSO_BRIDGE_PLUGIN_PATH . '/includes/class-wc-calypso-bridge-helper-functions.php'; require_once WC_CALYPSO_BRIDGE_PLUGIN_PATH . '/class-wc-calypso-bridge-shared.php'; + require_once WC_CALYPSO_BRIDGE_PLUGIN_PATH . '/includes/class-wc-calypso-bridge-fse.php'; require_once WC_CALYPSO_BRIDGE_PLUGIN_PATH . '/includes/class-wc-calypso-bridge-setup.php'; require_once WC_CALYPSO_BRIDGE_PLUGIN_PATH . '/includes/class-wc-calypso-bridge-jetpack.php'; require_once WC_CALYPSO_BRIDGE_PLUGIN_PATH . '/includes/class-wc-calypso-bridge-setup-tasks.php'; diff --git a/includes/class-wc-calypso-bridge-fse.php b/includes/class-wc-calypso-bridge-fse.php new file mode 100644 index 00000000..81265f51 --- /dev/null +++ b/includes/class-wc-calypso-bridge-fse.php @@ -0,0 +1,63 @@ + Date: Tue, 8 Aug 2023 13:23:11 +0300 Subject: [PATCH 02/81] Add PR # to change log --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index a3b41e24..3d72afc5 100644 --- a/readme.txt +++ b/readme.txt @@ -24,7 +24,7 @@ This section describes how to install the plugin and get it working. = Unreleased = * Fix Tax task for free trial #1247 -* Change "Blog Home" template name to "Home" +* Change "Blog Home" template name to "Home" #1263 = 2.2.7 = * Add `wp-cli` as a developer dependency #1250 From 8b52ce6c70e3d192375c02d52aff6b2611ae3cc3 Mon Sep 17 00:00:00 2001 From: Damien Alleyne <31164683+d-alleyne@users.noreply.github.com> Date: Tue, 8 Aug 2023 15:36:51 -0400 Subject: [PATCH 03/81] Update functions to use correct text domain The AddDomain class assumed that some of the new strings exist in the woocommerce codebase, and were already translated. This is incorrect. Therefore, the strings will use wc-calypso-bridge domain and the strings will be sent for translation --- ...-wc-calypso-bridge-free-trial-payment-restrictions.php | 2 +- ...class-wc-calypso-bridge-woocommerce-admin-features.php | 2 +- includes/tasks/class-wc-calypso-task-add-domain.php | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php b/includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php index 9af54bba..0783ced6 100644 --- a/includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php +++ b/includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php @@ -294,7 +294,7 @@ public function frontend() { ?> diff --git a/readme.txt b/readme.txt index e6159e5c..4a9d4269 100644 --- a/readme.txt +++ b/readme.txt @@ -24,6 +24,7 @@ This section describes how to install the plugin and get it working. = Unreleased = * Handling footer credits for Woo Express plans #1265 +* Convert plugins page to a WC page #1278 = 2.2.10 = * Update translation files on every release diff --git a/src/index.js b/src/index.js index 028e0e1b..2d7d3217 100644 --- a/src/index.js +++ b/src/index.js @@ -5,6 +5,7 @@ import { addFilter, addAction } from '@wordpress/hooks'; import { WooOnboardingTask } from '@woocommerce/onboarding'; import { registerPlugin, unregisterPlugin } from '@wordpress/plugins'; import { render, lazy } from '@wordpress/element'; +import { __ } from '@wordpress/i18n'; /** * Internal dependencies @@ -46,6 +47,10 @@ const PaymentGatewaySuggestions = lazy( () => ) ); +const Plugins = lazy( () => + import( /* webpackChunkName: "plugins" */ './plugins' ) +); + wcNavFilterRootUrl(); if ( !! window.wcCalypsoBridge.isEcommercePlanTrial ) { @@ -93,7 +98,7 @@ if ( !! window.wcCalypsoBridge.isEcommercePlanTrial ) { 'wc-admin-onboarding-task-payments', 'woocommerce-admin-task-wcpay', // WCPay task item which handles direct click on the task. (Not needed in free trial) 'woocommerce-admin-task-wcpay-page', // WCPay task page which handles URL navigation to the task. - 'wc-admin-onboarding-task-tax', + 'wc-admin-onboarding-task-tax' ); // Add slot fill for payments task. @@ -177,6 +182,16 @@ if ( !! window.wcCalypsoBridge.isEcommercePlan ) { } return page; } ); + + pages.push( { + container: Plugins, + path: '/plugins-upgrade', + breadcrumbs: [ __( 'Plugins' ), __( 'Plugins' ) ], + navArgs: { + id: 'plugins-upgrade', + }, + capability: 'manage_woocommerce', + } ); } return pages; diff --git a/src/plugins/index.tsx b/src/plugins/index.tsx new file mode 100644 index 00000000..69cf7623 --- /dev/null +++ b/src/plugins/index.tsx @@ -0,0 +1,234 @@ +/** + * External dependencies + */ +import { recordEvent } from '@woocommerce/tracks'; +import { __ } from '@wordpress/i18n'; +import { useEffect } from 'react'; + +const PluginsPage = () => { + useEffect( () => { + document.body.classList.add( + 'woocommerce_page_wc-bridge-landing-page', + 'woocommerce_page_wc-plugins-landing-page' + ); + + return () => { + document.body.classList.remove( + 'woocommerce_page_wc-bridge-landing-page', + 'woocommerce_page_wc-plugins-landing-page' + ); + }; + }, [] ); + + return ( +
+

+ { __( + 'Make anything happen, with plugins', + 'wc-calypso-bridge' + ) } +

+ +

+ { __( + 'Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?', + 'wc-calypso-bridge' + ) } +

+ +
+ { + recordEvent( 'free_trial_upgrade_now', { + source: 'plugins', + } ); + } } + > + { __( 'Upgrade now', 'wc-calypso-bridge' ) } + + { + recordEvent( 'free_trial_browse_plugins', { + source: 'plugins', + } ); + } } + > + { __( 'Browse plugins', 'wc-calypso-bridge' ) } + +
+ +
+ { +
+
+ { +
+ +
+
+
+ + + + +
+

+ { __( 'Transform WordPress', 'wc-calypso-bridge' ) } +

+

+ { __( + 'Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins.', + 'wc-calypso-bridge' + ) } +

+ { + recordEvent( 'free_trial_browse_plugins', { + source: 'plugins', + } ); + } } + > + { __( 'Browse plugins', 'wc-calypso-bridge' ) } + +
+ +
+
+ + + + +
+

{ __( 'Extend your store', 'wc-calypso-bridge' ) }

+

+ { __( + 'Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team.', + 'wc-calypso-bridge' + ) } +

+ { + recordEvent( 'free_trial_discover_extensions', { + source: 'plugins', + } ); + } } + > + { __( 'Discover Extensions', 'wc-calypso-bridge' ) } + +
+ +
+
+ + + + +
+

{ __( 'Do it your way', 'wc-calypso-bridge' ) }

+

+ { __( + 'Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right.', + 'wc-calypso-bridge' + ) } +

+ { + recordEvent( 'free_trial_get_inspired', { + source: 'plugins', + } ); + } } + > + { __( 'Get inspired', 'wc-calypso-bridge' ) } + +
+
+
+ ); +}; +export default PluginsPage; From e16f4ab028babdb5939ae96979ad54dfef0cd427 Mon Sep 17 00:00:00 2001 From: Ilyas Foo Date: Thu, 24 Aug 2023 19:20:11 +0800 Subject: [PATCH 21/81] Fix plugins mobile screen UI (#1281) * Fix css * Update changelog --- assets/css/ecommerce.css | 4 ++++ readme.txt | 1 + 2 files changed, 5 insertions(+) diff --git a/assets/css/ecommerce.css b/assets/css/ecommerce.css index 6e2137ff..73cd174f 100644 --- a/assets/css/ecommerce.css +++ b/assets/css/ecommerce.css @@ -155,6 +155,10 @@ body.woocommerce_page_wc-bridge .wc-bridge-wrap .storefront { .wc-bridge-landing-page__features-grid__item { padding: 0 10px; } + + .woocommerce.wc-bridge-landing-page h1.wc-bridge-landing-page__title { + padding: 0 2em; + } } @media screen and (max-width: 600px) { diff --git a/readme.txt b/readme.txt index 4a9d4269..d5184b3a 100644 --- a/readme.txt +++ b/readme.txt @@ -25,6 +25,7 @@ This section describes how to install the plugin and get it working. = Unreleased = * Handling footer credits for Woo Express plans #1265 * Convert plugins page to a WC page #1278 +* Fix plugins mobile screen UI #1281 = 2.2.10 = * Update translation files on every release From a8b9dec8dd3f61ec2c60191936d98072e6083768 Mon Sep 17 00:00:00 2001 From: Ilyas Foo Date: Thu, 24 Aug 2023 19:22:19 +0800 Subject: [PATCH 22/81] Prepare for release 2.2.11 (#1280) * Bump version to 2.2.11 * Added version 2.2.11 to the changelog * Add new translation files * Update changelog --- composer.json | 2 +- languages/wc-calypso-bridge.pot | 686 ++++++++++++++++++++++++++------ readme.txt | 2 +- wc-calypso-bridge.php | 4 +- 4 files changed, 571 insertions(+), 123 deletions(-) diff --git a/composer.json b/composer.json index a5a23398..1ca1ad2c 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "automattic/wc-calypso-bridge", - "version": "v2.2.10", + "version": "v2.2.11", "autoload": { "files": [ "wc-calypso-bridge.php" diff --git a/languages/wc-calypso-bridge.pot b/languages/wc-calypso-bridge.pot index d38bc908..85aef5bf 100644 --- a/languages/wc-calypso-bridge.pot +++ b/languages/wc-calypso-bridge.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the WooCommerce Calypso Bridge plugin. msgid "" msgstr "" -"Project-Id-Version: WooCommerce Calypso Bridge 2.2.10\n" +"Project-Id-Version: WooCommerce Calypso Bridge 2.2.11\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-calypso-bridge\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: 2023-08-22T13:43:59+00:00\n" +"POT-Creation-Date: 2023-08-24T10:50:30+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.8.1\n" @@ -85,7 +85,9 @@ msgid "WooCommerce Subscriptions" msgstr "" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:90 #: src/payment-gateway-suggestions/components/Action.js:76 +#: build/payment-gateway-suggestions.js:76 msgid "Manage" msgstr "" @@ -109,6 +111,11 @@ msgstr "" msgid "Stats" msgstr "" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:52 +msgid "Powered by %1$s" +msgstr "" + #: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:271 #: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:298 #: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:340 @@ -221,7 +228,11 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: includes/templates/html-admin-page-plugins-landing-page.php:24 +#: build/index.js:4133 +#: build/index.js:7717 +#: build/marketing.js:1147 +#: build/plugins.js:50 +#: build/plugins.js:53 msgid "Upgrade now" msgstr "" @@ -232,7 +243,10 @@ msgid "" "\t\t" msgstr "" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:64 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:6239 +#: src/index.js:189 msgid "Plugins" msgstr "" @@ -246,6 +260,8 @@ msgstr "" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 +#: build/index.js:2978 +#: build/index.js:5768 #: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "" @@ -264,6 +280,9 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 #: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: build/index.js:6866 +#: build/index.js:7864 +#: build/index.js:7868 #: src/launch-store/index.js:322 #: src/task-headers/add-domain.js:31 #: src/task-headers/add-domain.js:44 @@ -280,6 +299,7 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 #: includes/tasks/class-wc-calypso-task-appearance.php:50 +#: build/index.js:8038 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "" @@ -327,6 +347,8 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 #: includes/tasks/class-wc-calypso-task-launch-site.php:68 +#: build/index.js:4137 +#: build/index.js:6759 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "" @@ -342,8 +364,10 @@ msgstr "" #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: includes/templates/html-admin-page-plugins-landing-page.php:32 -#: includes/templates/html-admin-page-plugins-landing-page.php:35 +#: build/plugins.js:65 +#: build/plugins.js:70 +#: build/plugins.js:77 +#: build/plugins.js:89 msgid "Take your store to the next level, with extensions" msgstr "" @@ -381,7 +405,8 @@ msgstr "" #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: includes/templates/html-admin-page-plugins-landing-page.php:79 +#: build/plugins.js:160 +#: build/plugins.js:227 msgid "Get inspired" msgstr "" @@ -389,47 +414,6 @@ msgstr "" msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "" -#: includes/templates/html-admin-page-plugins-landing-page.php:15 -msgid "Make anything happen, with plugins" -msgstr "" - -#: includes/templates/html-admin-page-plugins-landing-page.php:19 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "" - -#: includes/templates/html-admin-page-plugins-landing-page.php:27 -#: includes/templates/html-admin-page-plugins-landing-page.php:51 -msgid "Browse plugins" -msgstr "" - -#: includes/templates/html-admin-page-plugins-landing-page.php:47 -msgid "Transform WordPress" -msgstr "" - -#: includes/templates/html-admin-page-plugins-landing-page.php:49 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "" - -#: includes/templates/html-admin-page-plugins-landing-page.php:61 -msgid "Extend your store" -msgstr "" - -#: includes/templates/html-admin-page-plugins-landing-page.php:63 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "" - -#: includes/templates/html-admin-page-plugins-landing-page.php:65 -msgid "Discover Extensions" -msgstr "" - -#: includes/templates/html-admin-page-plugins-landing-page.php:75 -msgid "Do it your way" -msgstr "" - -#: includes/templates/html-admin-page-plugins-landing-page.php:77 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "" - #: store-on-wpcom/api/class-wc-calypso-bridge-data-counts-controller.php:60 #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:63 msgid "Sorry, you cannot list resources." @@ -580,255 +564,759 @@ msgstr "" msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 -msgid "Payment illustration" +#: build/index.js:1783 +#: build/payment-gateway-suggestions.js:231 +#: src/payment-gateway-suggestions/components/List/Item.js:80 +#: build/payment-gateway-suggestions.js:225 +msgid "Local Partner" msgstr "" -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 -msgid "It’s time to test payments" +#: build/index.js:1784 +#: build/payment-gateway-suggestions.js:231 +#: src/payment-gateway-suggestions/components/List/Item.js:81 +#: build/payment-gateway-suggestions.js:226 +msgid "Recommended" msgstr "" -#: src/free-trial/fills/task-headers/payments.js:40 -msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." +#: build/index.js:1837 +msgid "Setup required" msgstr "" -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 -msgid "Test payments" +#: build/index.js:1890 +msgid "Accepted payment methods" msgstr "" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 -msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." +#: build/index.js:2454 +msgid "& more." msgstr "" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 -msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" +#: build/index.js:2502 +msgid "Accepted payment methods include:" +msgstr "" + +#: build/index.js:2506 +msgid "Accept Payments and manage your business." +msgstr "" + +#: build/index.js:2508 +#: build/payment-gateway-suggestions.js:1108 +#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 +#: build/payment-gateway-suggestions.js:1043 +msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " +msgstr "" + +#: build/index.js:2721 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "" + +#: build/index.js:2724 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "" + +#: build/index.js:2727 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "" + +#: build/index.js:4113 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." msgstr "" +#: build/index.js:4114 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "" + +#: build/index.js:4135 +msgid "Get more sales" +msgstr "" + +#: build/index.js:4283 #: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "" +#: build/index.js:4314 #: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "" +#: build/index.js:4483 +msgid "Choose a tax partner" +msgstr "" + +#: build/index.js:4494 +msgid "Set up taxes manually" +msgstr "" + +#: build/index.js:4501 +msgid "I don't charge sales tax" +msgstr "" + +#: build/index.js:4570 +msgid "Please select a country / region" +msgstr "" + +#: build/index.js:4781 +msgid "Country / Region" +msgstr "" + +#: build/index.js:4795 +msgid "Address" +msgstr "" + +#: build/index.js:4798 +msgid "Post code" +msgstr "" + +#: build/index.js:4801 +msgid "City" +msgstr "" + +#: build/index.js:4980 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "" + +#: build/index.js:5061 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "" + +#: build/index.js:5064 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "" + +#: build/index.js:5220 +msgid "Configure" +msgstr "" + +#: build/index.js:5221 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "" + +#: build/index.js:5287 +#: build/index.js:5676 +msgid "Set store location" +msgstr "" + +#: build/index.js:5288 +#: build/index.js:5677 +msgid "The address from which your business operates" +msgstr "" + +#: build/index.js:5292 +msgid "Configure tax rates" +msgstr "" + +#: build/index.js:5293 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "" + +#: build/index.js:5421 +msgid "Automate taxes" +msgstr "" + +#: build/index.js:5467 +msgid "WooCommerce Tax" +msgstr "" + +#: build/index.js:5469 +msgid "Best for new stores" +msgstr "" + +#: build/index.js:5470 +msgid "Real-time sales tax calculation" +msgstr "" + +#: build/index.js:5471 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "" + +#: build/index.js:5476 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "" + +#: build/index.js:5486 +msgid "100% free" +msgstr "" + +#: build/index.js:5488 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "" + +#: build/index.js:5497 +msgid "Continue setup" +msgstr "" + +#: build/index.js:5681 +msgid "Automate Taxes" +msgstr "" + +#: build/index.js:5682 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "" + +#: build/index.js:5762 #: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "" +#: build/index.js:5770 #: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "" +#: build/index.js:5891 +msgid "Hide setup list" +msgstr "" + +#: build/index.js:5894 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:5895 +msgid "%1$d out of %2$d complete." +msgstr "" + +#. translators: %s = site title +#: build/index.js:5964 +msgid "Welcome to %s" +msgstr "" + +#: build/index.js:5964 +msgid "Welcome to your Woo Express store" +msgstr "" + +#: build/index.js:5969 +msgid "Only a few more tasks to tick off!" +msgstr "" + +#: build/index.js:5973 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "" + +#: build/index.js:5975 +msgid "Everything is looking great, keep it up!" +msgstr "" + +#: build/index.js:6033 +#: build/index.js:7720 +msgid "Task List Options" +msgstr "" + +#: build/index.js:6038 +#: build/index.js:7727 +msgid "Hide this" +msgstr "" + +#: build/index.js:6699 #: src/launch-store/index.js:71 msgid "Copied" msgstr "" +#: build/index.js:6749 #: src/launch-store/index.js:142 msgid "Launching your store" msgstr "" +#: build/index.js:6776 #: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "" +#: build/index.js:6778 #: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "" +#: build/index.js:6791 #: src/launch-store/index.js:206 msgid "View your store" msgstr "" +#: build/index.js:6795 #: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "" +#: build/index.js:6814 #: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "" +#: build/index.js:6816 #: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "" +#: build/index.js:6822 +#: build/index.js:6910 #: src/launch-store/index.js:262 #: src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "" +#: build/index.js:6853 +#: build/index.js:6855 #: src/launch-store/index.js:300 #: src/launch-store/index.js:305 msgid "Get paid" msgstr "" +#: build/index.js:6854 #: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "" +#: build/index.js:6859 #: src/launch-store/index.js:309 msgid "List your products" msgstr "" +#: build/index.js:6860 #: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "" +#: build/index.js:6861 #: src/launch-store/index.js:314 msgid "List products" msgstr "" +#: build/index.js:6865 #: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "" +#: build/index.js:6901 #: src/launch-store/index.js:379 msgid "Before you launch" msgstr "" +#: build/index.js:6903 #: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "" +#: build/index.js:6906 #: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "" +#: build/index.js:7031 +#: src/payment-gateway-suggestions/components/WCPay/utils.js:15 +msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." +msgstr "" + +#: build/index.js:7708 +msgid "Woohoo! Your trial store has been set up!" +msgstr "" + +#: build/index.js:7714 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "" + +#: build/index.js:7725 +msgid "Show setup task list" +msgstr "" + +#: build/index.js:7729 +#: build/index.js:7739 +msgid "How was your experience?" +msgstr "" + +#: build/index.js:7738 +msgid "We appreciate your feedback!" +msgstr "" + +#: build/index.js:7740 +msgid "The store setup is easy to complete." +msgstr "" + +#: build/index.js:7741 +msgid "The store setup process meets my needs." +msgstr "" + +#: build/index.js:7859 +#: src/task-headers/add-domain.js:22 +msgid "Add a domain illustration" +msgstr "" + +#: build/index.js:7864 +#: src/task-headers/add-domain.js:34 +msgid "Choose a new website address for your store or transfer one you already own." +msgstr "" + +#: build/index.js:7936 +#: src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "" + +#: build/index.js:8024 +#: src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "" + +#: build/index.js:8378 +#: build/payment-gateway-suggestions.js:52 +#: build/payment-gateway-suggestions.js:543 +#: build/payment-gateway-suggestions.js:1178 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 #: src/welcome-modal/index.js:59 +#: build/payment-gateway-suggestions.js:27 +#: build/payment-gateway-suggestions.js:536 +#: build/payment-gateway-suggestions.js:1131 msgid "Get started" msgstr "" -#: src/payment-gateway-suggestions/components/Action.js:99 -msgid "Enable" +#: build/index.js:8381 +#: src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" msgstr "" -#: src/payment-gateway-suggestions/components/Action.js:138 -msgid "Finish setup" +#: build/index.js:8388 +#: src/welcome-modal/index.js:77 +msgid "Meet your new Home" msgstr "" -#: src/payment-gateway-suggestions/components/List/Item.js:80 -msgid "Local Partner" +#: build/index.js:8390 +#: src/welcome-modal/index.js:83 +msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "" -#: src/payment-gateway-suggestions/components/List/Item.js:81 -msgid "Recommended" +#: build/index.js:8393 +#: src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "" + +#: build/index.js:8400 +#: src/welcome-modal/index.js:107 +msgid "Move faster with our new navigation" +msgstr "" + +#: build/index.js:8402 +#: src/welcome-modal/index.js:114 +msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." +msgstr "" + +#: build/marketing.js:1161 +msgid "Get ready to grow your business" +msgstr "" + +#: build/marketing.js:1161 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "" + +#: build/marketing.js:1168 +msgid "Grow your business with hundreds of extensions" +msgstr "" + +#: build/marketing.js:1174 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "" + +#: build/marketing.js:1176 +msgid "Automate your marketing" +msgstr "" + +#: build/marketing.js:1177 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "" + +#: build/marketing.js:1186 +msgid "Try AutomateWoo" +msgstr "" + +#: build/marketing.js:1189 +msgid "Advertise your products on Google" +msgstr "" + +#: build/marketing.js:1190 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "" + +#: build/marketing.js:1194 +msgid "Reach more customers across social media" +msgstr "" + +#: build/marketing.js:1195 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "" + +#: build/marketing.js:1199 +msgid "Increase customer loyalty with gift cards" +msgstr "" + +#: build/marketing.js:1200 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "" + +#: build/marketing.js:1209 +msgid "Create digital gift cards" +msgstr "" + +#: build/payment-gateway-suggestions.js:103 +#: src/payment-gateway-suggestions/components/Action.js:99 +#: build/payment-gateway-suggestions.js:99 +msgid "Enable" +msgstr "" + +#: build/payment-gateway-suggestions.js:132 +#: src/payment-gateway-suggestions/components/Action.js:138 +#: build/payment-gateway-suggestions.js:138 +msgid "Finish setup" msgstr "" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:500 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 +#: build/payment-gateway-suggestions.js:452 msgid "%s configured successfully" msgstr "" +#: build/payment-gateway-suggestions.js:503 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 +#: build/payment-gateway-suggestions.js:461 msgid "There was a problem saving your payment settings" msgstr "" +#: build/payment-gateway-suggestions.js:513 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 +#: build/payment-gateway-suggestions.js:477 msgid "Proceed" msgstr "" +#: build/payment-gateway-suggestions.js:535 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 +#: build/payment-gateway-suggestions.js:510 msgid "Connect" msgstr "" +#: build/payment-gateway-suggestions.js:540 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 +#: build/payment-gateway-suggestions.js:529 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "" #. translators: %s = title of the payment gateway to install +#: build/payment-gateway-suggestions.js:702 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 +#: build/payment-gateway-suggestions.js:665 msgid "Install %s" msgstr "" +#: build/payment-gateway-suggestions.js:719 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 +#: build/payment-gateway-suggestions.js:697 msgid "Configure your %(title)s account" msgstr "" +#: build/payment-gateway-suggestions.js:896 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 +#: build/payment-gateway-suggestions.js:842 msgid "There was a problem updating your preferences" msgstr "" +#: build/payment-gateway-suggestions.js:957 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 +#: build/payment-gateway-suggestions.js:901 msgid "Build a better WooCommerce" msgstr "" +#: build/payment-gateway-suggestions.js:968 +#: build/payment-gateway-suggestions.js:1250 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 +#: build/payment-gateway-suggestions.js:918 +#: build/payment-gateway-suggestions.js:1201 msgid "No thanks" msgstr "" +#: build/payment-gateway-suggestions.js:969 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 +#: build/payment-gateway-suggestions.js:919 msgid "Yes, count me in!" msgstr "" +#: build/payment-gateway-suggestions.js:1101 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 +#: build/payment-gateway-suggestions.js:1033 msgid "Get ready to accept payments" msgstr "" -#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 -msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " -msgstr "" - +#: build/payment-gateway-suggestions.js:1234 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:29 +#: build/payment-gateway-suggestions.js:1175 msgid "Help us build a better WooCommerce Payments experience" msgstr "" +#: build/payment-gateway-suggestions.js:1236 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:34 +#: build/payment-gateway-suggestions.js:1180 msgid "By agreeing to share non-sensitive {{link}}usage data{{/link}}, you’ll help us improve features and optimize the WooCommerce Payments experience. You can opt out at any time." msgstr "" +#: build/payment-gateway-suggestions.js:1249 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:54 +#: build/payment-gateway-suggestions.js:1200 msgid "I agree" msgstr "" -#: src/payment-gateway-suggestions/components/WCPay/utils.js:15 -msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." -msgstr "" - +#: build/payment-gateway-suggestions.js:1449 #: src/payment-gateway-suggestions/index.js:213 +#: build/payment-gateway-suggestions.js:1426 msgid "Choose a payment provider" msgstr "" +#: build/payment-gateway-suggestions.js:1450 #: src/payment-gateway-suggestions/index.js:217 +#: build/payment-gateway-suggestions.js:1430 msgid "To get ready to accept online payments" msgstr "" +#: build/payment-gateway-suggestions.js:1453 #: src/payment-gateway-suggestions/index.js:223 +#: build/payment-gateway-suggestions.js:1436 msgid "Additional payment options" msgstr "" +#: build/payment-gateway-suggestions.js:1454 #: src/payment-gateway-suggestions/index.js:227 +#: build/payment-gateway-suggestions.js:1440 msgid "Give your customers additional choices in ways to pay." msgstr "" +#: build/payment-gateway-suggestions.js:1456 +#: build/payment-gateway-suggestions.js:1505 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 +#: build/payment-gateway-suggestions.js:1445 +#: build/payment-gateway-suggestions.js:1524 msgid "Other payment providers" msgstr "" +#: build/payment-gateway-suggestions.js:1457 #: src/payment-gateway-suggestions/index.js:236 +#: build/payment-gateway-suggestions.js:1449 msgid "Try one of the alternative payment providers." msgstr "" +#: build/payment-gateway-suggestions.js:1471 #: src/payment-gateway-suggestions/index.js:257 +#: build/payment-gateway-suggestions.js:1470 msgid "See more" msgstr "" +#: build/payment-gateway-suggestions.js:1476 #: src/payment-gateway-suggestions/index.js:266 +#: build/payment-gateway-suggestions.js:1479 msgid "Offline payment methods" msgstr "" +#: build/payment-gateway-suggestions.js:1491 #: src/payment-gateway-suggestions/index.js:285 +#: build/payment-gateway-suggestions.js:1498 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "" +#: build/plugins.js:37 +#: build/plugins.js:26 +msgid "Make anything happen, with plugins" +msgstr "" + +#: build/plugins.js:39 +#: build/plugins.js:33 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "" + +#: build/plugins.js:61 +#: build/plugins.js:99 +#: build/plugins.js:67 +#: build/plugins.js:136 +msgid "Browse plugins" +msgstr "" + +#: build/plugins.js:89 +#: build/plugins.js:117 +msgid "Transform WordPress" +msgstr "" + +#: build/plugins.js:89 +#: build/plugins.js:120 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "" + +#: build/plugins.js:121 +#: build/plugins.js:165 +msgid "Extend your store" +msgstr "" + +#: build/plugins.js:121 +#: build/plugins.js:167 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "" + +#: build/plugins.js:131 +#: build/plugins.js:183 +msgid "Discover Extensions" +msgstr "" + +#: build/plugins.js:150 +#: build/plugins.js:209 +msgid "Do it your way" +msgstr "" + +#: build/plugins.js:150 +#: build/plugins.js:211 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "" + +#: build/src_free-trial_fills_index_ts.js:66 +#: build/src_free-trial_fills_index_ts.js:138 +#: src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/src_free-trial_fills_index_ts.js:26 +#: build/src_free-trial_fills_index_ts.js:96 +msgid "Payment illustration" +msgstr "" + +#: build/src_free-trial_fills_index_ts.js:71 +#: build/src_free-trial_fills_index_ts.js:143 +#: src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/src_free-trial_fills_index_ts.js:38 +#: build/src_free-trial_fills_index_ts.js:108 +msgid "It’s time to test payments" +msgstr "" + +#: build/src_free-trial_fills_index_ts.js:71 +#: src/free-trial/fills/task-headers/payments.js:40 +#: build/src_free-trial_fills_index_ts.js:44 +msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." +msgstr "" + +#: build/src_free-trial_fills_index_ts.js:75 +#: build/src_free-trial_fills_index_ts.js:156 +#: src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/src_free-trial_fills_index_ts.js:54 +#: build/src_free-trial_fills_index_ts.js:143 +msgid "Test payments" +msgstr "" + +#: build/src_free-trial_fills_index_ts.js:143 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/src_free-trial_fills_index_ts.js:114 +msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." +msgstr "" + +#: build/src_free-trial_fills_index_ts.js:144 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/src_free-trial_fills_index_ts.js:121 +msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" +msgstr "" + #: src/payment-gateway-suggestions/plugins/Bacs.js:32 msgid "Please enter an account number or IBAN" msgstr "" @@ -872,43 +1360,3 @@ msgstr "" #: src/payment-gateway-suggestions/plugins/Bacs.js:160 msgid "Save" msgstr "" - -#: src/task-headers/add-domain.js:22 -msgid "Add a domain illustration" -msgstr "" - -#: src/task-headers/add-domain.js:34 -msgid "Choose a new website address for your store or transfer one you already own." -msgstr "" - -#: src/task-headers/appearance.js:29 -msgid "Appearance illustration" -msgstr "" - -#: src/task-headers/products.js:26 -msgid "Products illustration" -msgstr "" - -#: src/welcome-modal/index.js:64 -msgid "Welcome modal navigation illustration 2" -msgstr "" - -#: src/welcome-modal/index.js:77 -msgid "Meet your new Home" -msgstr "" - -#: src/welcome-modal/index.js:83 -msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." -msgstr "" - -#: src/welcome-modal/index.js:94 -msgid "Welcome modal navigation illustration 1" -msgstr "" - -#: src/welcome-modal/index.js:107 -msgid "Move faster with our new navigation" -msgstr "" - -#: src/welcome-modal/index.js:114 -msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." -msgstr "" diff --git a/readme.txt b/readme.txt index d5184b3a..7e72b9c8 100644 --- a/readme.txt +++ b/readme.txt @@ -22,7 +22,7 @@ This section describes how to install the plugin and get it working. == Changelog == -= Unreleased = += 2.2.11 = * Handling footer credits for Woo Express plans #1265 * Convert plugins page to a WC page #1278 * Fix plugins mobile screen UI #1281 diff --git a/wc-calypso-bridge.php b/wc-calypso-bridge.php index e4ec0d3b..ca8e2a22 100644 --- a/wc-calypso-bridge.php +++ b/wc-calypso-bridge.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Calypso Bridge * Plugin URI: https://wordpress.com/ * Description: A feature plugin to provide ux enhancements for users of Store on WordPress.com. - * Version: 2.2.10 + * Version: 2.2.11 * Author: Automattic * Author URI: https://wordpress.com/ * Requires at least: 4.4 @@ -47,7 +47,7 @@ define( 'WC_CALYPSO_BRIDGE_PLUGIN_PATH', dirname( __FILE__ ) ); } if ( ! defined( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION' ) ) { - define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.10' ); + define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.11' ); } if ( ! defined( 'WC_MIN_VERSION' ) ) { define( 'WC_MIN_VERSION', '7.3' ); From bf759f9d8a3dac601eda797b39497ee9a33349f8 Mon Sep 17 00:00:00 2001 From: Manos Psychogyiopoulos Date: Tue, 29 Aug 2023 13:01:27 +0300 Subject: [PATCH 23/81] Introduce blocklist for feature settings to be hidden Also search explicitly for the right key in order to inject the Navigation setting under the "Features" section. Previously, it was assumed that this section is always the first one in the array. Finally, restore access to the editor and HPOS experimental options. --- ...ypso-bridge-woocommerce-admin-features.php | 55 +++++++++---------- 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/includes/class-wc-calypso-bridge-woocommerce-admin-features.php b/includes/class-wc-calypso-bridge-woocommerce-admin-features.php index ec9dcff0..d18e4073 100644 --- a/includes/class-wc-calypso-bridge-woocommerce-admin-features.php +++ b/includes/class-wc-calypso-bridge-woocommerce-admin-features.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version 2.2.2 + * @version x.x.x */ defined( 'ABSPATH' ) || exit; @@ -147,11 +147,6 @@ public function filter_woocommerce_admin_features( $features ) { $features['navigation'] = false; } - // Disable the new product management experiment. - if ( isset( $features['new-product-management-experience'] ) ) { - $features['new-product-management-experience'] = false; - } - // Keep Woo Analytics enabled. if ( ! isset( $features['analytics'] ) ) { $features['analytics'] = true; @@ -174,44 +169,48 @@ public function filter_woocommerce_settings_features( $settings, $current_sectio return $settings; } - array_splice( $settings, 1, 0, - array( + $inject_at = false; + + foreach ( $settings as $setting_id => $setting_data ) { + if ( isset( $setting_data[ 'type' ] ) && 'title' === $setting_data[ 'type' ] && isset( $setting_data[ 'id' ] ) && 'features_options' === $setting_data[ 'id' ] ) { + $inject_at = $setting_id + 1; + break; + } + } + + // Inject new setting. + if ( $inject_at ) { + array_splice( $settings, $inject_at, 0, array( - 'title' => __( 'Navigation', 'wc-calypso-bridge' ), - 'desc' => __( 'A custom navigation experience that is optimized for selling.', 'wc-calypso-bridge' ), - 'type' => 'checkbox', - 'id' => 'wooexpress_navigation_enabled', - 'default' => 'yes' + array( + 'title' => __( 'Navigation', 'wc-calypso-bridge' ), + 'desc' => __( 'A custom navigation experience that is optimized for selling.', 'wc-calypso-bridge' ), + 'type' => 'checkbox', + 'id' => 'wooexpress_navigation_enabled', + 'default' => 'yes' + ) ) - ) - ); + ); + } + // Remove toggles for features that Woo Express users shouldn't be able to enable or disable. if ( wc_calypso_bridge_is_woo_express_plan() ) { $hpos_enabled = OrderUtil::custom_orders_table_usage_is_enabled(); - $whitelist = array( 'features_options', 'wooexpress_navigation_enabled' ); - - if ( $hpos_enabled ) { - $whitelist[] = 'experimental_features_options'; - } + $blocklist = array( 'woocommerce_analytics_enabled', 'woocommerce_navigation_enabled' ); foreach ( $settings as $setting_id => $setting_data ) { - if ( ! is_numeric( $setting_id ) && ! in_array( $setting_id, $whitelist ) ) { + if ( ! is_numeric( $setting_id ) && in_array( $setting_id, $blocklist ) ) { unset( $settings[ $setting_id ] ); } - if ( is_array( $setting_data ) && isset( $setting_data['id'] ) && ! in_array( $setting_data['id'], $whitelist ) ) { - - if ( 'woocommerce_feature_custom_order_tables_enabled' === $setting_data['id'] && $hpos_enabled ) { - // If HPOS is enabled, show the option until it's disabled. - continue; - } - + if ( is_array( $setting_data ) && isset( $setting_data['id'] ) && in_array( $setting_data['id'], $blocklist ) ) { unset( $settings[ $setting_id ] ); } } + // Prevent Ecommerce Plan users from seeing toggling the old navigation experiment. } else { foreach ( $settings as $setting_id => $setting_data ) { From 44d886888ccd64ef83739bfb97bb8f9849046eb4 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Tue, 29 Aug 2023 16:33:10 +0300 Subject: [PATCH 24/81] =?UTF-8?q?=F0=9F=91=8C=20Improve=20footer=20credits?= =?UTF-8?q?=20handling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...class-wc-calypso-bridge-footer-credits.php | 44 +++++++++++++------ readme.txt | 3 ++ 2 files changed, 34 insertions(+), 13 deletions(-) diff --git a/includes/class-wc-calypso-bridge-footer-credits.php b/includes/class-wc-calypso-bridge-footer-credits.php index 29616d34..3a17c0ec 100644 --- a/includes/class-wc-calypso-bridge-footer-credits.php +++ b/includes/class-wc-calypso-bridge-footer-credits.php @@ -1,4 +1,11 @@ - * - * @return string - */ - public function get_footer_credits(): string { - $utm_string = '?utm_source=referral&utm_medium=footer-credit&utm_campaign=woo-express-footer-credit'; - /* translators: %1$s is replaced with a link to WooCommerce.com */ - return sprintf( __( 'Powered by %1$s', 'wc-calypso-bridge' ), 'Woo' ); - } + /** + * Override footer credit as HTML - Only if there is no option in the DB or if it's set to default. + * + * @param $credit + * @param $lang + * + * @return string + * @see + * + */ + public function get_footer_credits( $credit, $lang ) { + + $credit_option = get_option( 'footercredit', false ); + if ( empty( $credit_option ) || 'default' === $credit_option ) { + $utm_string = '?utm_source=referral&utm_medium=footer-credit&utm_campaign=woo-express-footer-credit'; + + /* translators: %1$s is replaced with a link to WooCommerce.com */ + return sprintf( __( 'Powered by %1$s', 'wc-calypso-bridge' ), 'Woo' ); + } + + return $credit; + + } }; WC_Calypso_Bridge_Footer_Credits::get_instance(); diff --git a/readme.txt b/readme.txt index 7e72b9c8..47c12545 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += unreleased = +* Improve handling footer credits for Woo Express plans #xxx + = 2.2.11 = * Handling footer credits for Woo Express plans #1265 * Convert plugins page to a WC page #1278 From c82b8e95353e93351f0742e160c1e584169b4029 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 30 Aug 2023 11:55:53 +0300 Subject: [PATCH 25/81] =?UTF-8?q?=F0=9F=92=A1=20Changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/readme.txt b/readme.txt index 7e72b9c8..ff67e785 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,11 @@ This section describes how to install the plugin and get it working. == Changelog == += unreleased = +* Introduce a blocklist for feature settings to be hidden (Analytics, Old Navigation) #1284 +* Add logic to search explicitly for the right key in order to inject the Navigation setting under the "Features" section #1284 +* Restore access to the editor and HPOS experimental options #1284 + = 2.2.11 = * Handling footer credits for Woo Express plans #1265 * Convert plugins page to a WC page #1278 From 391d4d9cb45f7b49bc26464465bdecf9ac24fbfd Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 30 Aug 2023 12:21:34 +0300 Subject: [PATCH 26/81] Bump version to 2.2.12 --- composer.json | 2 +- wc-calypso-bridge.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 1ca1ad2c..cb11afd8 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "automattic/wc-calypso-bridge", - "version": "v2.2.11", + "version": "v2.2.12", "autoload": { "files": [ "wc-calypso-bridge.php" diff --git a/wc-calypso-bridge.php b/wc-calypso-bridge.php index ca8e2a22..f7aa825c 100644 --- a/wc-calypso-bridge.php +++ b/wc-calypso-bridge.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Calypso Bridge * Plugin URI: https://wordpress.com/ * Description: A feature plugin to provide ux enhancements for users of Store on WordPress.com. - * Version: 2.2.11 + * Version: 2.2.12 * Author: Automattic * Author URI: https://wordpress.com/ * Requires at least: 4.4 @@ -47,7 +47,7 @@ define( 'WC_CALYPSO_BRIDGE_PLUGIN_PATH', dirname( __FILE__ ) ); } if ( ! defined( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION' ) ) { - define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.11' ); + define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.12' ); } if ( ! defined( 'WC_MIN_VERSION' ) ) { define( 'WC_MIN_VERSION', '7.3' ); From 11570ebe42e8ce3a6e94e161d332def953124eb4 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 30 Aug 2023 12:21:43 +0300 Subject: [PATCH 27/81] Added version 2.2.12 to the changelog --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index 78571d58..9a741b1c 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += 2.2.12 = +* _Enter your changes here_ + = unreleased = * Improve handling footer credits for Woo Express plans #1286 * Introduce a blocklist for feature settings to be hidden (Analytics, Old Navigation) #1284 From 22695f57e70a87b2a3aef6f4a5919ba3e11dd53e Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 30 Aug 2023 12:22:01 +0300 Subject: [PATCH 28/81] Add new translation files --- languages/wc-calypso-bridge.pot | 759 ++++++++++++++------------------ 1 file changed, 336 insertions(+), 423 deletions(-) diff --git a/languages/wc-calypso-bridge.pot b/languages/wc-calypso-bridge.pot index 85aef5bf..c1a659de 100644 --- a/languages/wc-calypso-bridge.pot +++ b/languages/wc-calypso-bridge.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the WooCommerce Calypso Bridge plugin. msgid "" msgstr "" -"Project-Id-Version: WooCommerce Calypso Bridge 2.2.11\n" +"Project-Id-Version: WooCommerce Calypso Bridge 2.2.12\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-calypso-bridge\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: 2023-08-24T10:50:30+00:00\n" +"POT-Creation-Date: 2023-08-30T09:21:44+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.8.1\n" @@ -85,9 +85,8 @@ msgid "WooCommerce Subscriptions" msgstr "" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:90 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 -#: build/payment-gateway-suggestions.js:76 msgid "Manage" msgstr "" @@ -112,7 +111,7 @@ msgid "Stats" msgstr "" #. translators: %1$s is replaced with a link to WooCommerce.com -#: includes/class-wc-calypso-bridge-footer-credits.php:52 +#: includes/class-wc-calypso-bridge-footer-credits.php:66 msgid "Powered by %1$s" msgstr "" @@ -182,39 +181,39 @@ msgstr "" msgid "Built with Storefront & WordPress.com" msgstr "" -#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:180 +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 msgid "Navigation" msgstr "" -#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:181 +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 msgid "A custom navigation experience that is optimized for selling." msgstr "" -#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:309 +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 msgid "Onboarding" msgstr "" -#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:311 +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." msgstr "" -#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 msgid "Restore the visibility of the primary onboarding Task List." msgstr "" -#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 msgid "Restore the visibility of the \"Things to do next\" Task List." msgstr "" -#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:381 +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 msgid "Setup task list" msgstr "" -#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:381 +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 msgid "\"Things to do next\"" msgstr "" -#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:389 +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 msgid "Restore" msgstr "" @@ -228,11 +227,9 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:4133 -#: build/index.js:7717 -#: build/marketing.js:1147 -#: build/plugins.js:50 -#: build/plugins.js:53 +#: build/index.js:1 +#: build/marketing.js:1 +#: build/plugins.js:1 msgid "Upgrade now" msgstr "" @@ -245,7 +242,7 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:6239 +#: build/index.js:3 #: src/index.js:189 msgid "Plugins" msgstr "" @@ -260,8 +257,7 @@ msgstr "" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:2978 -#: build/index.js:5768 +#: build/index.js:3 #: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "" @@ -280,9 +276,8 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 #: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: build/index.js:6866 -#: build/index.js:7864 -#: build/index.js:7868 +#: build/index.js:1 +#: build/index.js:3 #: src/launch-store/index.js:322 #: src/task-headers/add-domain.js:31 #: src/task-headers/add-domain.js:44 @@ -299,7 +294,7 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 #: includes/tasks/class-wc-calypso-task-appearance.php:50 -#: build/index.js:8038 +#: build/index.js:3 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "" @@ -347,8 +342,7 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 #: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: build/index.js:4137 -#: build/index.js:6759 +#: build/index.js:1 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "" @@ -364,10 +358,7 @@ msgstr "" #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:65 -#: build/plugins.js:70 -#: build/plugins.js:77 -#: build/plugins.js:89 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "" @@ -405,8 +396,7 @@ msgstr "" #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:160 -#: build/plugins.js:227 +#: build/plugins.js:1 msgid "Get inspired" msgstr "" @@ -564,757 +554,680 @@ msgstr "" msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "" -#: build/index.js:1783 -#: build/payment-gateway-suggestions.js:231 -#: src/payment-gateway-suggestions/components/List/Item.js:80 -#: build/payment-gateway-suggestions.js:225 -msgid "Local Partner" +#: build/53.js:1 +#: src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +msgid "Payment illustration" msgstr "" -#: build/index.js:1784 -#: build/payment-gateway-suggestions.js:231 -#: src/payment-gateway-suggestions/components/List/Item.js:81 -#: build/payment-gateway-suggestions.js:226 -msgid "Recommended" +#: build/53.js:1 +#: src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +msgid "It’s time to test payments" msgstr "" -#: build/index.js:1837 -msgid "Setup required" +#: build/53.js:1 +#: src/free-trial/fills/task-headers/payments.js:40 +msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "" -#: build/index.js:1890 -msgid "Accepted payment methods" +#: build/53.js:1 +#: src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +msgid "Test payments" msgstr "" -#: build/index.js:2454 -msgid "& more." +#: build/53.js:1 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "" -#: build/index.js:2502 -msgid "Accepted payment methods include:" +#: build/53.js:1 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "" -#: build/index.js:2506 -msgid "Accept Payments and manage your business." +#: build/index.js:1 +msgid "& more." msgstr "" -#: build/index.js:2508 -#: build/payment-gateway-suggestions.js:1108 -#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 -#: build/payment-gateway-suggestions.js:1043 -msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " +#: build/index.js:1 +msgid "Accepted payment methods include:" msgstr "" -#: build/index.js:2721 +#: build/index.js:1 msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." msgstr "" -#: build/index.js:2724 +#: build/index.js:1 msgid "Sell to international markets and accept more than 135 currencies with local payment methods." msgstr "" -#: build/index.js:2727 +#: build/index.js:1 msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." msgstr "" -#: build/index.js:4113 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +#: build/index.js:1 +msgid "Setup required" msgstr "" -#: build/index.js:4114 -msgid "Upgrade to a paid plan to unlock more features and start selling" +#: build/index.js:1 +#: src/launch-store/index.js:71 +msgid "Copied" msgstr "" -#: build/index.js:4135 -msgid "Get more sales" +#: build/index.js:1 +#: src/launch-store/index.js:142 +msgid "Launching your store" msgstr "" -#: build/index.js:4283 -#: src/free-trial/tax/components/location.js:23 -msgid "Continue" +#: build/index.js:1 +#: src/launch-store/index.js:182 +msgid "Woo! You did it!" msgstr "" -#: build/index.js:4314 -#: src/free-trial/tax/components/location.js:56 -msgid "There was a problem saving your store location" +#: build/index.js:1 +#: src/launch-store/index.js:186 +msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "" -#: build/index.js:4483 -msgid "Choose a tax partner" +#: build/index.js:1 +#: src/launch-store/index.js:206 +msgid "View your store" msgstr "" -#: build/index.js:4494 -msgid "Set up taxes manually" +#: build/index.js:1 +#: src/launch-store/index.js:212 +msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "" -#: build/index.js:4501 -msgid "I don't charge sales tax" +#: build/index.js:1 +#: src/launch-store/index.js:247 +msgid "Ready to launch your store?" msgstr "" -#: build/index.js:4570 -msgid "Please select a country / region" +#: build/index.js:1 +#: src/launch-store/index.js:250 +msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "" -#: build/index.js:4781 -msgid "Country / Region" +#: build/index.js:1 +#: src/launch-store/index.js:262 +#: src/launch-store/index.js:398 +msgid "You can always revert this under Settings." msgstr "" -#: build/index.js:4795 -msgid "Address" +#: build/index.js:1 +#: src/launch-store/index.js:300 +#: src/launch-store/index.js:305 +msgid "Get paid" msgstr "" -#: build/index.js:4798 -msgid "Post code" +#: build/index.js:1 +#: src/launch-store/index.js:301 +msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "" -#: build/index.js:4801 -msgid "City" +#: build/index.js:1 +#: src/launch-store/index.js:309 +msgid "List your products" msgstr "" -#: build/index.js:4980 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +#: build/index.js:1 +#: src/launch-store/index.js:310 +msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "" -#: build/index.js:5061 -msgid "There was a problem setting up automated taxes. Please try again." +#: build/index.js:1 +#: src/launch-store/index.js:314 +msgid "List products" msgstr "" -#: build/index.js:5064 -msgid "You're awesome! One less item on your to-do list ✅" +#: build/index.js:1 +#: src/launch-store/index.js:318 +msgid "Choose an address for your new website or transfer a domain you already own." msgstr "" -#: build/index.js:5220 -msgid "Configure" +#: build/index.js:1 +#: src/launch-store/index.js:379 +msgid "Before you launch" msgstr "" -#: build/index.js:5221 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +#: build/index.js:1 +#: src/launch-store/index.js:382 +msgid "A few things to check before launching your store" msgstr "" -#: build/index.js:5287 -#: build/index.js:5676 -msgid "Set store location" +#: build/index.js:1 +#: src/launch-store/index.js:392 +msgid "Launch anyway" msgstr "" -#: build/index.js:5288 -#: build/index.js:5677 -msgid "The address from which your business operates" +#: build/index.js:1 +#: build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Action.js:27 +#: src/payment-gateway-suggestions/components/Setup/Configure.js:159 +#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 +#: src/welcome-modal/index.js:59 +msgid "Get started" msgstr "" -#: build/index.js:5292 -msgid "Configure tax rates" +#: build/index.js:1 +#: src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" msgstr "" -#: build/index.js:5293 -msgid "Head over to the tax rate settings screen to configure your tax rates" +#: build/index.js:1 +#: src/welcome-modal/index.js:77 +msgid "Meet your new Home" msgstr "" -#: build/index.js:5421 -msgid "Automate taxes" +#: build/index.js:1 +#: src/welcome-modal/index.js:83 +msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." +msgstr "" + +#: build/index.js:1 +#: src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" msgstr "" -#: build/index.js:5467 +#: build/index.js:1 +#: src/welcome-modal/index.js:107 +msgid "Move faster with our new navigation" +msgstr "" + +#: build/index.js:1 +#: src/welcome-modal/index.js:114 +msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." +msgstr "" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "" + +#: build/index.js:1 msgid "WooCommerce Tax" msgstr "" -#: build/index.js:5469 +#: build/index.js:1 msgid "Best for new stores" msgstr "" -#: build/index.js:5470 +#: build/index.js:1 msgid "Real-time sales tax calculation" msgstr "" -#: build/index.js:5471 +#: build/index.js:1 msgid "{{strong}}Single{{/strong}} economic nexus compliance" msgstr "" -#: build/index.js:5476 +#: build/index.js:1 msgid "Powered by {{link}}Jetpack{{/link}}" msgstr "" -#: build/index.js:5486 +#: build/index.js:1 msgid "100% free" msgstr "" -#: build/index.js:5488 +#: build/index.js:1 msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." msgstr "" -#: build/index.js:5497 +#: build/index.js:1 msgid "Continue setup" msgstr "" -#: build/index.js:5681 -msgid "Automate Taxes" -msgstr "" - -#: build/index.js:5682 -msgid "WooCommerce Tax can automate your sales tax calculations for you." +#: build/index.js:1 +msgid "Configure" msgstr "" -#: build/index.js:5762 -#: src/homescreen-banner/index.js:45 -msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." msgstr "" -#: build/index.js:5770 -#: src/homescreen-banner/index.js:61 -msgid "Dismiss this free trial informational banner." +#: build/index.js:1 +msgid "Country / Region" msgstr "" -#: build/index.js:5891 -msgid "Hide setup list" +#: build/index.js:1 +msgid "Address" msgstr "" -#: build/index.js:5894 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +#: build/index.js:1 +msgid "Post code" msgstr "" -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:5895 -msgid "%1$d out of %2$d complete." +#: build/index.js:1 +msgid "City" msgstr "" -#. translators: %s = site title -#: build/index.js:5964 -msgid "Welcome to %s" +#: build/index.js:1 +#: src/free-trial/tax/components/location.js:23 +msgid "Continue" msgstr "" -#: build/index.js:5964 -msgid "Welcome to your Woo Express store" +#: build/index.js:1 +#: src/free-trial/tax/components/location.js:56 +msgid "There was a problem saving your store location" msgstr "" -#: build/index.js:5969 -msgid "Only a few more tasks to tick off!" +#: build/index.js:1 +msgid "Please select a country / region" msgstr "" -#: build/index.js:5973 -msgid "Woo! We’ve made it to the last step! Great job" +#: build/index.js:1 +msgid "Set store location" msgstr "" -#: build/index.js:5975 -msgid "Everything is looking great, keep it up!" +#: build/index.js:1 +msgid "The address from which your business operates" msgstr "" -#: build/index.js:6033 -#: build/index.js:7720 -msgid "Task List Options" +#: build/index.js:1 +msgid "Configure tax rates" msgstr "" -#: build/index.js:6038 -#: build/index.js:7727 -msgid "Hide this" +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" msgstr "" -#: build/index.js:6699 -#: src/launch-store/index.js:71 -msgid "Copied" +#: build/index.js:1 +msgid "Automate taxes" msgstr "" -#: build/index.js:6749 -#: src/launch-store/index.js:142 -msgid "Launching your store" +#: build/index.js:1 +msgid "Automate Taxes" msgstr "" -#: build/index.js:6776 -#: src/launch-store/index.js:182 -msgid "Woo! You did it!" +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." msgstr "" -#: build/index.js:6778 -#: src/launch-store/index.js:186 -msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" +#: build/index.js:1 +msgid "Choose a tax partner" msgstr "" -#: build/index.js:6791 -#: src/launch-store/index.js:206 -msgid "View your store" +#: build/index.js:1 +msgid "Set up taxes manually" msgstr "" -#: build/index.js:6795 -#: src/launch-store/index.js:212 -msgid "Changed your mind? You can make your store private again by updating your Privacy settings." +#: build/index.js:1 +msgid "I don't charge sales tax" msgstr "" -#: build/index.js:6814 -#: src/launch-store/index.js:247 -msgid "Ready to launch your store?" +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." msgstr "" -#: build/index.js:6816 -#: src/launch-store/index.js:250 -msgid "It's time to celebrate – you're ready to launch your store! Woo!" +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." msgstr "" -#: build/index.js:6822 -#: build/index.js:6910 -#: src/launch-store/index.js:262 -#: src/launch-store/index.js:398 -msgid "You can always revert this under Settings." +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" msgstr "" -#: build/index.js:6853 -#: build/index.js:6855 -#: src/launch-store/index.js:300 -#: src/launch-store/index.js:305 -msgid "Get paid" +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" msgstr "" -#: build/index.js:6854 -#: src/launch-store/index.js:301 -msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." msgstr "" -#: build/index.js:6859 -#: src/launch-store/index.js:309 -msgid "List your products" +#: build/index.js:1 +msgid "Task List Options" msgstr "" -#: build/index.js:6860 -#: src/launch-store/index.js:310 -msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." +#: build/index.js:1 +msgid "Show setup task list" msgstr "" -#: build/index.js:6861 -#: src/launch-store/index.js:314 -msgid "List products" +#: build/index.js:1 +msgid "Hide this" msgstr "" -#: build/index.js:6865 -#: src/launch-store/index.js:318 -msgid "Choose an address for your new website or transfer a domain you already own." +#: build/index.js:1 +msgid "How was your experience?" msgstr "" -#: build/index.js:6901 -#: src/launch-store/index.js:379 -msgid "Before you launch" +#: build/index.js:1 +msgid "We appreciate your feedback!" msgstr "" -#: build/index.js:6903 -#: src/launch-store/index.js:382 -msgid "A few things to check before launching your store" +#: build/index.js:1 +msgid "The store setup is easy to complete." msgstr "" -#: build/index.js:6906 -#: src/launch-store/index.js:392 -msgid "Launch anyway" +#: build/index.js:1 +msgid "The store setup process meets my needs." msgstr "" -#: build/index.js:7031 -#: src/payment-gateway-suggestions/components/WCPay/utils.js:15 -msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." +#: build/index.js:1 +msgid "Hide setup list" msgstr "" -#: build/index.js:7708 -msgid "Woohoo! Your trial store has been set up!" +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." msgstr "" -#: build/index.js:7714 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." msgstr "" -#: build/index.js:7725 -msgid "Show setup task list" +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" msgstr "" -#: build/index.js:7729 -#: build/index.js:7739 -msgid "How was your experience?" +#: build/index.js:3 +msgid "Welcome to your Woo Express store" msgstr "" -#: build/index.js:7738 -msgid "We appreciate your feedback!" +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" msgstr "" -#: build/index.js:7740 -msgid "The store setup is easy to complete." +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" msgstr "" -#: build/index.js:7741 -msgid "The store setup process meets my needs." +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" msgstr "" -#: build/index.js:7859 +#: build/index.js:3 #: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "" -#: build/index.js:7864 +#: build/index.js:3 #: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "" -#: build/index.js:7936 -#: src/task-headers/appearance.js:29 -msgid "Appearance illustration" -msgstr "" - -#: build/index.js:8024 +#: build/index.js:3 #: src/task-headers/products.js:26 msgid "Products illustration" msgstr "" -#: build/index.js:8378 -#: build/payment-gateway-suggestions.js:52 -#: build/payment-gateway-suggestions.js:543 -#: build/payment-gateway-suggestions.js:1178 -#: src/payment-gateway-suggestions/components/Action.js:27 -#: src/payment-gateway-suggestions/components/Setup/Configure.js:159 -#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:59 -#: build/payment-gateway-suggestions.js:27 -#: build/payment-gateway-suggestions.js:536 -#: build/payment-gateway-suggestions.js:1131 -msgid "Get started" -msgstr "" - -#: build/index.js:8381 -#: src/welcome-modal/index.js:64 -msgid "Welcome modal navigation illustration 2" -msgstr "" - -#: build/index.js:8388 -#: src/welcome-modal/index.js:77 -msgid "Meet your new Home" -msgstr "" - -#: build/index.js:8390 -#: src/welcome-modal/index.js:83 -msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." +#: build/index.js:3 +#: src/task-headers/appearance.js:29 +msgid "Appearance illustration" msgstr "" -#: build/index.js:8393 -#: src/welcome-modal/index.js:94 -msgid "Welcome modal navigation illustration 1" +#: build/index.js:3 +#: src/homescreen-banner/index.js:45 +msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "" -#: build/index.js:8400 -#: src/welcome-modal/index.js:107 -msgid "Move faster with our new navigation" +#: build/index.js:3 +#: src/homescreen-banner/index.js:61 +msgid "Dismiss this free trial informational banner." msgstr "" -#: build/index.js:8402 -#: src/welcome-modal/index.js:114 -msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." +#: build/index.js:3 +#: src/payment-gateway-suggestions/components/WCPay/utils.js:15 +msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "" -#: build/marketing.js:1161 +#: build/marketing.js:1 msgid "Get ready to grow your business" msgstr "" -#: build/marketing.js:1161 +#: build/marketing.js:1 msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" msgstr "" -#: build/marketing.js:1168 +#: build/marketing.js:1 msgid "Grow your business with hundreds of extensions" msgstr "" -#: build/marketing.js:1174 +#: build/marketing.js:1 msgid "Discover our built-in marketing tools to reach more customers and boost sales" msgstr "" -#: build/marketing.js:1176 +#: build/marketing.js:1 msgid "Automate your marketing" msgstr "" -#: build/marketing.js:1177 +#: build/marketing.js:1 msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." msgstr "" -#: build/marketing.js:1186 +#: build/marketing.js:1 msgid "Try AutomateWoo" msgstr "" -#: build/marketing.js:1189 +#: build/marketing.js:1 msgid "Advertise your products on Google" msgstr "" -#: build/marketing.js:1190 +#: build/marketing.js:1 msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." msgstr "" -#: build/marketing.js:1194 +#: build/marketing.js:1 msgid "Reach more customers across social media" msgstr "" -#: build/marketing.js:1195 +#: build/marketing.js:1 msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." msgstr "" -#: build/marketing.js:1199 +#: build/marketing.js:1 msgid "Increase customer loyalty with gift cards" msgstr "" -#: build/marketing.js:1200 +#: build/marketing.js:1 msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." msgstr "" -#: build/marketing.js:1209 +#: build/marketing.js:1 msgid "Create digital gift cards" msgstr "" -#: build/payment-gateway-suggestions.js:103 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 -#: build/payment-gateway-suggestions.js:99 msgid "Enable" msgstr "" -#: build/payment-gateway-suggestions.js:132 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 -#: build/payment-gateway-suggestions.js:138 msgid "Finish setup" msgstr "" +#: build/payment-gateway-suggestions.js:1 +#: src/payment-gateway-suggestions/components/List/Item.js:80 +msgid "Local Partner" +msgstr "" + +#: build/payment-gateway-suggestions.js:1 +#: src/payment-gateway-suggestions/components/List/Item.js:81 +msgid "Recommended" +msgstr "" + #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:500 +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 -#: build/payment-gateway-suggestions.js:452 msgid "%s configured successfully" msgstr "" -#: build/payment-gateway-suggestions.js:503 +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 -#: build/payment-gateway-suggestions.js:461 msgid "There was a problem saving your payment settings" msgstr "" -#: build/payment-gateway-suggestions.js:513 +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 -#: build/payment-gateway-suggestions.js:477 msgid "Proceed" msgstr "" -#: build/payment-gateway-suggestions.js:535 +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 -#: build/payment-gateway-suggestions.js:510 msgid "Connect" msgstr "" -#: build/payment-gateway-suggestions.js:540 +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 -#: build/payment-gateway-suggestions.js:529 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:702 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 -#: build/payment-gateway-suggestions.js:665 msgid "Install %s" msgstr "" -#: build/payment-gateway-suggestions.js:719 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 -#: build/payment-gateway-suggestions.js:697 msgid "Configure your %(title)s account" msgstr "" -#: build/payment-gateway-suggestions.js:896 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 +msgid "Get ready to accept payments" +msgstr "" + +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 +msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " +msgstr "" + +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 -#: build/payment-gateway-suggestions.js:842 msgid "There was a problem updating your preferences" msgstr "" -#: build/payment-gateway-suggestions.js:957 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 -#: build/payment-gateway-suggestions.js:901 msgid "Build a better WooCommerce" msgstr "" -#: build/payment-gateway-suggestions.js:968 -#: build/payment-gateway-suggestions.js:1250 +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "" + +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 -#: build/payment-gateway-suggestions.js:918 -#: build/payment-gateway-suggestions.js:1201 msgid "No thanks" msgstr "" -#: build/payment-gateway-suggestions.js:969 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 -#: build/payment-gateway-suggestions.js:919 msgid "Yes, count me in!" msgstr "" -#: build/payment-gateway-suggestions.js:1101 -#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 -#: build/payment-gateway-suggestions.js:1033 -msgid "Get ready to accept payments" -msgstr "" - -#: build/payment-gateway-suggestions.js:1234 -#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:29 -#: build/payment-gateway-suggestions.js:1175 -msgid "Help us build a better WooCommerce Payments experience" -msgstr "" - -#: build/payment-gateway-suggestions.js:1236 -#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:34 -#: build/payment-gateway-suggestions.js:1180 -msgid "By agreeing to share non-sensitive {{link}}usage data{{/link}}, you’ll help us improve features and optimize the WooCommerce Payments experience. You can opt out at any time." -msgstr "" - -#: build/payment-gateway-suggestions.js:1249 -#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:54 -#: build/payment-gateway-suggestions.js:1200 -msgid "I agree" -msgstr "" - -#: build/payment-gateway-suggestions.js:1449 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 -#: build/payment-gateway-suggestions.js:1426 msgid "Choose a payment provider" msgstr "" -#: build/payment-gateway-suggestions.js:1450 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 -#: build/payment-gateway-suggestions.js:1430 msgid "To get ready to accept online payments" msgstr "" -#: build/payment-gateway-suggestions.js:1453 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 -#: build/payment-gateway-suggestions.js:1436 msgid "Additional payment options" msgstr "" -#: build/payment-gateway-suggestions.js:1454 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 -#: build/payment-gateway-suggestions.js:1440 msgid "Give your customers additional choices in ways to pay." msgstr "" -#: build/payment-gateway-suggestions.js:1456 -#: build/payment-gateway-suggestions.js:1505 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 -#: build/payment-gateway-suggestions.js:1445 -#: build/payment-gateway-suggestions.js:1524 msgid "Other payment providers" msgstr "" -#: build/payment-gateway-suggestions.js:1457 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 -#: build/payment-gateway-suggestions.js:1449 msgid "Try one of the alternative payment providers." msgstr "" -#: build/payment-gateway-suggestions.js:1471 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 -#: build/payment-gateway-suggestions.js:1470 msgid "See more" msgstr "" -#: build/payment-gateway-suggestions.js:1476 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 -#: build/payment-gateway-suggestions.js:1479 msgid "Offline payment methods" msgstr "" -#: build/payment-gateway-suggestions.js:1491 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 -#: build/payment-gateway-suggestions.js:1498 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "" -#: build/plugins.js:37 -#: build/plugins.js:26 +#: build/plugins.js:1 msgid "Make anything happen, with plugins" msgstr "" -#: build/plugins.js:39 -#: build/plugins.js:33 +#: build/plugins.js:1 msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" msgstr "" -#: build/plugins.js:61 -#: build/plugins.js:99 -#: build/plugins.js:67 -#: build/plugins.js:136 +#: build/plugins.js:1 msgid "Browse plugins" msgstr "" -#: build/plugins.js:89 -#: build/plugins.js:117 +#: build/plugins.js:1 msgid "Transform WordPress" msgstr "" -#: build/plugins.js:89 -#: build/plugins.js:120 +#: build/plugins.js:1 msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." msgstr "" -#: build/plugins.js:121 -#: build/plugins.js:165 +#: build/plugins.js:1 msgid "Extend your store" msgstr "" -#: build/plugins.js:121 -#: build/plugins.js:167 +#: build/plugins.js:1 msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." msgstr "" -#: build/plugins.js:131 -#: build/plugins.js:183 +#: build/plugins.js:1 msgid "Discover Extensions" msgstr "" -#: build/plugins.js:150 -#: build/plugins.js:209 +#: build/plugins.js:1 msgid "Do it your way" msgstr "" -#: build/plugins.js:150 -#: build/plugins.js:211 +#: build/plugins.js:1 msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." msgstr "" -#: build/src_free-trial_fills_index_ts.js:66 -#: build/src_free-trial_fills_index_ts.js:138 -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 -#: build/src_free-trial_fills_index_ts.js:26 -#: build/src_free-trial_fills_index_ts.js:96 -msgid "Payment illustration" -msgstr "" - -#: build/src_free-trial_fills_index_ts.js:71 -#: build/src_free-trial_fills_index_ts.js:143 -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 -#: build/src_free-trial_fills_index_ts.js:38 -#: build/src_free-trial_fills_index_ts.js:108 -msgid "It’s time to test payments" -msgstr "" - -#: build/src_free-trial_fills_index_ts.js:71 -#: src/free-trial/fills/task-headers/payments.js:40 -#: build/src_free-trial_fills_index_ts.js:44 -msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." -msgstr "" - -#: build/src_free-trial_fills_index_ts.js:75 -#: build/src_free-trial_fills_index_ts.js:156 -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 -#: build/src_free-trial_fills_index_ts.js:54 -#: build/src_free-trial_fills_index_ts.js:143 -msgid "Test payments" +#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:29 +msgid "Help us build a better WooCommerce Payments experience" msgstr "" -#: build/src_free-trial_fills_index_ts.js:143 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 -#: build/src_free-trial_fills_index_ts.js:114 -msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." +#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:34 +msgid "By agreeing to share non-sensitive {{link}}usage data{{/link}}, you’ll help us improve features and optimize the WooCommerce Payments experience. You can opt out at any time." msgstr "" -#: build/src_free-trial_fills_index_ts.js:144 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 -#: build/src_free-trial_fills_index_ts.js:121 -msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" +#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:54 +msgid "I agree" msgstr "" #: src/payment-gateway-suggestions/plugins/Bacs.js:32 From 2ecbd2f858fb686629a3d95b6c59cee195704578 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 30 Aug 2023 12:23:57 +0300 Subject: [PATCH 29/81] =?UTF-8?q?=F0=9F=92=A1=20Update=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- readme.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/readme.txt b/readme.txt index 9a741b1c..219d29a8 100644 --- a/readme.txt +++ b/readme.txt @@ -23,9 +23,6 @@ This section describes how to install the plugin and get it working. == Changelog == = 2.2.12 = -* _Enter your changes here_ - -= unreleased = * Improve handling footer credits for Woo Express plans #1286 * Introduce a blocklist for feature settings to be hidden (Analytics, Old Navigation) #1284 * Add logic to search explicitly for the right key in order to inject the Navigation setting under the "Features" section #1284 From b86ad83a5a0eec58790508c8150e8db454325def Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 30 Aug 2023 12:26:11 +0300 Subject: [PATCH 30/81] =?UTF-8?q?=F0=9F=92=A1=20Bump=20version=20numbers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- includes/class-wc-calypso-bridge-footer-credits.php | 2 +- includes/class-wc-calypso-bridge-tracks.php | 4 ++-- .../class-wc-calypso-bridge-woocommerce-admin-features.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/class-wc-calypso-bridge-footer-credits.php b/includes/class-wc-calypso-bridge-footer-credits.php index 3a17c0ec..520e809d 100644 --- a/includes/class-wc-calypso-bridge-footer-credits.php +++ b/includes/class-wc-calypso-bridge-footer-credits.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 2.2.11 - * @version x.x.x + * @version 2.2.12 */ defined( 'ABSPATH' ) || exit; diff --git a/includes/class-wc-calypso-bridge-tracks.php b/includes/class-wc-calypso-bridge-tracks.php index 6bdcba7a..a9a8ad5b 100644 --- a/includes/class-wc-calypso-bridge-tracks.php +++ b/includes/class-wc-calypso-bridge-tracks.php @@ -6,7 +6,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.1.6 - * @version x.x.x + * @version 2.2.12 */ defined( 'ABSPATH' ) || exit; @@ -194,7 +194,7 @@ public function add_tracks_php_filter( $properties, $event_name ) { * * @param array $properties Current event properties array. * - * @since x.x.x + * @since 2.2.12 */ public function filter_jetpack_woocommerce_analytics_event_props( $properties ) { $properties['host'] = self::$tracks_host_value; diff --git a/includes/class-wc-calypso-bridge-woocommerce-admin-features.php b/includes/class-wc-calypso-bridge-woocommerce-admin-features.php index d18e4073..74cbd750 100644 --- a/includes/class-wc-calypso-bridge-woocommerce-admin-features.php +++ b/includes/class-wc-calypso-bridge-woocommerce-admin-features.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version x.x.x + * @version 2.2.12 */ defined( 'ABSPATH' ) || exit; From ed1e5edd7314d2d6d5006234298a7260f49f8e12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismael=20Marti=CC=81n=20Alabarce?= Date: Wed, 6 Sep 2023 14:39:59 +0200 Subject: [PATCH 31/81] Display server based incentive header in WooPayments setup task when an incentive is available. --- .../task-headers/woocommerce-payments.js | 25 ++++++++++++++----- 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/src/free-trial/fills/task-headers/woocommerce-payments.js b/src/free-trial/fills/task-headers/woocommerce-payments.js index 00b66e94..7400ed4e 100644 --- a/src/free-trial/fills/task-headers/woocommerce-payments.js +++ b/src/free-trial/fills/task-headers/woocommerce-payments.js @@ -13,8 +13,13 @@ import { Link } from '@woocommerce/components'; */ import TimerImage from '../../../task-headers/assets/images/timer.svg'; import { WC_ASSET_URL } from '../../../utils/admin-settings'; +import { sanitizeHTML } from '../../../payment-gateway-suggestions/utils'; const WoocommercePaymentsHeader = () => { + const incentive = + window.wcSettings?.admin?.wcpayWelcomePageIncentive || + window.wcpaySettings?.connectIncentive; + return ( { ( { task, goToTask } ) => { @@ -38,12 +43,20 @@ const WoocommercePaymentsHeader = () => { 'wc-calypso-bridge' ) } -

- { __( - 'Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments.', - 'wc-calypso-bridge' - ) } -

+ { incentive?.task_header_content ? ( +

+ ) : ( +

+ { __( + 'Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments.', + 'wc-calypso-bridge' + ) } +

+ ) }

{ interpolateComponents( { mixedString: __( From c0aef9210349306fd137e0b26b78b3220b683616 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismael=20Marti=CC=81n=20Alabarce?= Date: Wed, 6 Sep 2023 14:43:59 +0200 Subject: [PATCH 32/81] Add changelog entry --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index 219d29a8..beca1f74 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += unreleased = +* Display a server based WooPayments setup task header when an incentive is available. + = 2.2.12 = * Improve handling footer credits for Woo Express plans #1286 * Introduce a blocklist for feature settings to be hidden (Analytics, Old Navigation) #1284 From 6aa894aa3fa85b035e2afb093e9866ffb24e86fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ismael=20Mart=C3=ADn=20Alabarce?= Date: Fri, 8 Sep 2023 09:42:31 +0200 Subject: [PATCH 33/81] Update readme.txt Co-authored-by: Chi-Hsuan Huang --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index beca1f74..f094053a 100644 --- a/readme.txt +++ b/readme.txt @@ -23,7 +23,7 @@ This section describes how to install the plugin and get it working. == Changelog == = unreleased = -* Display a server based WooPayments setup task header when an incentive is available. +* Display a server based WooPayments setup task header when an incentive is available #1294 = 2.2.12 = * Improve handling footer credits for Woo Express plans #1286 From 49f5143c66e8821ec56229659b5bfb2d7d048449 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Tue, 12 Sep 2023 13:43:54 +0300 Subject: [PATCH 34/81] =?UTF-8?q?=F0=9F=91=8C=20Delete=20all=20pages=20and?= =?UTF-8?q?=20recreat=20-=20Additional=20logging?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- includes/class-wc-calypso-bridge-setup.php | 62 +++++++++++++++++----- readme.txt | 2 + 2 files changed, 50 insertions(+), 14 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index 1393fb72..d5a83230 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version 2.2.8 + * @version x.x.x */ use Automattic\WooCommerce\Admin\WCAdminHelper; @@ -269,16 +269,26 @@ public function woocommerce_create_pages_callback() { try { /* - * Force delete all WooCommerce pages. Some themes create them, and we end up with duplicates. - * - * `My Account` page, has slug `my-account`. - * @see WC_Install::create_pages() + * Force delete all pages (including duplicates), except some which are whitelisted. */ - foreach ( [ 'shop', 'cart', 'my-account', 'checkout', 'refund_returns' ] as $page_slug ) { - $page = get_page_by_path( $page_slug, ARRAY_A ); - if ( is_array( $page ) && isset( $page['ID'] ) ) { - wp_delete_post( $page['ID'], true ); - $this->write_to_log( $operation, 'deleted WooCommerce page ' . $page_slug ); + $exclude_pages = array( 'faq', 'contact-us', 'blog' ); + $args_pages = array( + 'post_type' => 'page', + 'post_status' => 'any', + 'posts_per_page' => - 1, + ); + $query_pages = new WP_Query( $args_pages ); + + $this->write_to_log( $operation, 'DELETING PAGES '); + foreach ( $query_pages->posts as $page ) { + if ( ! in_array( $page->post_name, $exclude_pages ) ) { + $result = wp_delete_post( $page->ID, true ); + $this->write_to_log( $operation, 'deleted WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); + if ( ! $result ) { + $this->write_to_log( $operation, 'failed to delete WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); + } + } else { + $this->write_to_log( $operation, 'skipped WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); } } @@ -291,9 +301,19 @@ public function woocommerce_create_pages_callback() { * `My Account` page id setting, is created with key `myaccount`. * @see WC_Install::create_pages() */ + $this->write_to_log( $operation, 'DELETING OPTIONS '); foreach ( [ 'shop', 'cart', 'myaccount', 'checkout', 'refund_returns' ] as $page ) { - delete_option( "woocommerce_{$page}_page_id" ); - $this->write_to_log( $operation, 'deleted WooCommerce page id for page ' . $page ); + $value = get_option( "woocommerce_{$page}_page_id" ); + $result = delete_option( "woocommerce_{$page}_page_id" ); + $this->write_to_log( $operation, 'deleted option woocommerce_' . $page . '_page_id : ' . $value ); + if ( ! $result ) { + $this->write_to_log( $operation, 'failed to delete option woocommerce_' . $page . '_page_id : ' . $value ); + } + } + + foreach ( [ 'shop', 'cart', 'myaccount', 'checkout', 'refund_returns' ] as $page ) { + $value = get_option( "woocommerce_{$page}_page_id" ); + $this->write_to_log( $operation, 'getting option woocommerce_' . $page . '_page_id : ' . $value ); } // Delete the following note, so it can be recreated with the correct refund page ID. @@ -301,6 +321,7 @@ public function woocommerce_create_pages_callback() { Automattic\WooCommerce\Admin\Notes\Notes::delete_notes_with_name( 'wc-refund-returns-page' ); } + $this->write_to_log( $operation, 'CREATING PAGES '); WC_Install::create_pages(); $this->write_to_log( $operation, 'finished WC_Install::create_pages' ); @@ -394,7 +415,7 @@ class_exists( 'Automattic\WooCommerce\Blocks\Package' ) if ( isset( $pages['checkout']['content'] ) ) { $pages['checkout']['content'] = '

'; } - $this->write_to_log( $operation, 'set cart/checkout blocks' ); + $this->write_to_log( $operation, 'woocommerce_create_pages filter - updated content to use cart/checkout blocks' ); // Inform the merchant that we've enabled the new checkout experience. include_once WC_CALYPSO_BRIDGE_PLUGIN_PATH . '/includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php'; @@ -412,11 +433,24 @@ class_exists( 'Automattic\WooCommerce\Blocks\Package' ) }, PHP_INT_MAX ); + // Log if valid page exists. + add_filter( 'woocommerce_create_page_id', function ( $valid_page_found, $slug, $page_content ) { + + $operation = 'woocommerce_create_pages'; + if ( $valid_page_found ) { + $this->write_to_log( $operation, 'woocommerce_create_page_id filter - valid page found - slug: ' . $slug ); + } else { + $this->write_to_log( $operation, 'woocommerce_create_page_id filter - valid page not found - slug: ' . $slug ); + } + + return $valid_page_found; + }, PHP_INT_MAX, 3 ); + // Log which pages have been created. add_action( 'woocommerce_page_created', function ( $page_id, $page_data ) { $operation = 'woocommerce_create_pages'; $slug = isset( $page_data['post_name'] ) ? $page_data['post_name'] : ''; - $this->write_to_log( $operation, 'woocommerce_page_created action - ' . 'id: ' . $page_id . ', slug: ' . $slug ); + $this->write_to_log( $operation, 'woocommerce_page_created action - id: ' . $page_id . ', slug: ' . $slug ); }, PHP_INT_MAX, 2 ); } diff --git a/readme.txt b/readme.txt index f094053a..8049a0ba 100644 --- a/readme.txt +++ b/readme.txt @@ -24,6 +24,8 @@ This section describes how to install the plugin and get it working. = unreleased = * Display a server based WooPayments setup task header when an incentive is available #1294 +* Introduce additional logging in the page creation one time job #xxx +* Delete all created pages (except an allow-list) and then recreate WooCommerce ones, to avoid ending up with duplicates #xxx = 2.2.12 = * Improve handling footer credits for Woo Express plans #1286 From e79928bb7611acce504447370fe0de59916b2ffb Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:09:32 +0300 Subject: [PATCH 35/81] Check if empty posts before deleting --- includes/class-wc-calypso-bridge-setup.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index d5a83230..72bc4c3f 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -280,15 +280,17 @@ public function woocommerce_create_pages_callback() { $query_pages = new WP_Query( $args_pages ); $this->write_to_log( $operation, 'DELETING PAGES '); - foreach ( $query_pages->posts as $page ) { - if ( ! in_array( $page->post_name, $exclude_pages ) ) { - $result = wp_delete_post( $page->ID, true ); - $this->write_to_log( $operation, 'deleted WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); - if ( ! $result ) { - $this->write_to_log( $operation, 'failed to delete WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); + if ( ! empty( $query_pages->posts ) ) { + foreach ( $query_pages->posts as $page ) { + if ( ! in_array( $page->post_name, $exclude_pages ) ) { + $result = wp_delete_post( $page->ID, true ); + $this->write_to_log( $operation, 'deleted WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); + if ( ! $result ) { + $this->write_to_log( $operation, 'failed to delete WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); + } + } else { + $this->write_to_log( $operation, 'skipped WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); } - } else { - $this->write_to_log( $operation, 'skipped WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); } } From 11f62f4e3059b46b00f8ccbb0463d28edc7c4e4f Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:25:20 +0300 Subject: [PATCH 36/81] Bump version to 2.2.13 --- composer.json | 2 +- wc-calypso-bridge.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index cb11afd8..172044d7 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "automattic/wc-calypso-bridge", - "version": "v2.2.12", + "version": "v2.2.13", "autoload": { "files": [ "wc-calypso-bridge.php" diff --git a/wc-calypso-bridge.php b/wc-calypso-bridge.php index f7aa825c..575925da 100644 --- a/wc-calypso-bridge.php +++ b/wc-calypso-bridge.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Calypso Bridge * Plugin URI: https://wordpress.com/ * Description: A feature plugin to provide ux enhancements for users of Store on WordPress.com. - * Version: 2.2.12 + * Version: 2.2.13 * Author: Automattic * Author URI: https://wordpress.com/ * Requires at least: 4.4 @@ -47,7 +47,7 @@ define( 'WC_CALYPSO_BRIDGE_PLUGIN_PATH', dirname( __FILE__ ) ); } if ( ! defined( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION' ) ) { - define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.12' ); + define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.13' ); } if ( ! defined( 'WC_MIN_VERSION' ) ) { define( 'WC_MIN_VERSION', '7.3' ); From 78cb3cfa2a6d95de3200dc13dfdf9a9358dcc122 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:25:33 +0300 Subject: [PATCH 37/81] Added version 2.2.13 to the changelog --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index 8049a0ba..7d6ad88f 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += 2.2.13 = +* _Enter your changes here_ + = unreleased = * Display a server based WooPayments setup task header when an incentive is available #1294 * Introduce additional logging in the page creation one time job #xxx From f12deb98342d6f31d454b942f639e9315bdada53 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:25:37 +0300 Subject: [PATCH 38/81] Add new translation files --- languages/wc-calypso-bridge-sv_SE.mo | Bin 22149 -> 27848 bytes languages/wc-calypso-bridge-sv_SE.po | 661 ++++++++++++++++++++++----- languages/wc-calypso-bridge.pot | 20 +- 3 files changed, 565 insertions(+), 116 deletions(-) diff --git a/languages/wc-calypso-bridge-sv_SE.mo b/languages/wc-calypso-bridge-sv_SE.mo index f913ce0c2f026c7e0c5ca9369157427b7b5f91f9..179318e20d80d0410754a28b9f2d6fea33871ea5 100644 GIT binary patch delta 10908 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 SeW~)gL9KMYf4A-zc;Learn more about our new navigation — or go ahead and explore on your own." msgstr "Att få saker gjorda med WooCommerce går nu ännu snabbare. Läs mer om vår nya navigering – eller gå vidare och utforska på egen hand." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Arbeta snabbare med vår nya navigering" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Få tips och insikter om din butiks prestanda varje gång du går tillbaka till din WordPress.com-adminpanel." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Det här är din nya startsida" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Välj en ny webbplatsadress för din butik eller överför en du redan äger." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Lägg till en domänillustration" @@ -79,43 +487,53 @@ msgstr "Uppgifter för direkt banköverföring har lagts till" msgid "Please enter an account number or IBAN" msgstr "Ange ett kontonummer eller IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Endast administratörer och butikschefer kan lägga beställningar under den kostnadsfria provperioden. Om du är redo att ta emot betalningar från kunder, {{link}}uppgradera till ett betalpaket{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Offline-betalningsmetoder" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Se mer" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Prova någon av de alternativa betalningsleverantörerna." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Andra betalningsleverantörer" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Ge dina kunder ytterligare valmöjligheter rörande hur de kan betala." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Ytterligare betalningsalternativ" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "För att göra dig redo att ta emot onlinebetalningar" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Välj en betalningsleverantör" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Det var ett fel att ansluta till WooCommerce Payments. Försök igen eller anslut senare i butiksinställningarna." @@ -132,245 +550,258 @@ msgstr "Genom att samtycka till att dela icke-känsliga {{link}}användardata{{/ msgid "Help us build a better WooCommerce Payments experience" msgstr "Hjälp oss att bygga en bättre WooCommerce Payments-upplevelse" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Genom att använda WooCommerce Payments samtycker du till våra {{tosLink}}användarvillkor{{/tosLink}} och intygar att du har läst vår {{privacyLink}}integritetspolicy{{/privacyLink}} " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Gör dig redo att ta emot betalningar" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Ja, räkna med mig!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Bygg ett bättre WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Det gick inte att uppdatera dina preferenser" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Konfigurera ditt %(title)s-konto" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Installera %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Du kan hantera inställningarna för denna betalmodul genom att klicka på knappen nedan" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Anslut" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Fortsätt" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Det var ett problem att spara dina betalningsinställningar" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s har konfigurerats" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Rekommenderad" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Lokal partner" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Slutför inställning" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Aktivera" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lansera ändå" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Några saker att kontrollera innan du lanserar din butik" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Innan du lanserar" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Välj en adress för din nya webbplats eller överför en domän som du redan äger." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Lista produkter" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Börja sälja genom att lägga till produkter eller tjänster i din butik. Skapa dina produkter manuellt eller importera dem från en befintlig butik." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Lista dina produkter" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Ge dina kunder ett enkelt och bekvämt sätt att betala. Konfigurera en (eller flera) av våra snabba och säkra betalningsmetoder för onlinebetalningar eller personliga betalningar." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Få betalt" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Du kan alltid återställa detta under Inställningar." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Det är dags att fira – du är redo att lansera din butik! Woo!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Är du redo att lansera din butik?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Har du ändrat dig? Du kan göra din butik privat igen genom att uppdatera dina integritetsinställningar." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Visa din butik" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Grattis till lanseringen av din WooCommerce-butik. Ta en stund att fira och dela nyheterna!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! Du gjorde det!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Lanserar din butik" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Kopierad" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Avvisa den här informationsbannern om en kostnadsfri provperiod." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Det här är din kostnadsfria provperiodsbutik där du kan börja utforska vad som är tillgängligt. För mer information om den kostnadsfria provperioden, klicka på \"Läs mer\"." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Det var ett problem att spara din butiksplats" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:49 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Genom att klicka på \"Testa betalningar\" samtycker du till {{tosLink}}användarvillkoren{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:42 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Hantera dina betalningar med ett enkelt allt-i-ett-alternativ. Verifiera dina företagsuppgifter för att börja testa transaktioner med WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:71 msgid "Test payments" msgstr "Testa betalningar" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Ge dina kunder ett enkelt och bekvämt sätt att betala. Konfigurera och testa några av våra snabba och säkra betalningsmetoder för onlinebetalningar eller personliga betalningar." -#: src/free-trial/fills/task-headers/payments.js:34 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:36 msgid "It’s time to test payments" msgstr "Det är dags att testa betalningar." -#: src/free-trial/fills/task-headers/payments.js:22 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:24 msgid "Payment illustration" msgstr "Betalningsillustration" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Du är redo att börja testa funktionerna och fördelarna med WooCommerce Payments." -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Du är bara några steg bort från att vara redo att ta emot betalningar." -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Insättningar är inte tillgängliga under provperioden. För att börja hantera riktiga transaktioner och ta emot betalningar och utbetalningar, uppgradera till ett betalt paket." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Insättningar är inte tillgängliga under provperioden. För att börja bearbeta riktiga transaktioner och ta emot betalningar och utbetalningar, uppgradera till ett betalt paket." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Endast administratörer och butikschefer kan lägga beställningar under den kostnadsfria provperioden. Om du är redo att ta emot betalningar från kunder, uppgradera till ett betalpaket." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Endast administratörer och butikschefer kan lägga beställningar under gratis provperiod. Om du är redo att ta emot betalningar från kunder, uppgradera till ett betalt paket." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Tips, tricks och e-handelsinspiration från vår blogg." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "Bli inspirerad" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Upptäck samlingar" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Kom igång snabbt med våra kurerade utökningssamlingar." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Kurerade samlingar" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Lägg till extra funktioner och funktionalitet eller integrera med andra plattformar och verktyg." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Anpassa och utöka" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Gör mer med din butik – lägg till utökningar" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Bläddra bland utökningar" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Anpassa din butik så att den fungerar perfekt för ditt företag, med Woo-utökningar. Uppgradera till ett betalpaket för att få tillgång till hundratals verktyg och funktioner som kan hjälpa dig att uppnå dina affärsmål. Är du nyfiken på vad som är tillgängligt? Titta igenom vår marknadsplats för utökningar." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "" + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Ta din butik till nästa nivå, med utökningar" @@ -384,8 +815,8 @@ msgstr "Det är dags att fira! Redo att lansera din butik?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lansera din butik" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "Du har redan lanserat din butik." #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minuter" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "Domän" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Lägg till en domän" @@ -428,18 +861,16 @@ msgstr "För att ge dina kunder en smidig kassaupplevelse har vi gjort din butik msgid "Meet our new, customizable checkout" msgstr "Möt vår nya anpassningsbara kassa" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" -"\t\t" -msgstr "" -"\n" -"\t\t\tFör tillfället är du den enda som kan se din butik. För att göra din butik tillgänglig för alla, uppgradera till ett betalpaket.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" +msgstr "\n" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Uppgradera nu" @@ -451,15 +882,15 @@ msgstr "Under provperioden kan du bara lägga testbeställningar. För att ta em msgid "Start selling to everyone" msgstr "Börja sälja till alla" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:339 msgid "My Account" msgstr "Mitt konto" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:337 msgid "Contact" msgstr "Kontakt" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:328 msgid "Home" msgstr "Hem" @@ -471,7 +902,8 @@ msgstr "Denna webbplats har redan lanserats" msgid "You don't have permissions to launch this site" msgstr "Du har inte behörighet att lansera denna webbplats." -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Endast administratörer och butikschefer kan lägga beställningar under den kostnadsfria provperioden. Om du är redo att ta emot betalningar från kunder, uppgradera till ett betalpaket." @@ -492,61 +924,61 @@ msgstr "Din beställning kunde inte läggas. Kassafunktionen är för närvarand msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Den här butiken är inte redo att ta emot beställningar. Kassafunktionen är för närvarande endast aktiverad för förhandsgranskning." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack Stats" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Jetpack-status" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-skräppost" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Upptäck" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Hantera" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Utökningar" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Kunder" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Äldre rapporter" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "WooCommerce-status" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "WooCommerce-inställningar" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Beställningar" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Min startsida" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Feedback" @@ -554,18 +986,26 @@ msgstr "Feedback" msgid "Save big with WooCommerce Payments" msgstr "Spara stort med WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Nej tack" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Kom igång" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navigation" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1047,7 @@ msgstr "Beställningsuppgifter skickas manuellt till kunden." msgid "Invalid order ID." msgstr "Ogiltigt beställning-ID." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1182,21 @@ msgstr "WooCommerce kan inte inaktiveras på eCommerce-paketet." msgid "Store" msgstr "Butik" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Statistik" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Ort" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Fortsätt" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Lär dig mer" @@ -765,6 +1209,11 @@ msgstr "Utökningar för WooCommerce" msgid "Extensions %s" msgstr "Utökningar %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Drivs med %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Byggd med Storefront och WordPress.com" diff --git a/languages/wc-calypso-bridge.pot b/languages/wc-calypso-bridge.pot index c1a659de..a74c8d5e 100644 --- a/languages/wc-calypso-bridge.pot +++ b/languages/wc-calypso-bridge.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the WooCommerce Calypso Bridge plugin. msgid "" msgstr "" -"Project-Id-Version: WooCommerce Calypso Bridge 2.2.12\n" +"Project-Id-Version: WooCommerce Calypso Bridge 2.2.13\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-calypso-bridge\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: 2023-08-30T09:21:44+00:00\n" +"POT-Creation-Date: 2023-09-12T11:25:33+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.8.1\n" @@ -149,15 +149,15 @@ msgstr "" msgid "This site has already been launched" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:328 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:337 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:339 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "" @@ -556,13 +556,13 @@ msgstr "" #: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "" #: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "" @@ -573,17 +573,17 @@ msgstr "" #: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "" #: build/53.js:1 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "" #: build/53.js:1 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "" From 4f70fe7b1a2885ce7845b4099a73a2869db1379d Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Tue, 12 Sep 2023 14:28:31 +0300 Subject: [PATCH 39/81] Bump versions to 2.2.13 --- includes/class-wc-calypso-bridge-setup.php | 2 +- readme.txt | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index 72bc4c3f..926ee954 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version x.x.x + * @version 2.2.13 */ use Automattic\WooCommerce\Admin\WCAdminHelper; diff --git a/readme.txt b/readme.txt index 7d6ad88f..277636f0 100644 --- a/readme.txt +++ b/readme.txt @@ -23,12 +23,9 @@ This section describes how to install the plugin and get it working. == Changelog == = 2.2.13 = -* _Enter your changes here_ - -= unreleased = * Display a server based WooPayments setup task header when an incentive is available #1294 -* Introduce additional logging in the page creation one time job #xxx -* Delete all created pages (except an allow-list) and then recreate WooCommerce ones, to avoid ending up with duplicates #xxx +* Introduce additional logging in the page creation one time job #1296 +* Delete all created pages (except an allow-list) and then recreate WooCommerce ones, to avoid ending up with duplicates #1296 = 2.2.12 = * Improve handling footer credits for Woo Express plans #1286 From 5f897eb84f313518ef67e8054b5e3e27c9485ff3 Mon Sep 17 00:00:00 2001 From: Chris Lilitsas <1105590+xristos3490@users.noreply.github.com> Date: Wed, 13 Sep 2023 19:37:08 +0300 Subject: [PATCH 40/81] Change copy and illustration --- assets/css/ecommerce.css | 15 +++- .../plugins-landing-page-hero-desktop.png | Bin 0 -> 241830 bytes src/plugins/index.tsx | 80 +++++++----------- 3 files changed, 44 insertions(+), 51 deletions(-) create mode 100644 assets/images/plugins-landing-page-hero-desktop.png diff --git a/assets/css/ecommerce.css b/assets/css/ecommerce.css index 73cd174f..4b82d4fd 100644 --- a/assets/css/ecommerce.css +++ b/assets/css/ecommerce.css @@ -84,6 +84,7 @@ body.woocommerce_page_wc-bridge-landing-page #screen-meta-links { .wc-bridge-landing-page__hero-image-container img { width: 80%; margin-top: -60px; + max-width: 791px; } .wc-bridge-landing-page__sub-title { @@ -110,8 +111,7 @@ body.woocommerce_page_wc-bridge-landing-page #screen-meta-links { } .wc-bridge-landing-page__features-grid__item__icon { - text-align: center; - background: var( --color-accent-5 ); + background: rgba(var(--wp-admin-theme-color--rgb), 0.1); width: 64px; height: 64px; border-radius: 50%; @@ -146,6 +146,15 @@ body.woocommerce_page_wc-bridge-landing-page #screen-meta-links { color: var( --wp-admin-theme-color ); text-decoration: underline; } +.wc-bridge-landing-page__features-grid.wc-bridge-landing-page__features-grid--align-left { + text-align: left; +} +.wc-bridge-landing-page__features-grid.wc-bridge-landing-page__features-grid--align-left .wc-bridge-landing-page__features-grid__item__icon { + margin: 0; +} +.wc-bridge-landing-page__features-grid.wc-bridge-landing-page__features-grid--align-left .wc-bridge-landing-page__features-grid__item a { + padding-left: 0; +} body.woocommerce_page_wc-bridge .wc-bridge-wrap .storefront { display: none; @@ -194,7 +203,7 @@ body.woocommerce_page_wc-bridge .wc-bridge-wrap .storefront { } .wc-bridge-landing-page__features-grid { flex-wrap: wrap; - margin: 32px auto 0; + margin: 64px auto 0; } .wc-bridge-landing-page__features-grid__item { width: 100%; diff --git a/assets/images/plugins-landing-page-hero-desktop.png b/assets/images/plugins-landing-page-hero-desktop.png new file mode 100644 index 0000000000000000000000000000000000000000..f77a01e231fa74c310eb037fe53f3cbad75691ca GIT binary patch literal 241830 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�J;zrNVX$G?;?wn@9##dv} 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 {

{ __( - 'Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?', + 'Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?', 'wc-calypso-bridge' ) }

@@ -72,7 +72,7 @@ const PluginsPage = () => { { { { { /> -
+
-

- { __( 'Transform WordPress', 'wc-calypso-bridge' ) } + {__( 'Customize your website', 'wc-calypso-bridge' ) }

{ __( - 'Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins.', + 'From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need.', 'wc-calypso-bridge' ) }

@@ -140,32 +136,27 @@ const PluginsPage = () => {
-

{ __( 'Extend your store', 'wc-calypso-bridge' ) }

{ __( - 'Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team.', + 'Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store.', 'wc-calypso-bridge' ) }

@@ -187,44 +178,37 @@ const PluginsPage = () => {
From 8c72c32953f247d35e9021370621a34a7aefe43c Mon Sep 17 00:00:00 2001 From: Chris Lilitsas <1105590+xristos3490@users.noreply.github.com> Date: Thu, 14 Sep 2023 11:20:10 +0300 Subject: [PATCH 41/81] Fix layout issues with WC Admin pages --- assets/css/ecommerce.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/assets/css/ecommerce.css b/assets/css/ecommerce.css index 4b82d4fd..edf55521 100644 --- a/assets/css/ecommerce.css +++ b/assets/css/ecommerce.css @@ -31,6 +31,13 @@ body.woocommerce_page_wc-bridge-landing-page #screen-meta-links { display: none; } +body.woocommerce_page_wc-bridge-landing-page .woocommerce-layout .woocommerce-layout__main { + padding-right: 0; +} +body.woocommerce_page_wc-bridge-landing-page .woocommerce-layout__primary { + margin: 0; +} + .wc-bridge-landing-page { background: white; color: #2F2F2F; /* gray-80 */ @@ -105,6 +112,10 @@ body.woocommerce_page_wc-bridge-landing-page #screen-meta-links { text-align: center; } +body.woocommerce_page_wc-bridge-landing-page.woocommerce_page_wc-admin #wpbody-content { + padding-bottom: 64px; +} + .wc-bridge-landing-page__features-grid__item { width: 33%; padding: 0 35px; From c488668727ad353105351e3f60e55b6e353f674a Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 14 Sep 2023 13:41:13 +0300 Subject: [PATCH 42/81] Update readme --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index 277636f0..3c5e2031 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += unreleased = +* Updated plugins landing page (free trial) #xxx + = 2.2.13 = * Display a server based WooPayments setup task header when an incentive is available #1294 * Introduce additional logging in the page creation one time job #1296 From 179a76b89ccf73f1a0210a1d63b8f51869f1013c Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 14 Sep 2023 16:32:31 +0300 Subject: [PATCH 43/81] Investigating if shop pages are created due to reading options from DB --- includes/class-wc-calypso-bridge-setup.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index 926ee954..4fce5fb4 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -313,10 +313,11 @@ public function woocommerce_create_pages_callback() { } } - foreach ( [ 'shop', 'cart', 'myaccount', 'checkout', 'refund_returns' ] as $page ) { - $value = get_option( "woocommerce_{$page}_page_id" ); - $this->write_to_log( $operation, 'getting option woocommerce_' . $page . '_page_id : ' . $value ); - } + // Commenting this out, to see if this was the reason that the pages are now created. +// foreach ( [ 'shop', 'cart', 'myaccount', 'checkout', 'refund_returns' ] as $page ) { +// $value = get_option( "woocommerce_{$page}_page_id" ); +// $this->write_to_log( $operation, 'getting option woocommerce_' . $page . '_page_id : ' . $value ); +// } // Delete the following note, so it can be recreated with the correct refund page ID. if ( class_exists( 'Automattic\WooCommerce\Admin\Notes\Notes' ) ) { From b6b1ecaf35e9beaeb13b9565afe24c4f9b19f244 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 14 Sep 2023 16:37:22 +0300 Subject: [PATCH 44/81] Bump version to 2.2.14 --- composer.json | 2 +- wc-calypso-bridge.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 172044d7..bcdbf2a4 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "automattic/wc-calypso-bridge", - "version": "v2.2.13", + "version": "v2.2.14", "autoload": { "files": [ "wc-calypso-bridge.php" diff --git a/wc-calypso-bridge.php b/wc-calypso-bridge.php index 575925da..25098238 100644 --- a/wc-calypso-bridge.php +++ b/wc-calypso-bridge.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Calypso Bridge * Plugin URI: https://wordpress.com/ * Description: A feature plugin to provide ux enhancements for users of Store on WordPress.com. - * Version: 2.2.13 + * Version: 2.2.14 * Author: Automattic * Author URI: https://wordpress.com/ * Requires at least: 4.4 @@ -47,7 +47,7 @@ define( 'WC_CALYPSO_BRIDGE_PLUGIN_PATH', dirname( __FILE__ ) ); } if ( ! defined( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION' ) ) { - define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.13' ); + define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.14' ); } if ( ! defined( 'WC_MIN_VERSION' ) ) { define( 'WC_MIN_VERSION', '7.3' ); From 73ddcbeff5449a0dfe9668656f8b8c526510f188 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 14 Sep 2023 16:37:30 +0300 Subject: [PATCH 45/81] Added version 2.2.14 to the changelog --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index 3c5e2031..febce6bf 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += 2.2.14 = +* _Enter your changes here_ + = unreleased = * Updated plugins landing page (free trial) #xxx From 84733d0f7b1b30db16b936ad903c684bc1fdf6f0 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 14 Sep 2023 16:37:43 +0300 Subject: [PATCH 46/81] Add new translation files --- languages/wc-calypso-bridge-ar.mo | Bin 26478 -> 43045 bytes languages/wc-calypso-bridge-ar.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-de_DE.mo | Bin 23370 -> 37911 bytes languages/wc-calypso-bridge-de_DE.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-fr_BE.mo | Bin 23582 -> 38142 bytes languages/wc-calypso-bridge-fr_BE.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-fr_CA.mo | Bin 23569 -> 38123 bytes languages/wc-calypso-bridge-fr_CA.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-fr_FR.mo | Bin 23541 -> 38109 bytes languages/wc-calypso-bridge-fr_FR.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-id_ID.mo | Bin 21719 -> 35151 bytes languages/wc-calypso-bridge-id_ID.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-it_IT.mo | Bin 22966 -> 37089 bytes languages/wc-calypso-bridge-it_IT.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-ja.mo | Bin 24347 -> 39486 bytes languages/wc-calypso-bridge-ja.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-ko_KR.mo | Bin 22873 -> 36968 bytes languages/wc-calypso-bridge-ko_KR.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-pt_BR.mo | Bin 22554 -> 36496 bytes languages/wc-calypso-bridge-pt_BR.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-ru_RU.mo | Bin 29706 -> 48014 bytes languages/wc-calypso-bridge-ru_RU.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-sv_SE.mo | Bin 27848 -> 35862 bytes languages/wc-calypso-bridge-sv_SE.po | 93 ++-- languages/wc-calypso-bridge-tr_TR.mo | Bin 22640 -> 36991 bytes languages/wc-calypso-bridge-tr_TR.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-zh_CN.mo | Bin 20557 -> 33059 bytes languages/wc-calypso-bridge-zh_CN.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-zh_SG.mo | Bin 20557 -> 33059 bytes languages/wc-calypso-bridge-zh_SG.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge-zh_TW.mo | Bin 20333 -> 33030 bytes languages/wc-calypso-bridge-zh_TW.po | 664 ++++++++++++++++++++++----- languages/wc-calypso-bridge.pot | 25 +- 33 files changed, 8432 insertions(+), 1646 deletions(-) diff --git a/languages/wc-calypso-bridge-ar.mo b/languages/wc-calypso-bridge-ar.mo index 7bc71fdd0e451d402f584a3d9c65fc6694f7673f..afdc5e67d1fadb11045c78c41ec61b5b9069371a 100644 GIT binary patch literal 43045 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 delta 4977 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 diff --git a/languages/wc-calypso-bridge-ar.po b/languages/wc-calypso-bridge-ar.po index 2ccd0bf7..f2a918d3 100644 --- a/languages/wc-calypso-bridge-ar.po +++ b/languages/wc-calypso-bridge-ar.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-12 09:54:03+0000\n" +"PO-Revision-Date: 2023-09-13 15:54:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: ar\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "هل يتعذر العثور على الإضافة المناسبة لاحتياجاتك؟ بدءًا من عمليات تكامل الخدمات ووصولاً إلى التخصيصات الغريبة، يمكن لفريق الخبراء لدينا مساعدتك على إنجاز المهمة بشكل سليم." + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "القيام بذلك بطريقتك" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "اكتشاف الامتدادات" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "هل تبحث عن مزيد من طرق الدفع والشحن؟ هل تريد إنشاء موقع عضوية أو قبول التبرعات؟ اختر من ضمن مئات الامتدادات التي اختارها فريقنا بعناية." + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "توسيع متجرك" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "اجعل ووردبريس يفعل أي شيء. أنشئ متجرًا أو استضف حلقة بودكاست أو اعرض متجرك. تتحكم في أكثر من 550000 إضافة." + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "تحويل ووردبريس" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "تصفُّح الإضافات" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "حوّل موقعك على ووردبريس إلى أي شيء تضعه في ذهنك. قم بالترقية إلى خطة مدفوعة وتمتع بالوصول إلى آلاف من الإضافات المجانية والمدفوعة. هل تشعر بالفضول لمعرفة ما يُعد ممكنًا؟" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "جعل أي شيء قابلاً للحدوث باستخدام الإضافات" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "احصل على ميزات مُحسَّنة وإصلاحات أسرع عن طريق مشاركة البيانات غير الحسَّاسة من خلال ميزة {{link}}تتبُّع الاستخدام{{/link}} التي توضِّح لنا كيفية استخدام WooCommerce. لا يتم تتبُّع أي بيانات شخصية أو تخزينها." + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "إنشاء بطاقات هدايا رقمية" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "ابدأ بيع بطاقات الهدايا الرقمية واقبلها لزيادة ولاء العملاء وتحقيق مزيد من الإيرادات وتقديم عملاء جدد إلى متجرك." + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "زيادة ولاء العملاء باستخدام بطاقات الهدايا" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "اعرض منتجاتك أمام ملايين من المتسوقين المشاركين الذين يتصفحون منصات TikTok وبينتريست وMeta مع الإعلانات الاجتماعية." + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "الوصول إلى مزيد من العملاء عبر شبكات التواصل الاجتماعي" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "يمكنك الوصول إلى المتسوقين النشطين عبر غوغل من خلال قوائم المنتجات والإعلانات التي يمكنك إنشاؤها وإدارتها مباشرةً من لوحة التحكم لديك." + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "الإعلان عن منتجاتك على غوغل" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "تجربة AutomateWoo" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "زيادة المبيعات وبناء الولاء من خلال الرسائل التسويقية الآلية التي تستجيب لبيانات الشراء الخاصة بالعميل." + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "أتمتة التسويق الخاص بك" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "اكتشاف أدوات التسويق المدمجة لدينا للوصول إلى مزيد من العملاء وتعزيز المبيعات" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "تطوير أعمالك باستخدام مئات من الامتدادات" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "يمكنك الوصول إلى مزيد من العملاء وتطوير أعمالك باستخدام أدوات التسويق والإعلان المدمجة لدينا. قم بالترقية إلى خطة مدفوعة لإطلاق العنان لأدوات التسويق الفعالة لدينا، وابدأ بتطوير أعمالك اليوم!" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "الاستعداد لتطوير أعمالك" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "رسم توضيحي للمظهر" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "مثال توضيحي للمنتجات" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "يبدو أن كل شيء رائع، واصل الأمر!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "Woo! لقد وصلنا إلى الخطوة الأخيرة! أحسنت!" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "عدد قليل فقط من المهام لوضع علامة عليها!" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "مرحبًا بك في متجر Woo Express الخاص بك" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "مرحبًا بكم في %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "⁦%1$d⁩ من أصل ⁦%2$d⁩ مكتمل." + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "أصبحت مستعدًا لتبدأ بالبيع! اتبع هذه الخطوات لإعداد متجر الاختبار الخاص بك." + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "إخفاء قائمة الإعداد" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "تستوفي عملية إعداد المتجر الاحتياجات." + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "يسهل إكمال إعداد المتجر." + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "نقدِّر الملاحظات التي تقدِّمها!" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "كيف كانت تجربتك؟" + +#: build/index.js:1 +msgid "Hide this" +msgstr "إخفاء هذا" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "إظهار قائمة مهام الإعداد" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "خيارات قائمة المهام" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "تهانينا! خصص لحظة للاحتفال. وبمجرد أن تصبح مستعدًا لبدء متجرك، كل ما عليك فعله هو الترقية إلى خطة مدفوعة. سيؤدي ذلك أيضًا إلى فتح المهمتَين المقبلتَين في قائمة المهام." + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "Woohoo! تم إعداد متجرك التجريبي!" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "أحسنتَ صنعًا! عنصر واحد أقل في قائمة المهام الخاصة بك ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "كانت هناك مشكلة في أثناء إعداد الضرائب التلقائية. ترجى المحاولة مجددًا." + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "في أثناء فترة الإصدار التجريبي المجاني، يمكنك تكوين إعدادات ضرائب المبيعات، ولكن لا يمكنك تحصيلها. {{br/}}لبدء بيع المنتجات، {{link}}قم بالترقية الآن{{/link}}." + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "أنا لا أتقاضى ضريبة المبيعات" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "إعداد الضرائب يدويًا" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "اختيار شريك ضريبي" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "يمكن أن تُنفِّذ خدمات WooCommerce Tax عملياتك الحسابية الخاصة بضرائب المبيعات تلقائيًا من أجلك." + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "أتمتة الضرائب" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "أتمتة الضرائب" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "التوجُّه إلى شاشة إعدادات نسبة الضريبة لتكوين نسب الضرائب الخاصة بك" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "تكوين نسب الضرائب" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "العنوان الذي تُدير أعمالك من خلاله" + +#: build/index.js:1 +msgid "Set store location" +msgstr "تعيين موقع المتجر" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "يرجى تحديد دولة / منطقة" + +#: build/index.js:1 +msgid "Post code" +msgstr "الرمز البريدي" + +#: build/index.js:1 +msgid "Address" +msgstr "العنوان" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "الدولة / المنطقة" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "يعني النقر على \"تكوين\" أنَّك تقوم بتمكين نسب الضرائب والعمليات الحسابية لها. يتوافر المزيد من المعلومات {{link}}هنا{{/link}}." + +#: build/index.js:1 +msgid "Configure" +msgstr "ضبط" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "متابعة الإعداد" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "يعني تثبيت ضريبة WooCommerce وJetpack أنك توافق على {{link}}شروط الخدمة{{/link}}." + +#: build/index.js:1 +msgid "100% free" +msgstr "مجاني بنسبة 100%" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "مدعوم من {{link}}Jetpack{{/link}}" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "{{strong}}الامتثال برابطة{{/strong}} اقتصادية واحدة" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "حساب ضريبة المبيعات في الوقت الفعلي" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "الأفضل للمخازن الجديدة" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "ضريبة WooCommerce" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "الحصول على مزيد من المبيعات" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "الترقية إلى خطة مدفوعة لفتح مزيد من الميزات وبدء البيع" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "تستخدم حاليًا إصدارًا تجريبيًا مجانية! للوصول إلى مجموعة كاملة من الميزات، ترجى الترقية إلى خطة مدفوعة." + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "مرحبًا بك في الرسم التوضيحي 1 للتنقل في النموذج" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "مرحبًا بك في الرسم التوضيحي 2 للتنقل في النموذج" + +#: build/index.js:1 +msgid "Setup required" +msgstr "يلزم الإعداد" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "اربح الإيرادات المتكررة وقم بإدارتها واحصل على ودائع تلقائية في حسابك البنكي المحدَّد." + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "يمكنك البيع للأسواق الدولية وقبول أكثر من 135 عملة باستخدام طرق الدفع المحلية." + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "وفّر لعملائك طريقتهم المفضلة للدفع، بما في ذلك مدفوعات بطاقات الخصم والائتمان وApple Pay وSofort وSEPA وiDeal وأكثر من ذلك بكثير." + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "تتضمن طرق الدفع المقبولة ما يأتي:" + +#: build/index.js:1 +msgid "& more." +msgstr "وأكثر." + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "تصفح الامتدادات" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "أضف منتجاتك. تعرض منتجاتك أو خدماتك وتستعد لبدء البيع - أضف معلومات منتجك وصوره وأوصافه." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "قم باستيراد منتجاتك. تعرض منتجاتك أو خدماتك وتستعد لبدء البيع - قم باستيراد معلومات منتجك الموجودة وصوره وأوصافه." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "إضافة منتجات" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "استيراد المنتجات" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "إضافة منتجاتك" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "استيراد منتجاتك" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "اختر قالبًا" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "اختر قالبًا يناسب شكل علامتك التجارية ومظهرها، ثم اجعله خاصًا بك. غيِّر الألوان وأضف شعارك وأنشئ الصفحات." + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "اختر قالبك" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "إضافات" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "استعادة" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "\"الأشياء التي يجب القيام بها لاحقًا\"" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "إظهار قائمة المهام" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "قم باستعادة رؤية قائمة المهام \"الأشياء التي يجب القيام بها لاحقًا\"." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "قم باستعادة رؤية قائمة مهام الإعداد الأولي." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "استخدم هذه الخيارات لاستعادة رؤية قوائم مهمة الإعداد في WooCommerce Home." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "الإعداد" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "تجربة تنقل مخصصة تم تحسينها للبيع." + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "أصبح تنفيذ المهام من خلال WooCommerce أسرع. تعرّف على المزيد حول التنقل الجديد لدينا - أو استمر واستكشف الأمر بمفردك." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "التحرك أسرع من خلال التنقل الجديد لدينا" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "احصل على النصائح والرؤى حول أداء متجرك في كل مرة ترجع فيها إلى لوحة تحكم ووردبريس.كوم الخاصة بك." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "التعرّف على صفحتك الرئيسية الجديدة" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "اختر عنوان موقع جديدًا على الويب لمتجرك أو انقل واحدًا تملكه بالفعل. " -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "إضافة رسم توضيحي خاص بالنطاق" @@ -79,43 +487,53 @@ msgstr "تمت إضافة تفاصيل التحويل البنكي المباش msgid "Please enter an account number or IBAN" msgstr "يرجى إدخال رقم حساب أو رقم الحساب المصرفي الدولي (IBAN)" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "لا يمكن سوى للمسؤولين ومديري المتاجر تقديم الطلبات في أثناء الإصدار التجريبي المجاني. إذا كنت مستعدًا لقبول المدفوعات من العملاء، {{link}}فقم بالترقية إلى خطة مدفوعة{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "طرق دفع من دون اتصال بالإنترنت" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "مشاهدة المزيد" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "قم بتجربة أحد مزوِّدي الدفع البديلة." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "مزوِّدو الدفع الآخرين" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "امنح عملائك اختيارات إضافية للدفع." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "خيارات دفع إضافية" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "للاستعداد لقبول المدفوعات عبر الإنترنت" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "اختيار مزوِّد الدفع" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "حدث خطأ في أثناء الاتصال بمدفوعات WooCommerce. يُرجى المحاولة مرة أخرى أو الاتصال في وقت لاحق في إعدادات المتجر." @@ -132,245 +550,258 @@ msgstr "تعني الموافقة على مشاركة {{link}}بيانات ال msgid "Help us build a better WooCommerce Payments experience" msgstr "ساعدنا على إنشاء تجربة أفضل للمدفوعات في WooCommerce" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "يعني استخدام WooCommerce Payments أنك توافق على الالتزام {{tosLink}}بشروط الخدمة التي نقرِّها{{/tosLink}}، والاعتراف بأنك قرأت {{privacyLink}}سياسة الخصوصية الخاصة بنا{{/privacyLink}} " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "الاستعداد لقبول المدفوعات" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "أجل، يمكنك الاعتماد عليّ!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "إنشاء WooCommerce بشكل أفضل" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "حدثت مشكلة أثناء تحديث تفضيلاتك" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "تكوين حسابك على %(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "تنصيب %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "يمكنك تغيير إعدادات بوابة الدفع هذه عن طريق النقر على الزر أدناه." +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "ربط" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "تقدم" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "حدثت مشكلة في أثناء حفظ إعدادات الدفع الخاصة بك" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "تم تكوين %s بنجاح" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "موصى به" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "الشريك المحلي" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "إنهاء التنصيب" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "تفعيل" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "البدء على أي حال" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "بضعة أشياء يجب التحقق منها قبل بدء متجرك" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "قبل أن تبدأ" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "اختر عنوانًا لموقع جديد على الويب أو انقل نطاقًا تملكه بالفعل. " -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "سرد المنتجات" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "ابدأ البيع عن طريق إضافة المنتجات أو الخدمات إلى متجرك. أنشئ منتجاتك يدويًا، أو استوردها من متجر موجود." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "سرد منتجاتك" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "امنح عملاءك طريقة سهلة ومريحة للدفع! قم بإعداد واحدة (أو أكثر!) من طرق الدفع عبر الإنترنت أو الشخصية السريعة والآمنة التي نوفرها. " -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "تحصيل الأموال" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "يمكنك دومًا التراجع عن ذلك ضمن الإعدادات." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "حان وقت الاحتفال - أصبحت جاهزًا لبدء متجرك! Woo!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "هل أنت مستعد لبدء متجرك؟" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "هل غيَّرت رأيك؟ يمكنك جعل متجرك خاصًا مجددًا عن طريق تحديث إعدادات الخصوصية لديك." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "عرض متجرك" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "تهانينا على بدء متجر WooCommerce الخاص بك. خصص بعض الوقت للاحتفال ومشاركة الأخبار!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! لقد فعلتها!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "بدء متجرك" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "تم النسخ" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "ارفض هذا الشعار المعلوماتي للإصدار التجريبي المجاني." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "هذا هو متجر اختبار الإصدار التجريبي المجاني الخاص بك حيث يمكنك بدء استكشاف ما هو متوافر! لمعرفة المزيد حول الإصدار التجريبي، انقر على \"معرفة المزيد\"." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "حدثت مشكلة أثناء حفظ موقع متجرك" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "يعني النقر على \"اختبار المدفوعات\" أنك توافق على {{tosLink}}شروط الخدمة{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "ادعم مدفوعاتك بخيار بسيط وشامل. تحقق من تفاصيل أعمالك لبدء اختبار المعاملات باستخدام مدفوعات WooCommerce." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "اختبار المدفوعات" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "امنح عملاءك طريقة سهلة ومريحة للدفع! قم بإعداد بعض طرق الدفع عبر الإنترنت أو الشخصية السريعة والآمنة التي نوفرها، واختبارها. " -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "حان وقت اختبار المدفوعات" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "مثال توضيحي لعملية الدفع" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "أصبحت جاهزًا لبدء اختبار ميزات مدفوعات WooCommerce ومزاياه" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "إنك على بُعد خطوات من الاستعداد للدفع" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "الودائع غير متوافرة في أثناء الفترة التجريبية. لبدء معالجة المعاملات الحقيقية وتلقي المدفوعات والمبالغ، قم بالترقية إلى خطة مدفوعة." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "الودائع غير متوافرة في أثناء الفترة التجريبية. لبدء معالجة المعاملات الحقيقية وتلقي المدفوعات والمبالغ، قم بالترقية إلى خطة مدفوعة." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "لا يمكن سوى للمسؤولين ومديري المتاجر تقديم الطلبات في أثناء الإصدار التجريبي المجاني. إذا كنت مستعدًا لقبول المدفوعات من العملاء، فقم بالترقية إلى خطة مدفوعة." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "لا يمكن سوى للمسؤولين ومديري المتاجر تقديم الطلبات في أثناء الإصدار التجريبي المجاني. إذا كنت مستعدًا لقبول المدفوعات من العملاء، فقم بالترقية إلى خطة مدفوعة." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "التلميحات والحيل وعمليات إلهام التجارة الإلكترونية الواردة من مدونتنا." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "الحصول على الإلهام" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "اكتشاف المجموعات" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "ابدأ بسرعة من خلال مجموعات الامتدادات المنسقة لدينا." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "المجموعات المنسقة" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "أضف ميزات ووظائف إضافية، أو حقق التكامل مع المنصات والأدوات الأخرى. " -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "التخصيص والتوسعة" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "فعل المزيد من خلال متجرك - إضافة الامتدادات" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "تصفح الامتدادات" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "خصص متجرك لكي يعمل بشكل مثالي مع عملك من خلال امتدادات Woo. قم بالترقية إلى خطة مدفوعة للحصول على إمكانية الوصول إلى مئات من الأدوات والميزات التي يمكن أن تساعدك على تحقيق أهداف الأعمال التي ترجوها. هل تشعر بالفضول تجاه ما هو متوافر؟ تصفح سوق الامتدادات الخاصة بنا." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "خصص متجرك لكي يعمل بشكل مثالي مع عملك من خلال WooCommerce Extensions. قم بالترقية إلى خطة مدفوعة للحصول على إمكانية الوصول إلى مئات من الأدوات والميزات التي يمكن أن تساعدك على تحقيق أهدافك. هل تشعر بالفضول تجاه ما هو متوافر؟ تصفَّح سوق الامتدادات الخاصة بنا." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "انقل متجرك إلى المستوى التالي إلى جانب الامتدادات." @@ -384,8 +815,8 @@ msgstr "وقت الاحتفال! هل أنت مستعد لبدء متجرك؟" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "أطلق متجرك" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "هل بدأت بالفعل متجرك" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "دقيقتان" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "نطاق" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "إضافة نطاق" @@ -428,18 +861,19 @@ msgstr "لتقديم تجربة سداد سلسة إلى المتسوقين، ز msgid "Meet our new, customizable checkout" msgstr "التعرّف على ميزة السداد الجديدة القابلة للتخصيص لدينا" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tفي الوقت الحالي، أنت الشخص الذي يمكنه رؤية متجرك. لجعل متجرك متوافرًا للجميع، ترجى الترقية إلى خطة مدفوعة.\n" +"\t\t\tفي الوقت الحالي، أنت الشخص الذي يمكنه رؤية متجرك. لجعل متجرك متوافرًا للجميع، ترجى .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "بادر بالترقية الآن" @@ -451,15 +885,15 @@ msgstr "في أثناء الفترة التجريبية، يمكنك تقديم msgid "Start selling to everyone" msgstr "بدء البيع للجميع" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "حسابي" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "جهة الاتصال" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "الصفحة الرئيسية" @@ -471,7 +905,8 @@ msgstr "تم بدء هذا الموقع بالفعل" msgid "You don't have permissions to launch this site" msgstr "ليست لديك الصلاحيات اللازمة لبدء هذا الموقع" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "لا يمكن سوى للمسؤولين ومديري المتاجر تقديم الطلبات في أثناء الإصدار التجريبي المجاني. إذا كنت مستعدًا لقبول المدفوعات من العملاء، فقم بالترقية إلى خطة مدفوعة." @@ -492,61 +927,61 @@ msgstr "يتعذر تقديم طلبك. تم تمكين وظيفة السداد msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "هذا المتجر غير جاهز لقبول الطلبات. تم تمكين وظيفة السداد حاليًا لأغراض المعاينة فقط." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "إحصاءات Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "حالة Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "مكافحة البريد المزعج" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "اكتشاف" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "إدارة" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "الإضافات" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "العملاء" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "تقارير قديمة" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "حالة WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "إعدادات WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "الطلبات" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "صفحتي الرئيسية" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "الرسائل" @@ -554,18 +989,26 @@ msgstr "الرسائل" msgid "Save big with WooCommerce Payments" msgstr "ادخر ادخارًا كبيرًا باستخدام مدفوعات WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "لا شكرًا" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "ابدأ" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "القائمة" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "تم إرسال تفاصيل الطلب يدويًّا إلى العمي msgid "Invalid order ID." msgstr "مُعرّف طلب غير صالح." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "يتعذّر إلغاء تفعيل WooCommerce في خطة التجار msgid "Store" msgstr "المتجر" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "الإحصاءات" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "المدينة" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "المتابعة" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "اعرف المزيد." @@ -765,6 +1212,11 @@ msgstr "امتدادات WooCommerce" msgid "Extensions %s" msgstr "%s من الامتدادات" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "مدعوم من ⁦%1$s⁩" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "مدمج مع Storefront ووردبرس.كوم" diff --git a/languages/wc-calypso-bridge-de_DE.mo b/languages/wc-calypso-bridge-de_DE.mo index 7ab1d1406f40c64e2127e506577803600621ffed..7b3648e38fd7ce4a595d1c464a565f9d700372a0 100644 GIT binary patch literal 37911 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 r;Tk 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 diff --git a/languages/wc-calypso-bridge-de_DE.po b/languages/wc-calypso-bridge-de_DE.po index fce826b5..fb081ea1 100644 --- a/languages/wc-calypso-bridge-de_DE.po +++ b/languages/wc-calypso-bridge-de_DE.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-13 09:54:03+0000\n" +"PO-Revision-Date: 2023-09-14 12:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: de\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "Du findest für deine Anforderungen nicht das passende Plugin? Von Serviceintegrationen bis hin zu ausgefallenen Anpassungen – unser Expertenteam kann dich bei der Umsetzung unterstützen." + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "Ganz auf deine Art" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "Erweiterungen entdecken" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "Bist du auf der Suche nach weiteren Zahlungs- und Versandarten? Möchtest du eine Mitgliedschaftswebsite erstellen oder Spenden empfangen? Wähle aus Hunderten von Erweiterungen aus, die von unserem Team sorgfältig ausgesucht wurden." + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "Deinen Shop ausbauen" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "Du kannst WordPress für alles nutzen. Zum Erstellen eines Shops, zum Hosten eines Podcasts und zum Präsentieren deiner Arbeit. Mit über 55.000 Plugins hast du die Zügel in der Hand." + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "WordPress verändern" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Plugins durchsuchen" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "Gestalte deine WordPress-Website ganz nach deinen Vorstellungen. Führe ein Upgrade auf einen kostenpflichtigen Tarif durch und erhalte Zugang zu Tausenden von kostenlosen und kostenpflichtigen Plugins. Möchtest du wissen, was alles möglich ist?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "Ideen umsetzen mit Plugins" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "Erhalte verbesserte Funktionen und schnellere Fehlerbehebungen, indem du nicht vertrauliche Informationen über die {{link}}Nutzungsverfolgung{{/link}} übermittelst, die uns zeigt, wie WooCommerce verwendet wird. Es werden keine persönlichen Daten nachverfolgt oder gespeichert." + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "Digitale Geschenkkarten erstellen" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "Verkaufe und akzeptiere digitale Geschenkkarten, um die Kundenbindung zu festigen, mehr Einnahmen zu generieren und neue Kunden für deinen Shop zu gewinnen." + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "Bessere Kundenbindung mit Geschenkkarten" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "Mache mit Werbung in den sozialen Medien Millionen von aktiven Käufern, die auf TikTok, Pinterest und den Plattformen von Meta unterwegs sind, auf deine Produkte aufmerksam." + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "Mehr Kunden erreichen über soziale Medien" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "Erreiche auf Google aktive Käufer mit Produkteinträgen und Werbung, die du direkt in deinem Dashboard erstellen und verwalten kannst." + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "Auf Google für deine Produkte werben" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "AutomateWoo testen" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "Steigere deinen Umsatz und binde deine Kunden durch automatisierte Marketingnachrichten, die auf die Kaufdaten deiner Kunden reagieren." + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "Automatisiere dein Marketing" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "Entdecke unsere integrierten Marketingtools, mit denen du mehr Kunden erreichen und deine Verkaufszahlen steigern kannst" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "Hunderte von Erweiterungen für den Ausbau deines Geschäfts" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "Nutze unsere integrierten Tools für Marketing und Werbung, um mehr Kunden zu erreichen und dein Geschäft auszubauen. Führe ein Upgrade auf einen kostenpflichtigen Tarif durch, um Zugang zu unseren leistungsstarken Marketingtools zu erhalten und noch heute mit dem Ausbau deines Geschäfts zu beginnen!" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "Bereit für den Ausbau deines Geschäfts?" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "Abbildung zum Design" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "Abbildung zu Produkten" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "Es sieht alles ausgezeichnet aus, weiter so!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "Woo! Der letzte Schritt ist erreicht! Gut gemacht" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "Jetzt sind nur noch ein paar Aufgaben übrig!" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "Willkommen in deinem Woo Express-Shop" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "Willkommen bei %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "%1$d von %2$d abgeschlossen." + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "Du bist fast bereit, mit dem Verkauf zu beginnen! Gehe zum Einrichten deines Test-Shops wie folgt vor." + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "Einrichtungsliste ausblenden" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "Der Shop-Einrichtungsvorgang erfüllt meine Bedürfnisse." + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "Die Shop-Einrichtung lässt sich einfach durchführen." + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "Wir freuen uns über dein Feedback!" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "Was ist dein Eindruck?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "Ausblenden" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "Liste mit Einrichtungsaufgaben anzeigen" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "Aufgabenlisten-Optionen" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "Glückwunsch! Nimm dir einen Moment Zeit zum Feiern. Sobald du bereit für die Veröffentlichung deines Shops bist, musst du lediglich ein Upgrade auf einen kostenpflichtigen Tarif durchführen. Dann sind auch die beiden nächsten Aufgaben auf der Aufgabenliste verfügbar." + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "Juhuuuh! Dein Test-Shop ist eingerichtet!" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "Du bist großartig! Ein Eintrag weniger auf deiner To-do-Liste ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "Beim Einrichten von automatisierten Steuern ist ein Problem aufgetreten. Bitte versuche es erneut." + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "Solange der Gratis-Test läuft, kannst du zwar Einstellungen für die Umsatzsteuer einrichten, aber du kannst sie nicht erheben. {{br/}}{{link}}Führe jetzt ein Upgrade durch,{{/link}} um Produkte verkaufen zu können." + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "Ich berechne keine Umsatzsteuer" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "Steuersätze manuell einrichten" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "Steuerpartner auswählen" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "WooCommerce Tax kann deine Umsatzsteuerberechnungen für dich automatisieren." + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "Steuern automatisieren" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "Steuern automatisieren" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "Wechsle zur Anzeige für Steuersatzeinstellungen, um deine Steuersätze zu konfigurieren" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "Steuersätze konfigurieren" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "Die Adresse, an der dein Unternehmen tätig ist" + +#: build/index.js:1 +msgid "Set store location" +msgstr "Shop-Standort einstellen" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "Wähle bitte ein Land/eine Region aus." + +#: build/index.js:1 +msgid "Post code" +msgstr "Postleitzahl" + +#: build/index.js:1 +msgid "Address" +msgstr "Adresse" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "Land / Region" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "Wenn du auf „Konfigurieren“ klickst, aktivierst du Steuersätze und -berechnungen. Weitere Informationen findest du {{link}}hier{{/link}}." + +#: build/index.js:1 +msgid "Configure" +msgstr "Konfigurieren" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "Mit der Einrichtung fortfahren" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "Durch die Installation von WooCommerce Tax und Jetpack stimmst du den {{link}}Geschäftsbedingungen{{/link}} zu." + +#: build/index.js:1 +msgid "100% free" +msgstr "100 % kostenlos" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "Bereitgestellt von {{link}}Jetpack{{/link}}" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "Compliance mit dem wirtschaftlichen Nexus – {{strong}}einfach{{/strong}} " + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "Umsatzsteuerberechnung in Echtzeit" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "Das Beste für neue Stores" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "WooCommerce Tax" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "Verkaufszahlen steigern" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "Führe ein Upgrade auf einen kostenpflichtigen Tarif durch, um von neuen Funktionen zu profitieren und Produkte verkaufen zu können" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "Du nutzt derzeit einen Gratis-Test! Bitte führe ein Upgrade auf einen kostenpflichtigen Tarif durch, um Zugang zu allen Funktionen zu erhalten." + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "Abbildung 1 zur Navigation im modalen Willkommensfenster" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "Abbildung 2 zur Navigation im modalen Willkommensfenster" + +#: build/index.js:1 +msgid "Setup required" +msgstr "Einrichten erforderlich" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "Erziele und verwalte wiederkehrende Einnahmen und erhalte automatische Einzahlungen auf dein angegebenes Bankkonto." + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "Verkaufe auf internationalen Märkten und akzeptiere mehr als 135 Währungen mit lokalen Zahlungsmethoden." + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "Biete deinen Kunden ihre bevorzugte Zahlungsmethode an, darunter Debit- und Kreditkartenzahlungen, Apple Pay, Sofort, SEPA, iDeal und viele mehr." + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "Zu den akzeptierten Zahlungsarten gehören:" + +#: build/index.js:1 +msgid "& more." +msgstr "und mehr." + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "Erweiterungen durchsuchen" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "Füge deine Produkte hinzu. Präsentiere deine Produkte oder Dienstleistungen und beginne mit dem Verkauf. Füge Produktinformationen, -bilder und -beschreibungen hinzu." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "Importiere deine Produkte. Präsentiere deine Produkte oder Dienstleistungen und beginne mit dem Verkauf. Importiere vorhandene Produktinformationen, -bilder und -beschreibungen." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "Produkte hinzufügen" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "Produkte importieren" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "Produkte hinzufügen" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "Produkte importieren" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "Theme auswählen" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "Wähle ein Theme aus, das gut zum Erscheinungsbild deiner Marke passt und verändere es nach deinen Wünschen. Ändere die Farben, füge dein Logo hinzu und erstelle Seiten." + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "Dein Theme wählen" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "Plugins" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "Wiederherstellen" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "„Nächste Schritte“" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "Liste mit Einrichtungsaufgaben" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "Mache die „Nächste Schritte“-Aufgabenliste wieder sichtbar." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "Mache die Aufgabenliste für die erste Einführung wieder sichtbar." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "Nutze diese Optionen, um die Aufgabenliste für die Einführung auf der WooCommerce-Startseite wieder sichtbar zu machen." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "Einführung" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "Ein individuelles Navigationserlebnis, das für den Verkauf optimiert ist." + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Das Erledigen von Aufgaben mit WooCommerce geht jetzt noch schneller. Erhalte weitere Informationen über unsere neue Navigation – oder leg einfach los und probiere sie selbst aus." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Bewege dich schneller mit unserer neuen Navigation" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Jedes Mal, wenn du zu deinem WordPress.com-Dashboard zurückkehrst, erhältst du Tipps und Einblicke zur Performance deines Shops." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Lerne deine neue Startseite kennen" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Wähle eine neue Website-Adresse für deinen Shop oder übertrage eine, die dir bereits gehört." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Domain-Abbildung hinzufügen" @@ -79,43 +487,53 @@ msgstr "Bankverbindung erfolgreich hinzugefügt" msgid "Please enter an account number or IBAN" msgstr "Bitte gib eine gültige Kontonummer oder IBAN ein" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Nur Administratoren und Shop-Manager können während des Gratis-Tests Bestellungen aufgeben. Wenn du bereit bist, Zahlungen von Kunden zu empfangen, führe ein {{link}}Upgrade auf einen kostenpflichtigen Tarif{{/link}} durch." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Offline-Zahlungsmethoden" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Mehr anzeigen" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Probiere einen der alternativen Zahlungsanbieter aus." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Weitere Zahlungsanbieter" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Biete deinen Kunden weitere Zahlungsmöglichkeiten." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Zusätzliche Zahlungsoptionen" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "So bereitest du dich auf den Empfang von Online Zahlungen vor" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Zahlungsanbieter wählen" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Bei der Verbindung mit WooCommerce Payments ist ein Fehler aufgetreten. Bitte versuche es erneut oder stelle die Verbindung später in den Shop-Einstellungen her." @@ -132,245 +550,258 @@ msgstr "Durch deine Zustimmung zur Übermittlung nicht vertraulicher {{link}}Nut msgid "Help us build a better WooCommerce Payments experience" msgstr "Unterstütze uns bei der Optimierung von WooCommerce Payments" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Durch die Verwendung von WooCommerce Payments stimmst du unseren {{tosLink}}Geschäftsbedingungen{{/tosLink}} zu und bestätigst, dass du unsere {{privacyLink}}Datenschutzerklärung{{/privacyLink}} gelesen hast " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Sei bereit, Zahlungen zu empfangen" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Ja, ich bin dabei!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Baue einen besseres WooCommerce auf" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Beim Aktualisieren deiner Einstellungen ist ein Problem aufgetreten" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Konfiguriere dein %(title)s-Konto" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "%s installieren " +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Du kannst die Einstellungen dieses Zahlungs-Gateways verwalten, indem du auf den Button unten klickst" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Verbinden" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Weiter" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Beim Speichern deiner Zahlungseinstellungen ist ein Problem aufgetreten" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s erfolgreich konfiguriert" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Empfohlen" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Partner vor Ort" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Einrichtung abschließen" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Aktivieren" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Ohne Überprüfung starten" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Ein paar Kleinigkeiten, die vor dem Starten deines Shops zu überprüfen sind" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Vor dem Starten" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Wähle eine Adresse für deine neue Website oder übertrage eine Domain, die dir bereits gehört." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Produkte auflisten" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Füge Produkte oder Dienstleistungen zu deinem Shop hinzu und beginne mit dem Verkauf. Erstelle deine Produkte manuell oder importiere sie aus einem bestehenden Shop." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Liste deine Produkte auf" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Biete deinen Kunden eine einfache und bequeme Möglichkeit zu bezahlen! Richte eine (oder mehrere) unserer schnellen und sicheren Online- oder persönlichen Zahlungsmethoden ein." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Erhalte Zahlungen" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Du kannst dies jederzeit unter Einstellungen rückgängig machen." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Es ist an der Zeit, zu feiern – du bist bereit, deinen Shop zu starten! Woo!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Bist du bereit, deinen Shop zu starten?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Du hast deine Meinung geändert? Du kannst deinen Shop wieder privat machen, indem du deine Privatsphäre-Einstellungen aktualisierst." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Deinen Shop ansehen" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Glückwunsch zum Starten deines WooCommerce-Shops. Nimm dir einen Moment Zeit zum Feiern und teile die Neuigkeiten!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! Geschafft!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Deinen Shop starten" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Kopiert" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Blende dieses Informationsbanner für den Gratis-Test aus." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Dies ist dein Test-Shop im Rahmen des Gratis-Tests, in dem du erkunden kannst, was es alles gibt! Wenn du mehr über den Gratis-Test erfahren möchtest, klicke auf „Weitere Informationen“." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Beim Speichern deines Shop-Standorts ist ein Problem aufgetreten" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Durch Klicken auf „Zahlungen testen“ stimmst du den {{tosLink}}Geschäftsbedingungen{{/tosLink}} zu" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Mache mehr aus deinen Zahlungen mit einer einfachen All-in-one-Option. Überprüfe die Daten deines Unternehmens, um mit dem Testen von Transaktionen mit WooCommerce Payments zu beginnen." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Zahlungen testen" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Biete deinen Kunden eine einfache und bequeme Möglichkeit zu bezahlen! Richte einige unserer schnellen und sicheren Online- oder persönlichen Zahlungsmethoden ein und teste sie." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Es ist an der Zeit, Zahlungen zu testen" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Zahlungs-Abbildung" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Du bist bereit, die Funktionen und Vorteile von WooCommerce Payments zu testen" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Nur noch ein paar Schritte und du bist bereit, Zahlungen zu empfangen" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Anzahlungen sind während des Gratis-Tests nicht verfügbar. Um echte Transaktionen zu verarbeiten und Zahlungen sowie Auszahlungen zu erhalten, führe ein Upgrade auf einen kostenpflichtigen Tarif durch." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Einzahlungen sind während des Gratis-Tests nicht verfügbar. Führe ein Upgrade auf einen kostenpflichtigen Tarif durch, um echte Transaktionen zu verarbeiten und Zahlungen sowie Auszahlungen zu erhalten." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Nur Administratoren und Shop-Manager können während des Gratis-Tests Bestellungen aufgeben. Wenn du bereit bist, Zahlungen von Kunden zu empfangen, führe ein Upgrade auf einen kostenpflichtigen Tarif durch." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Nur Administratoren und Shop-Manager können während des Gratis-Tests Bestellungen aufgeben. Wenn du bereit bist, Zahlungen von Kunden zu empfangen, führe ein Upgrade auf einen kostenpflichtigen Tarif durch." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Tipps, Tricks und E-Commerce-Inspiration aus unserem Blog." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "Lass dich inspirieren" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Sammlungen entdecken" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Mit unseren kuratierten Sammlungen an Erweiterungen bist du schnell startklar." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Kuratierte Sammlungen" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Füge zusätzliche Features und Funktionen hinzu oder integriere andere Plattformen und Tools." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Anpassen und Erweitern" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Mache mehr aus deinem Shop – füge Erweiterungen hinzu" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Erweiterungen durchsuchen" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Passe deinen Shop mit Woo-Erweiterungen perfekt an deine geschäftlichen Anforderungen an. Mit einem Upgrade auf einen kostenpflichtigen Tarif erhältst du Zugang zu Hunderten von Tools und Funktionen, die dir dabei helfen, deine Geschäftsziele zu erreichen. Bist du neugierig, was es alles gibt? Durchsuche unseren Marktplatz für Erweiterungen." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Passe deinen Shop mit WooCommerce-Erweiterungen perfekt an deine geschäftlichen Anforderungen an. Mit einem Upgrade auf einen kostenpflichtigen Tarif erhältst du Zugang zu Hunderten von Tools und Funktionen, die dir dabei helfen, deine Ziele zu erreichen. Bist du neugierig, was es alles gibt? Durchsuche unseren Marktplatz für Erweiterungen." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Bringe deinen Shop mit Erweiterungen auf ein neues Level" @@ -384,8 +815,8 @@ msgstr "Es ist an der Zeit, zu feiern! Bist du bereit, deinen Shop zu starten?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Veröffentliche deinen Shop" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "Du hast deinen Shop bereits gestartet" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 Minuten" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "Domain" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Domain hinzufügen" @@ -428,18 +861,19 @@ msgstr "Damit deine Käufer von einem sicheren und reibungslosen Bezahlerlebnis msgid "Meet our new, customizable checkout" msgstr "Lerne unseren neuen, anpassbaren Bezahlvorgang kennen" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tIm Moment bist du der Einzige, der deinen Shop sehen kann. Um deinen Shop für alle verfügbar zu machen, führe ein Upgrade auf einen kostenpflichtigen Tarif durch.\n" +"\t\t\tIm Moment kannst nur du deinen Shop sehen. Führe ein durch, um deinen Shop für alle verfügbar zu machen.\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Jetzt upgraden" @@ -451,15 +885,15 @@ msgstr "Während des Gratis-Tests kannst du nur Testbestellungen aufgeben! Um Be msgid "Start selling to everyone" msgstr "Beginne mit dem Verkauf an alle" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "Mein Account" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "Kontakt" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "Home" @@ -471,7 +905,8 @@ msgstr "Diese Website wurde bereits veröffentlicht" msgid "You don't have permissions to launch this site" msgstr "Du bist nicht berechtigt, diese Website zu veröffentlichen" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Nur Administratoren und Shop-Manager können während des Gratis-Tests Bestellungen aufgeben. Wenn du bereit bist, Zahlungen von Kunden zu empfangen, führe ein Upgrade auf einen kostenpflichtigen Tarif durch." @@ -492,61 +927,61 @@ msgstr "Deine Bestellung konnte nicht aufgegeben werden. Die Bezahlfunktion ist msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Dieser Shop ist nicht bereit, Bestellungen zu akzeptieren. Die Bezahlfunktion ist derzeit nur zu Vorschauzwecken aktiviert." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack-Statistiken" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Jetpack-Status" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-Spam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Entdecken" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Verwalten" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Erweiterungen" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Kunde" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Veraltete Berichte" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "WooCommerce Status" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "WooCommerce-Einstellungen" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Bestellungen" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Meine Startseite" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Rückmeldungen" @@ -554,18 +989,26 @@ msgstr "Rückmeldungen" msgid "Save big with WooCommerce Payments" msgstr "Mit WooCommerce Payments kannst du viel Geld sparen" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Nein danke" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Erste Schritte" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navigation" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "Auftragsdetails manuell an Kunden gesendet." msgid "Invalid order ID." msgstr "Ungültige Bestellnummer-ID." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "WooCommerce kann im eCommerce-Tarif nicht deaktiviert werden." msgid "Store" msgstr "Shop" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Statistiken" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Stadt" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Fortsetzen" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Weitere Informationen." @@ -765,6 +1212,11 @@ msgstr "WooCommerce-Erweiterungen" msgid "Extensions %s" msgstr "Erweiterungen %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Bereitgestellt von %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Erstellt mit Storefront und WordPress.com" diff --git a/languages/wc-calypso-bridge-fr_BE.mo b/languages/wc-calypso-bridge-fr_BE.mo index a7acd05197d88cb895d283471fe9ecb327633d5d..e81e99f075f9125ea3afa306f848b7d93450d77d 100644 GIT binary patch literal 38142 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

tEDtoFOk|MK`vuF$=0E)8Gf_|V`F;L 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 Wb7jh1Egif&$2}2dcH_HqlK%zHr7tG{ delta 5012 zcmZwK3v^V)8Nl&b2q6#xBp4G&NNxf_LLd)FNFYiQ1T>H!gg0VgvwIU(lHItEgqJK3 z6dyb@5Kt5l1&g3k7FtB@1JF~Sv~XIFXi9CDu`N7|KHw?_SnwZ@BU^kcki9~ zX69!3{$Q8gCv3rs2~pb>k#?w1#=b&7- z6i47wn2YDoK--N(sgp#p#jK)34Bh>*+=lSX+6&c|L}gZ#IzB}^ zDp{#KJcx3mcTukEK8DvJC_Dl@SNvvCkEM7h2-(r!l?z)6%5zJk(`w@{|E1C#J`JcLn( z<&lUBf*DE;-CU=_-Zci|8`f)C?6C=YhfyHZ?&%z}CvWy(&Y z+~+K^Q`M&^nYo5CHNj~1823=I_#)<_%>8F5+wlr!;b0E*RZT`|H*k;)i?nCpNZRvIQojLNK0);;70JMHl)1Wy>oDmis{@arY_qp;1b&B0a2Q`I z$9CL^@8F$iGQkW^{SKS(uPBRgHd|yGyJ{oy2z4<>?iZxD!>#Qw3gwG4P*T@|lCoCp zjvD*ouE@V1Mn<4cpp5i9%G&rFN+!O=VoaphH)1u8K_|+h-HnMnUmc-RfUn{<{2Hg= zMusgTf0u(yQ4BAEI?O>CQ5#Oj*H9ji!h9t#!jbqa?TOq}*3K1_sp?DqWw8#x<(P#* zSu}g8#NqoGkDsB8_&ZF%DE5wICJ7x_iqfGycnh9FmWfh@;g8BfdEk7M2RczQ>Osli z3ar2lh2&oz@HQuSiK&l}9jLxRxnY0y-am01-h+7z`yxJpx8Z8?yBU9vO*oeYBprJV z>+y4x?K_jalN9w3(pU8&X5g1&$p0!T@nfwXZ$TOPqmlMLjHZ1UWm|<%zIYbpy35!f zucJxo`;pGGw3pqiR2f#19?8IiH~_cdID8)Ys4s#XB zkbp6mi}K)Nl>I#&W$Iigt9u2?6zoHdhjAyCm$Sg}T|AD#5lqA}DwmLt+Bx3pzy*{! z>%b`d0_8zhuouSOYPFN`Hrn|(0hgjo-OG3bcA(7pHI%82;i5!LK?W351ym$8)hHJ( z#>u!0Z^tuu2gXgbMtoPq7L@C^Vg~L*nW{6$N4>$J9OEZh+q(v3?!71(J%F*Y|Bq4W z!-?Obr0fqk5HH|){5s;B3{%>B=@sir`75noKF^|j?|V$g7K= z4a$hGM%u%sT2p7oU7UAga4?mg6BlP?q}^unI}ZmTTU5P?XBc7h zEbGPc#%yckYL4|nD#0wSTY%EBwb&1LqonvK8u${%;$KiQ`*)N@7&Vvt%g6@MU74#q zWJjvXNP9iXVtN7x;io8b96QhINDlsrwgVSo%6#jUy%LAeK7{Rf4q3;_btiuT@i~+Z z!~_?Fr!c(rWGcA7dWh&O2dO+kaG6?26cP6leF>5go`&TpWgSsVBoo|Uk-YG9da<+I zM@6QnHF6@zwhaGxd=_O+wh=yJD78Cmkc1QTH9fW`Nic)SO4iWo^4TO|J3$-Pp&_c)@ zml6GmU4)bs7U5%Wo*yo$9Cr|V!!7>vfMX+dp@cY0$f}l7MeHP=B<2uxgp@^uEHo*y z(Ac5sQ9`!e5~8!@Qpq8Lb`D1fUP?cdY-+NNq>Lft{oYvyP>CaMAi5Kyh)G0%$RMPc zM2J{L%p#5wQu2vtq6@K+cv$jZLq$qYVsW@;y$edI^T$tBM$T==B%+=ePBaouqOy<0dM3L_2YSkWx;pB!&`F?jm9cKM_kjO{5bK z5C%~|@W@w_*6IAwsa<>a=%EiKrzR8_jV^bo`zice?vU$4*g-=kLzn4}k_^w&?O zmzQ2$AC{vh!m=gM+aEy)AzODxrpVjFl z8=}1)hsh(pEh*Rg1|`LnsT$MaX>2szPSY7`EFEIgQ*ZgD-ZJizzOO7^pDA0ZHYqLE_@M~7@vm(!)@v?69(CZ^6+AMn~GhX(o0@)_RK2LnEz%TxuY_I9p= z&YDj*PdlNfPJct^*38qBXJqNaGs<*&YLYf*)`c==)!KCO9DAr^PPQ%d-n=ZEe)-N? zUA17pPQGhLCJ&Rga{%^+yZ0_cFps@j6`gz*613sI+^d-RoG) z1t%AsqVwrGWS<}VHFVBVXA5R@}gAT?%dnGf|b>5dbO=?UeZjjCqUh3=ve)TE4)y`DbvmM zWA%IWyF;n2xm|Qj!}$CPha+IR8q{Piv^yMT6WhpIGfva(ch$M=J77=GlfY1C1tQR@I(mEPt5}R=UaJ@EeOgUPk4rcblP2{)c1&uY~5cWZU$~r7!l7 z?IqjFtIsZ*qQ6;@8EdU7yW4sCVCc)0&)A;aAGC$+YZ7d_ZEd1{eeM3P6#<9NxH~b_ zZC$l3bo9RJZaVwnVm)$0-N4x%m-i=WQ{!ExyV>Lsx_#3oeedS^p_nakUG%@&UeIyd Gj{gVXELearn more about our new navigation — or go ahead and explore on your own." msgstr "Faire avancer les choses avec WooCommerce est devenu plus rapide. Apprenez-en plus sur notre nouvelle navigation ou découvrez-la par vous-même." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Allez plus vite grâce à notre nouvelle navigation" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtenez des conseils et des tendances sur les performances de votre boutique chaque fois que vous revenez dans votre tableau de bord WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Découvrez votre nouvel accueil" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Choisissez une nouvelle adresse de site Web pour votre boutique ou transférez-en une que vous possédez déjà." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ajouter une illustration de domaine" @@ -79,43 +487,53 @@ msgstr "Les coordonnées de virement bancaire ont bien été ajoutées." msgid "Please enter an account number or IBAN" msgstr "Veuillez entrer un numéro de compte ou un numéro IBAN." -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, {{link}}passez à un plan payant{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Moyens de paiement hors ligne" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "En savoir plus" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Testez l’un des fournisseurs de paiement alternatifs." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Autres fournisseurs de paiement" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Offrez à vos clients des choix supplémentaires en matière de moyens de paiement." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Options de paiement supplémentaires" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Pour se préparer à accepter des paiements en ligne" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Choisir un fournisseur de paiement" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Une erreur est survenue lors de la connexion à WooCommerce Payments. Réessayez ou connectez-vous plus tard dans les réglages de la boutique." @@ -132,245 +550,258 @@ msgstr "En acceptant de partager des {{link}}données d’utilisation{{/link}} n msgid "Help us build a better WooCommerce Payments experience" msgstr "Aidez-nous à améliorer l’expérience de WooCommerce Payments." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "En utilisant WooCommerce Payments, vous acceptez de vous soumettre à nos {{tosLink}}Conditions d’utilisation{{/tosLink}} et vous reconnaissez avoir lu notre {{privacyLink}}Politique de confidentialité{{/privacyLink}}. " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Se préparer à accepter des paiements" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Oui, vous pouvez compter sur moi !" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Créer un meilleur WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Un problème est survenu lors de la mise à jour de vos préférences" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configurer votre compte %(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Installer %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Vous pouvez gérer les réglages de ce portail de paiement en cliquant sur le bouton ci-dessous." +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Connecter" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Continuer" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Un problème est survenu lors de l’enregistrement de vos réglages de paiement" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "Configuration de %s réussie" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recommandé" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Partenaire local" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Terminer la configuration" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activer" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lancer quand même" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Quelques points à vérifier avant de lancer votre boutique" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Avant le lancement" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Choisissez une adresse pour votre nouveau site Web ou transférez un domaine que vous possédez déjà." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Répertorier des produits" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Commencez à vendre en ajoutant des produits ou services à votre boutique. Créez vos produits manuellement ou importez-les depuis une boutique existante." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Répertorier vos produits" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez un (ou plusieurs) de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Faites-vous payer" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Vous pouvez toujours l’annuler dans Réglages." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Félicitations, vous êtes prêt à lancer votre boutique ! Génial !" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Prêt à lancer votre boutique ?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Vous avez changé d’avis ? Vous pouvez rendre votre boutique à nouveau privée en mettant à jour vos réglages de Confidentialité." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Voir votre boutique" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Félicitations pour le lancement de votre boutique WooCommerce. Prenez un moment pour célébrer la nouvelle et la partager !" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Génial ! Vous l’avez fait !" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Lancement de votre boutique" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Copié" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Ignorez cette bannière d’information sur l’essai gratuit." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Ceci est votre boutique d’essai gratuit où vous pouvez commencer à explorer ce qui est disponible ! Pour en savoir plus sur l’essai gratuit, cliquez sur Lire la suite." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Un problème est survenu lors de l’enregistrement de la localisation de votre boutique" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "En cliquant sur « Tester les paiements », vous acceptez les {{tosLink}}conditions d’utilisation{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Optimisez vos paiements à l’aide d’une solution simple et tout-en-un. Vérifiez les détails de votre entreprise pour commencer à tester les transactions avec WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Tester les paiements" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez et testez certains de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Il est temps de tester les paiements" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Illustration de paiements" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Vous êtes prêt à tester les fonctionnalités et les avantages de WooCommerce Payments." -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Il ne reste que quelques étapes avant que vous puissiez être payé" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Les acomptes ne sont pas disponibles pendant la période d’essai. Pour commencer à traiter les transactions réelles et recevoir des paiements et des versements, passez à un plan payant." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Les acomptes ne sont pas disponibles pendant la période d’essai. Pour commencer à traiter les transactions réelles et recevoir des paiements et des versements, passez à un plan payant." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, passez à un plan payant." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, passez à un plan payant." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Conseils, astuces et inspiration eCommerce de notre blog." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "Trouver l’inspiration" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Découvrir les collections" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Démarrer rapidement avec nos collections d’extensions sélectionnées." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Collections sélectionnées" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Ajoutez des fonctionnalités supplémentaires ou intégrez-les à d’autres plateformes et outils." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Personnaliser et étendre" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Allez plus loin avec votre boutique : ajoutez des extensions" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Parcourir les extensions" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Personnalisez votre boutique pour qu’elle fonctionne parfaitement pour votre entreprise, avec des extensions Woo. Passez à un plan payant pour pouvoir accéder à des centaines d’outils et de fonctionnalités qui peuvent vous aider à atteindre vos objectifs commerciaux. Envie de savoir ce qui est disponible ? Parcourez notre marché d’extensions." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Personnalisez votre boutique pour qu’elle fonctionne parfaitement pour votre entreprise, avec des extensions WooCommerce. Passez à un plan payant pour pouvoir accéder à des centaines d’outils et de fonctionnalités qui peuvent vous aider à atteindre vos objectifs. Envie de savoir ce qui est disponible ? Parcourez notre catalogue d’extensions." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Passer votre boutique au niveau supérieur, avec des extensions" @@ -384,8 +815,8 @@ msgstr "L’heure de la fête est venue ! Prêt à lancer votre boutique ?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lancez votre boutique" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "Vous avez déjà lancé votre boutique" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutes" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "Domaine" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Ajouter un domaine" @@ -428,18 +861,19 @@ msgstr "Pour offrir une expérience fluide de validation de commande à vos ache msgid "Meet our new, customizable checkout" msgstr "Découvrez notre nouvelle validation de commande personnalisable" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tPour le moment, vous êtes la seule personne à pouvoir voir votre boutique. Pour rendre votre boutique accessible à tous, passez à un plan payant.\n" +"\t\t\tPour le moment, vous êtes la seule personne à pouvoir voir votre boutique. Pour rendre votre boutique accessible à tous, .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mettre à niveau maintenant" @@ -451,15 +885,15 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "Mon compte :" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "contact" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "Accueil" @@ -471,7 +905,8 @@ msgstr "Ce site a déjà été lancé" msgid "You don't have permissions to launch this site" msgstr "Vous n’êtes pas autorisé à lancer ce site" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, passez à un plan payant." @@ -492,61 +927,61 @@ msgstr "Votre commande n’a pas pu être passée. Actuellement, la fonctionnali msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Cette boutique n’est pas prête à accepter des commandes. Actuellement, la fonctionnalité de validation de commande est activée à des fins d’aperçu uniquement." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Statistiques Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "État de Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-spam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Découvrir" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gérer" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Extensions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Clients" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Anciens rapports" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "État de WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "Réglages WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Commandes" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Mon accueil" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Remarque" @@ -554,18 +989,26 @@ msgstr "Remarque" msgid "Save big with WooCommerce Payments" msgstr "Faites de grosses économies avec WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Non merci" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Commencer" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navigation" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "Détails de la commande envoyés manuellement au client." msgid "Invalid order ID." msgstr "ID commande non valide." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "Impossible de désactiver WooCommerce dans le plan eCommerce." msgid "Store" msgstr "Boutique" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Statistiques" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Ville" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuer" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Informations détaillées." @@ -765,6 +1212,11 @@ msgstr "Extensions de WooCommerce" msgid "Extensions %s" msgstr "Extensions %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Opéré par %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Intègre Storefront et WordPress.com" diff --git a/languages/wc-calypso-bridge-fr_CA.mo b/languages/wc-calypso-bridge-fr_CA.mo index 1dabb5a254b83f70371874f6d340a2e92aa5ebb3..7133c5ad1d4d60f9b7c74936246075809ebd6c32 100644 GIT binary patch literal 38123 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̎bfZ*S*{k?~KdLNCrpNoL)KQ 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 Z^(`&BX4~T6SKInU=nrLearn more about our new navigation — or go ahead and explore on your own." msgstr "Faire avancer les choses avec WooCommerce est devenu plus rapide. Apprenez-en plus sur notre nouvelle navigation ou découvrez-la par vous-même." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Allez plus vite grâce à notre nouvelle navigation" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtenez des conseils et des tendances sur les performances de votre boutique chaque fois que vous revenez dans votre tableau de bord WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Découvrez votre nouvel accueil" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Choisissez une nouvelle adresse de site Web pour votre boutique ou transférez-en une que vous possédez déjà." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ajouter une illustration de domaine" @@ -79,43 +487,53 @@ msgstr "Les coordonnées de virement bancaire ont bien été ajoutées." msgid "Please enter an account number or IBAN" msgstr "Veuillez entrer un numéro de compte ou un numéro IBAN." -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, {{link}}passez à un plan payant{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Moyens de paiement hors ligne" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Voir plus" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Testez l’un des fournisseurs de paiement alternatifs." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Autres fournisseurs de paiement" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Offrez à vos clients des choix supplémentaires en matière de moyens de paiement." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Options de paiement supplémentaires" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Pour se préparer à accepter des paiements en ligne" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Choisir un fournisseur de paiement" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Une erreur est survenue lors de la connexion à WooCommerce Payments. Réessayez ou connectez-vous plus tard dans les réglages de la boutique." @@ -132,245 +550,258 @@ msgstr "En acceptant de partager des {{link}}données d’utilisation{{/link}} n msgid "Help us build a better WooCommerce Payments experience" msgstr "Aidez-nous à améliorer l’expérience de WooCommerce Payments." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "En utilisant WooCommerce Payments, vous acceptez de vous soumettre à nos {{tosLink}}Conditions d’utilisation{{/tosLink}} et vous reconnaissez avoir lu notre {{privacyLink}}Politique de confidentialité{{/privacyLink}}. " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Se préparer à accepter des paiements" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Oui, vous pouvez compter sur moi !" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Créer un meilleur WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Un problème est survenu lors de la mise à jour de vos préférences" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configurer votre compte %(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Installer %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Vous pouvez gérer les réglages de ce portail de paiement en cliquant sur le bouton ci-dessous." +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Connexion" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Continuer" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Un problème est survenu lors de l’enregistrement de vos réglages de paiement" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "Configuration de %s réussie" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recommandée" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Partenaire local" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Terminer la configuration" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activer" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lancer quand même" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Quelques points à vérifier avant de lancer votre boutique" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Avant le lancement" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Choisissez une adresse pour votre nouveau site Web ou transférez un domaine que vous possédez déjà." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Répertorier des produits" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Commencez à vendre en ajoutant des produits ou services à votre boutique. Créez vos produits manuellement ou importez-les depuis une boutique existante." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Répertorier vos produits" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez un (ou plusieurs) de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Faites-vous payer" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Vous pouvez toujours l’annuler dans Réglages." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Félicitations, vous êtes prêt à lancer votre boutique ! Génial !" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Prêt à lancer votre boutique ?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Vous avez changé d’avis ? Vous pouvez rendre votre boutique à nouveau privée en mettant à jour vos réglages de Confidentialité." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Voir votre boutique" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Félicitations pour le lancement de votre boutique WooCommerce. Prenez un moment pour célébrer la nouvelle et la partager !" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Génial ! Vous l’avez fait !" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Lancement de votre boutique" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Copié" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Ignorez cette bannière d’information sur l’essai gratuit." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Ceci est votre boutique d’essai gratuit où vous pouvez commencer à explorer ce qui est disponible ! Pour en savoir plus sur l’essai gratuit, cliquez sur Lire la suite." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Un problème est survenu lors de l’enregistrement de la localisation de votre boutique" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "En cliquant sur « Tester les paiements », vous acceptez les {{tosLink}}conditions d’utilisation{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Optimisez vos paiements à l’aide d’une solution simple et tout-en-un. Vérifiez les détails de votre entreprise pour commencer à tester les transactions avec WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Tester les paiements" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez et testez certains de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Il est temps de tester les paiements" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Illustration de paiements" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Vous êtes prêt à tester les fonctionnalités et les avantages de WooCommerce Payments." -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Il ne reste que quelques étapes avant que vous puissiez être payé" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Les acomptes ne sont pas disponibles pendant la période d’essai. Pour commencer à traiter les transactions réelles et recevoir des paiements et des versements, passez à un plan payant." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Les acomptes ne sont pas disponibles pendant la période d’essai. Pour commencer à traiter les transactions réelles et recevoir des paiements et des versements, passez à un plan payant." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, passez à un plan payant." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, passez à un plan payant." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Conseils, astuces et inspiration eCommerce de notre blog." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "Trouver l’inspiration" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Découvrir les collections" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Démarrer rapidement avec nos collections d’extensions sélectionnées." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Collections sélectionnées" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Ajoutez des fonctionnalités supplémentaires ou intégrez-les à d’autres plateformes et outils." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Personnaliser et étendre" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Allez plus loin avec votre boutique : ajoutez des extensions" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Parcourir les extensions" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Personnalisez votre boutique pour qu’elle fonctionne parfaitement pour votre entreprise, avec des extensions Woo. Passez à un plan payant pour pouvoir accéder à des centaines d’outils et de fonctionnalités qui peuvent vous aider à atteindre vos objectifs commerciaux. Envie de savoir ce qui est disponible ? Parcourez notre marché d’extensions." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Personnalisez votre boutique pour qu’elle fonctionne parfaitement pour votre entreprise, avec des extensions WooCommerce. Passez à un plan payant pour pouvoir accéder à des centaines d’outils et de fonctionnalités qui peuvent vous aider à atteindre vos objectifs. Envie de savoir ce qui est disponible ? Parcourez notre catalogue d’extensions." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Passer votre boutique au niveau supérieur, avec des extensions" @@ -384,8 +815,8 @@ msgstr "L’heure de la fête est venue ! Prêt à lancer votre boutique ?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lancez votre boutique" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "Vous avez déjà lancé votre boutique" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutes" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "Domaine" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Ajouter un domaine" @@ -428,18 +861,19 @@ msgstr "Pour offrir une expérience fluide de validation de commande à vos ache msgid "Meet our new, customizable checkout" msgstr "Découvrez notre nouvelle validation de commande personnalisable" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tPour le moment, vous êtes la seule personne à pouvoir voir votre boutique. Pour rendre votre boutique accessible à tous, passez à un plan payant.\n" +"\t\t\tPour le moment, vous êtes la seule personne à pouvoir voir votre boutique. Pour rendre votre boutique accessible à tous, .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mettre à niveau maintenant" @@ -451,15 +885,15 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "Mon compte" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "contact" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "Accueil " @@ -471,7 +905,8 @@ msgstr "Ce site a déjà été lancé" msgid "You don't have permissions to launch this site" msgstr "Vous n’êtes pas autorisé à lancer ce site" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, passez à un plan payant." @@ -492,61 +927,61 @@ msgstr "Votre commande n’a pas pu être passée. Actuellement, la fonctionnali msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Cette boutique n’est pas prête à accepter des commandes. Actuellement, la fonctionnalité de validation de commande est activée à des fins d’aperçu uniquement." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Statistiques Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "État de Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-spam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Découvrir" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gérer" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Extensions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Clients" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Anciens rapports" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "État de WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "Réglages WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Commandes" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Mon accueil" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Remarque" @@ -554,18 +989,26 @@ msgstr "Remarque" msgid "Save big with WooCommerce Payments" msgstr "Faites de grosses économies avec WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Non merci" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Commencer" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navigation" + #. Author of the plugin msgid "Automattic" msgstr "Automatique" @@ -607,7 +1050,7 @@ msgstr "Détails de la commande envoyés manuellement au client." msgid "Invalid order ID." msgstr "Identifiant commande non valide." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "Impossible de désactiver WooCommerce dans le plan eCommerce." msgid "Store" msgstr "Boutique" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Statistiques" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Ville" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuer" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "En savoir plus" @@ -765,6 +1212,11 @@ msgstr "Extensions de WooCommerce" msgid "Extensions %s" msgstr "Extensions %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Opéré par %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Intègre Storefront et WordPress.com" diff --git a/languages/wc-calypso-bridge-fr_FR.mo b/languages/wc-calypso-bridge-fr_FR.mo index fa0a935125b388949c6fd3e23b8f6d68e1672e66..9c84dc0d552d7f45ee432c5d1712c1bb2ee1d0ec 100644 GIT binary patch literal 38109 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 delta 4912 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 F{|2KABK80P diff --git a/languages/wc-calypso-bridge-fr_FR.po b/languages/wc-calypso-bridge-fr_FR.po index 4a3c2fa4..cbf44c03 100644 --- a/languages/wc-calypso-bridge-fr_FR.po +++ b/languages/wc-calypso-bridge-fr_FR.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-13 11:54:03+0000\n" +"PO-Revision-Date: 2023-09-14 12:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: fr\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "Vous ne trouvez pas l’extension qui répond à vos besoins ? Des intégrations de services aux personnalisations exotiques, notre équipe d’experts vous aide à matérialiser correctement votre travail." + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "Faites-le à votre manière" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "Découvrir les extensions" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "Vous recherchez d’autres moyens de paiement et modes de livraison ? Vous souhaitez créer un site d’adhésion ou accepter des dons ? Choisissez parmi les centaines d’extensions sélectionnées par notre équipe." + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "Développer votre boutique" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "WordPress peut faire ce que vous voulez. Créez une boutique, hébergez un podcast ou présentez votre travail. Vous êtes le maître de la situation grâce à plus de 55 000 extensions." + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "Transformer WordPress" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Parcourir les extensions" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "Créez le site WordPress que vous avez à l’esprit. Passez à un plan payant et accédez à des milliers d’extensions gratuites et payantes. Votre curiosité vous pousse à découvrir tous les possibles ?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "Donnez vie à vos idées avec les extensions." + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "Profitez de fonctionnalités optimisées et de résolutions plus rapides en partageant les données non sensibles via le {{link}}suivi de votre utilisation{{/link}} de WooCommerce. Aucune donnée personnelle n’est suivie ou enregistrée." + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "Créer des cartes-cadeaux numériques" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "Commencez à vendre et à accepter des cartes-cadeaux numériques pour fidéliser votre clientèle, augmenter votre chiffre d’affaires et attirer de nouveaux clients sur votre boutique." + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "Fidéliser davantage vos clients grâce aux cartes-cadeaux" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "Mettez vos produits en avant auprès de millions d’acheteurs engagés qui parcourent TikTok, Pinterest et Meta grâce à la publicité sur les réseaux sociaux." + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "Atteindre plus de clients sur les réseaux sociaux" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "Atteignez les acheteurs actifs sur Google avec des listes de produits et des publicités que vous pouvez créer et gérer directement à partir de votre tableau de bord." + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "Faire la publicité de vos produits sur Google" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "Essayer AutomateWoo" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "Stimulez les ventes et fidélisez vos clients grâce à des messages marketing automatisés qui répondent à leurs données d’achat." + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "Automatisez votre marketing" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "Découvrez nos outils de marketing intégrés pour atteindre plus de clients et stimuler vos ventes." + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "Développer votre activité grâce à des centaines d’extensions" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "Atteignez plus de clients et développez votre activité grâce à nos outils de marketing et de publicité intégrés. Passez à un plan payant pour profiter de nos puissants outils marketing et commencez à développer votre activité dès aujourd’hui !" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "Soyez prêt à développer votre activité" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "Illustration d’Apparence" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "Illustration de produits" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "Tout se déroule à merveille, continuez comme ça !" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "Génial ! Nous voilà à la dernière étape ! Bon travail !" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "Il ne reste plus que quelques tâches à accomplir !" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "Bienvenue dans votre boutique Woo Express" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "Bienvenue dans %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "%1$d sur %2$d terminés." + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "Vous êtes presque prêt à vendre ! Procédez comme suit pour configurer votre boutique test." + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "Masquer la liste de configuration" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "Le processus de configuration de la boutique répond à mes besoins." + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "La configuration de la boutique est facile à réaliser." + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "Nous apprécions votre avis !" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "Comment s’est passée votre expérience ?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "Masquer ceci" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "Afficher la liste des tâches de configuration" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "Options de la liste de tâches" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "Bravo ! Prenez le temps de fêter l’événement. Lorsque vous êtes prêt à lancer votre boutique, passez simplement à une formule payante. Cette action vous donnera accès aux deux tâches suivantes de la liste des tâches." + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "Woohoo ! Votre boutique test a été créée !" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "Vous êtes formidable ! Une tâche de moins sur votre liste de choses à faire ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "Un problème est survenu lors de la configuration des taxes automatisées. Veuillez réessayer." + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "Pendant la période d’essai gratuite, vous avez accès aux réglages des taxes de vente, mais ces dernières ne sont pas collectables. {{br/}}Pour commencer à vendre des produits, {{link}}passez à la version payante dès maintenant{{/link}}." + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "Je ne facture pas la TVA" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "Configurer les taxes manuellement" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "Choisir un partenaire fiscal" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "WooCommerce Tax peut automatiser le calcul des taxes de vente pour vous." + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "Automatiser les taxes" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "Automatiser les taxes" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "Consultez l’écran des réglages des taux de taxe pour configurer ces derniers" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "Configurer les taux de taxe" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "Adresse physique de l’entreprise" + +#: build/index.js:1 +msgid "Set store location" +msgstr "Localiser la boutique" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "Veuillez sélectionner un pays ou une région." + +#: build/index.js:1 +msgid "Post code" +msgstr "Code postal" + +#: build/index.js:1 +msgid "Address" +msgstr "Adresse" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "Pays/région" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "En cliquant sur « Configurer », vous activez les taux de taxe, ainsi que les calculs. Vous trouverez plus d’informations {{link}}ici{{/link}}." + +#: build/index.js:1 +msgid "Configure" +msgstr "Configurer" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "Poursuivre la configuration" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "En installant Jetpack et WooCommerce Tax, vous acceptez les {{link}}Conditions d’utilisation{{/link}}." + +#: build/index.js:1 +msgid "100% free" +msgstr "100 % gratuit" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "Optimisé par {{link}}Jetpack{{/link}}" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "Conformité au lien économique {{strong}}unique{{/strong}}" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "Calcul des taxes de vente en temps réel" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "Idéal pour les nouvelles boutiques" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "WooCommerce Tax" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "Augmenter les ventes" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "Passer à un plan payant pour accéder à de nouvelles fonctionnalités et commencer à vendre" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "Vous utilisez actuellement une version d’essai gratuite ! Pour accéder à l’ensemble des fonctionnalités, passez à un plan payant." + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "Illustration de la navigation modale de bienvenue 1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "Illustration de la navigation modale de bienvenue 2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "Configuration requise" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "Gagnez et gérez des revenus récurrents et obtenez des dépôts automatiques sur votre compte bancaire désigné." + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "Vendez sur les marchés internationaux et acceptez plus de 135 devises avec des moyens de paiement locaux." + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "Permettez à vos clients d’utiliser leur moyen de paiement préféré, y compris les cartes de débit et de crédit, Apple Pay, Sofort, SEPA, iDeal et bien d’autres encore." + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "Moyens de paiement acceptés :" + +#: build/index.js:1 +msgid "& more." +msgstr "et plus." + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "Parcourir les extensions" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "Ajoutez vos produits. Mettez vos produits ou services en valeur et préparez-vous à les vendre : ajoutez des informations sur vos produits, des images et des descriptions." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "Importez vos produits. Mettez vos produits ou services en valeur et préparez-vous à les vendre : importez les informations existantes sur vos produits, des images et des descriptions." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "Ajouter des produits" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "Importer des produits" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "Ajouter vos produits" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "Importer vos produits" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "Choisir un thème" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "Choisissez le thème qui correspond le mieux à l’image de votre marque, puis personnalisez-le. Changez les couleurs, ajoutez votre logo et créez des pages." + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "Choisir votre thème" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "Extensions" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "Restaurer" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "« Étapes suivantes »" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "Liste des tâches de configuration" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "Rétablir la visibilité de la liste des tâches « Étapes suivantes »." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "Rétablir la visibilité de la liste principale des tâches d’accueil." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "Utilisez ces options pour rétablir la visibilité des listes de tâches d’accueil sur la page d’accueil de WooCommerce." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "Intégration" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "Une expérience de navigation personnalisée et optimisée pour la vente." + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Faire avancer les choses avec WooCommerce est devenu plus rapide. Apprenez-en plus sur notre nouvelle navigation ou découvrez-la par vous-même." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Allez plus vite grâce à notre nouvelle navigation" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtenez des conseils et des tendances sur les performances de votre boutique chaque fois que vous revenez dans votre tableau de bord WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Découvrez votre nouvel accueil" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Choisissez une nouvelle adresse de site Web pour votre boutique ou transférez-en une que vous possédez déjà." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ajouter une illustration de domaine" @@ -79,43 +487,53 @@ msgstr "Les coordonnées de virement bancaire ont bien été ajoutées." msgid "Please enter an account number or IBAN" msgstr "Veuillez entrer un numéro de compte ou un numéro IBAN." -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, {{link}}passez à un plan payant{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Moyens de paiement hors ligne" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "En savoir plus" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Testez l’un des fournisseurs de paiement alternatifs." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Autres fournisseurs de paiement" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Offrez à vos clients des choix supplémentaires en matière de moyens de paiement." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Options de paiement supplémentaires" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Pour se préparer à accepter des paiements en ligne" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Choisir un fournisseur de paiement" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Une erreur est survenue lors de la connexion à WooCommerce Payments. Réessayez ou connectez-vous plus tard dans les réglages de la boutique." @@ -132,245 +550,258 @@ msgstr "En acceptant de partager des {{link}}données d’utilisation{{/link}} n msgid "Help us build a better WooCommerce Payments experience" msgstr "Aidez-nous à améliorer l’expérience de WooCommerce Payments." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "En utilisant WooCommerce Payments, vous acceptez de vous soumettre à nos {{tosLink}}Conditions d’utilisation{{/tosLink}} et vous reconnaissez avoir lu notre {{privacyLink}}Politique de confidentialité{{/privacyLink}}. " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Se préparer à accepter des paiements" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Oui, vous pouvez compter sur moi !" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Créer un meilleur WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Un problème est survenu lors de la mise à jour de vos préférences" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configurer votre compte %(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Installer %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Vous pouvez gérer les réglages de ce portail de paiement en cliquant sur le bouton ci-dessous." +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Connecter" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Continuer" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Un problème est survenu lors de l’enregistrement de vos réglages de paiement" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "Configuration de %s réussie" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recommandée" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Partenaire local" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Terminer la configuration" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activer" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lancer quand même" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Quelques points à vérifier avant de lancer votre boutique" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Avant le lancement" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Choisissez une adresse pour votre nouveau site Web ou transférez un domaine que vous possédez déjà." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Répertorier des produits" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Commencez à vendre en ajoutant des produits ou services à votre boutique. Créez vos produits manuellement ou importez-les depuis une boutique existante." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Répertorier vos produits" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez un (ou plusieurs) de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Faites-vous payer" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Vous pouvez toujours l’annuler dans Réglages." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Félicitations, vous êtes prêt à lancer votre boutique ! Génial !" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Envie de lancer votre boutique ?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Vous avez changé d’avis ? Vous pouvez rendre votre boutique à nouveau privée en mettant à jour vos réglages de Confidentialité." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Voir votre boutique" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Félicitations pour le lancement de votre boutique WooCommerce. Prenez un moment pour célébrer la nouvelle et la partager !" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Génial ! Vous l’avez fait !" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Lancement de votre boutique" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Copié" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Ignorez cette bannière d’information sur l’essai gratuit." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Ceci est votre boutique d’essai gratuit où vous pouvez commencer à explorer ce qui est disponible ! Pour en savoir plus sur l’essai gratuit, cliquez sur Lire la suite." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Un problème est survenu lors de l’enregistrement de la localisation de votre boutique" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "En cliquant sur « Tester les paiements », vous acceptez les {{tosLink}}conditions d’utilisation{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Optimisez vos paiements à l’aide d’une solution simple et tout-en-un. Vérifiez les détails de votre entreprise pour commencer à tester les transactions avec WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Tester les paiements" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez et testez certains de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Il est temps de tester les paiements" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Illustration de paiements" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Vous êtes prêt à tester les fonctionnalités et les avantages de WooCommerce Payments." -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Il ne reste que quelques étapes avant que vous puissiez être payé" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Les acomptes ne sont pas disponibles pendant la période d’essai. Pour commencer à traiter les transactions réelles et recevoir des paiements et des versements, passez à un plan payant." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Les acomptes ne sont pas disponibles pendant la période d’essai. Pour commencer à traiter les transactions réelles et recevoir des paiements et des versements, passez à un plan payant." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, passez à un plan payant." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, passez à un plan payant." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Conseils, astuces et inspiration eCommerce de notre blog." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "Trouver l’inspiration" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Découvrir les collections" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Démarrer rapidement avec nos collections d’extensions sélectionnées." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Collections sélectionnées" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Ajoutez des fonctionnalités supplémentaires ou intégrez-les à d’autres plateformes et outils." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Personnaliser et étendre" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Allez plus loin avec votre boutique : ajoutez des extensions" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Parcourir les extensions" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Personnalisez votre boutique pour qu’elle fonctionne parfaitement pour votre entreprise, avec des extensions Woo. Passez à un plan payant pour pouvoir accéder à des centaines d’outils et de fonctionnalités qui peuvent vous aider à atteindre vos objectifs commerciaux. Envie de savoir ce qui est disponible ? Parcourez notre marché d’extensions." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Personnalisez votre boutique pour qu’elle fonctionne parfaitement pour votre entreprise, avec des extensions WooCommerce. Passez à un plan payant pour pouvoir accéder à des centaines d’outils et de fonctionnalités qui peuvent vous aider à atteindre vos objectifs. Envie de savoir ce qui est disponible ? Parcourez notre catalogue d’extensions." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Passer votre boutique au niveau supérieur, avec des extensions" @@ -384,8 +815,8 @@ msgstr "L’heure de la fête est venue ! Prêt à lancer votre boutique ?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lancez votre boutique" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "Vous avez déjà lancé votre boutique" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutes" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "Domaine" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Ajouter un domaine" @@ -428,18 +861,19 @@ msgstr "Pour offrir une expérience fluide de validation de commande à vos ache msgid "Meet our new, customizable checkout" msgstr "Découvrez notre nouvelle validation de commande personnalisable" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tPour le moment, vous êtes la seule personne à pouvoir voir votre boutique. Pour rendre votre boutique accessible à tous, passez à un plan payant.\n" +"\t\t\tPour le moment, vous êtes la seule personne à pouvoir voir votre boutique. Pour rendre votre boutique accessible à tous, .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mettre à niveau maintenant" @@ -451,15 +885,15 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "Mon compte :" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "contact" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "Accueil" @@ -471,7 +905,8 @@ msgstr "Ce site a déjà été lancé" msgid "You don't have permissions to launch this site" msgstr "Vous n’êtes pas autorisé à lancer ce site" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, passez à un plan payant." @@ -492,61 +927,61 @@ msgstr "Votre commande n’a pas pu être passée. Actuellement, la fonctionnali msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Cette boutique n’est pas prête à accepter des commandes. Actuellement, la fonctionnalité de validation de commande est activée à des fins d’aperçu uniquement." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Statistiques Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "État de Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-spam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Découvrir" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gérer" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Extensions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Clients" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Anciens rapports" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "État de WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "Réglages WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Commandes" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Mon accueil" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Remarque" @@ -554,18 +989,26 @@ msgstr "Remarque" msgid "Save big with WooCommerce Payments" msgstr "Faites de grosses économies avec WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Non merci" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Commencer" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navigation" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "Détails de la commande envoyés manuellement au client." msgid "Invalid order ID." msgstr "ID de commande non valide." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "Woocommerce" @@ -742,17 +1185,21 @@ msgstr "Impossible de désactiver WooCommerce dans le plan eCommerce." msgid "Store" msgstr "Boutique" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Statistiques" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Ville" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuer" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Informations détaillées." @@ -765,6 +1212,11 @@ msgstr "Extensions de WooCommerce" msgid "Extensions %s" msgstr "Extensions %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Opéré par %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Intègre Storefront et WordPress.com" diff --git a/languages/wc-calypso-bridge-id_ID.mo b/languages/wc-calypso-bridge-id_ID.mo index 55220eafdc5cbf5390ad6de133c690dae809c4ad..d250a4e8d12920ed5b168106bc0e3e51f97d3208 100644 GIT binary patch literal 35151 zcmd6wdz@rvS?3QBa+!pX2_cXK$>|}1}dWL|AaJuVs_nE4$ zD(X~CPiHm|E`kAB17bkLHH*L^;sPq@Vo*RJ-~~jM1qA~{S7j4jQBh$L_xpRE_dRv0 zyJw6a{Db=BonM_(=e(EaeeUo3b{;tUq@PasJmpao@Vlob$uYivWwq`m$)}!_B)oKX4>GjmbD-M)M!y4o5y$T!$r@#sDZcyXa3QmLH z13v*yJoKHfvWfAAVW#+0oC3ILG}M5x_(rW zd;z?V>#ts%B3Tl+L9W+^>jyxM{~=J% zeFtQ!lgB`8y`O@ogExR3a3A<`@ILS^aLYR81pGAkYEXmvap1>6&ChE7*$LhN>bX~e zj|V>to(BE_coO(U5Rps10-geXD_s9e`2AdndN%hj0QLR^D0*HGz8RbZ8EWz{xC%TM zAroE3z-{2=;N{>EP~&?yC_3E_o(X;-T>m+!_x=u4{U>eo`pyIO+(n?|=yFi?wLrCd zFR1!{7gRsL6s{iv-^TT~!Iy$>-IOG-WbzbVMud_rpyu-h;FVwlgjJKbfU4)W!u97s zjq6*W=#yOG{W}%Z{T~8F&r3ng!zNIA;zQy0KLUS=>pum52fT~MbiJQRQGdP-il3hH zOy|p;p!!vUs^@l4bbAAM4)|X167b_-3O)p?UuQrZ_2V4ywcu01$Aj+%HLeeVdhP*G z`tUEnYryYitc|4s(+8U&fh-|RDG9%8voTGERyU8 z5&7gLAgU{Qd$|52C^|e0iVpt>z6^Z%^{!V=+L9!X<@%|h>bodhKMRCKk}cqBum_5- zUI`*n$s54)!H7jxqb^MIX-;{y7E!T7AQXWDTMq9;DDjP4_{~k8bfDeFc!M_N2=5D9URp1!+cYqq_ z40sm!CQ$Xi3lzP64HTU}3u=D<9F%_lCs6IJ-s5x`17YQ48ax;LS@1IOS3p=X`3k6c zIrk>#k4r&BJGmZwBiIG^f{*1NR9EtB@CxuwQ1tr%DE_+yV>bit0S|%i14Y-9_wx>T z9jNwy5=2y!cYQ!foFlg6z<;#qN0*7f|8%pZ*@B{ z240}&z>~rILDAtepyu_P;A!A_RC+e}G*Ind6>ul0b`OH9zz(Q!-45!#SApvP-QbhK z4}p6A^WbXmZvrLlffr|Ye4bCRiNs-9y|}+4~oxb zLDl~fQ19IXJ_WoNJPE%0F!({PKlTFGPm2&o^}PoaeSZxUAAAy=2EPcd1Fw0Z+qpSV z^ZqJO^nD$8A9((Y(8b^v!2$U4%=Pgb>Fr(!Y8=l5KL&0GUkjexa=Cf~IL7s_f*Ri! zK+Wf$fE&Sc=iLtM2A{!o3p@>cGk6C0wt(*iPv!bPQ2qV{_>!A4ed!YLB z*dB8No(YOB?*KKQzX56-Uj-!(-vBi~-vN(-mzUoDd%@3h{Q#);f2Hs5e+FE|^|t~_ zD4xmn=>fNc;-h2W z;6+?N2~@k+g6jXX!Slfvh3jLWo_h^A0lpW!6np?&2c7~k-w9p;UI~5~6d$erPf4;F zybjcJM?qL2c?Y-?eBvF{1wJ3-mE`o7I2~RMBC^RZfS2q3OVKTl!Zw1M*SFv4e%|ka zqTe^c_28plhHeHof#-t{gDH5*%l)}a!P~fg7T5q^4?Z6JM=%9XM%ifmYr)IFs{+0V z6n$O;t_6P{R6p(qp8)<1csls#S9-f=f||d}K+X3J;CbLAxEh=XcY!YjuL17|RsUmt z%<24O(C7xLKSx2y!>hq<;5)!qfqw;RJRL5s0Phd@U9ipd##cK%?**s0z7L!PFZ^-$ zuS!t;_yDN>{tKvf&$$a-59;%E2cwg|zAs!ykp6yBya2yM`BBOZl#3}RQ_&&t*_1z{ z=!4jr9DM}*TgqQhM8}&bZ=rmZ@{g1^QR3%c`SMQ6e~mZ5H55o^pFR95pX@o{uT!38 zcij%?>wChrfMME4vZT+qDSuD-9OYh$J};ttg>paTd6Wj_gOs;Y^!cBZPg5?`Mfhw5 zKSTNNly`-D-vA#+zqW&aM|m{gPX#wpuBH4kMV~iQeu44@%4aG1oX@lW1(Ym_uLqQZ zvYT=`zv;8z!SottAvv4-{~P=l%1M;hQa(iKQc%-!xsv}&(Pwq243-f2RBz<>|WM zb28<7_Ramm@YQtmJ}$mS`B}=X6n!qDJfCtZ?d#K`JlDP<3*p{Ra(!92CwP3ge;wba z!~OHZy>Myp+x#mTkDuH5@+r!bDZfhDNqGb16_m&FzVyQ9De?0Ye7S`38cIfa4CQr{ zn<;xKM<}}}4^SRUSw(pa^+-Q_jPe4?w(Jlf`x7aj zr2Gx#6O`YeNKt(NcnRg_DCcthC*WqveUv|^=#$#N!+&~wy?|%+nWIcluA$sX`BTdO zqr97PIpu8>efpH2qWlcy=P76K{*x)E@jZUdiC@4gDP_1`1ji_+Q+}87Fy;M}RiO`W znTSm$HKjL zfVWW|P5BjyVhQC-lU1jkcG}i{+MmnQ`ObXa?x%~LL7Me)yVYs87Sm2UPZ#Do>2%gk z%RJWuy|nCidig|pu#?Vb&HBAGJCYTxY^p^Koism^_ZF#OUD|EsS(#tbo+`W7T$`nH zy?o}nwHKFb)1q>Gq5H;&z&t=|G>n)uNLVygid=eVS$rgW003UUz$)BL(9d98L4~ zTt+RTd}%KZ%DhKqGwGx#4Dr+3I=#k$9(|r*OkUvvtws_|&*jt2bSkISJZ)uz_OyPg z%~GPePixWTut6!8s@`hb&r@K0x*%q_d zrkx{@8 zM=xzg=CfWiS4;7+eleYF+p|4gpH40mGyP z`H>=DkbuD#6UjE`b15n3b?%gXlbkk>nOZ87ZN1I{wAp#IpSMdRT(|>gF1h1U$t#1R zC7zywSTN#kozC{o{CwV<&h4kZbEygCOs|8iT$0UquNf82WZPnz&7wU-ZSlgK6luHD z9xv5uzc`Yo$Bv;Fns?kWD4G7Wk@d4<$JYC;b>g!J@BEooE1k<*-E@G2&O;F13OdC3 zEovGgSgoV!0hjNxrk*C!=Rqo|Zr(BliMGnxuxc@n7|`MARx#aFhu3V6T5^p#vX-vr zZ4|i;COeu+R=oq$S!;TLq#C=X`=xlq)799JR|Kb_`%q!!ZwGjpS|z-hlHCPj%)=vmke=_%;F30pBc$LzSF zk{P2ryq@Qca!Yz+4;vU1AEbBfEfx@2^P?T4Jy^=(cIOTBJg@ijY+jRSHWMo+W;FiR zSfxAF^5M=Dwgpe4r!LSn%;GF2%Q}E@ZfvO-d8tY_0x(t^lqO-&MXWS;_VTsa^?_z` zAfhrv&2FFTbWjo*<6B4<@+kzAD_5|lQ0#TnC{p>Dw01cIHPuUXJ!`qr?<|Ovv9f4m zCAZl4-tZSxCXCZeSR6;Q|;o}#_R+A?i*I!)u1nLKZ;6S3Ova~0;R z(I47RonA)D=}xQDlVOQ=r`4Io-pC3EuIS404Ex+(KI%G2>SM2L{_zMv_i!NsHEbN= z4rV{u-f6XRa|6T=&YS%XB3zp67_TDH{ee0+@@!=ms;8M3M0@3@gUuLLjpJmF&+zf! z57JEdmTG!T#ntZF04~0?U-Vn~W#~S4lk|W*m#6||yOua!b**6>gsUt+Ig4I4A~T)0 zawb_!$JDs3kSIX=a%^cEV<&ijBHc;_9ocR=EWKTMBi=1%DC-A&fO*mEnU8a zm0fOnJ;#p=czC>5cG5w+C9TA$vU&!SqA?XJce#cTnaq_cPt=#O5bOtue1I{EpLr|e!& zA&mH29Hwp#f2TL*$KzjzZ+PoQd-Dot-G0_hn|GIdD74V&HB>*)S=5cj0ho$Sv+%ngV7HN~ERuyUz_cMKIhL}qFb z*P!?pvPCW}9@~LefGnv#uiw1cR%bD5_3`!QdY!@ST$%;%y;1AyJX0le;Os?k(e2Pb z`ff7dk#F8J9_kKy({lvz=C#t3At%&&?d)J0M!Y&*=~tI2>!DO_2uhf6qJDWOQBoP+ z1U}SMZ~Yy2R6G^J=@=gHR^>+r>4H0IE@!Q8buO*CWr+=AcH9$Y!fa8AlGU6!cls?R z1g|HOfp%9`lty$$xE4i;KUnEs49+kboJe+NJp>;5&S!1uDB2qIOr9`VxzwS4lus0< z3YV%8Wf7Mv%t~8I*R-E8c`!>jXU zgU)27!mOEss8YsX=1;vG4VDxhrALZvINKIAA=MVLR1@yZTN18g$;wn=dtDpLzA4^K zZzlJG2r3O>Of33XW#|M&^-8%A7F)O5Wfw)#unT30g0$*4rKIeBHP2Gw#8*+Hjs7@G zH0t6MEr$JWyb&7c7hR_dA&nehY(U#zu|B!@VS%I&WallfW-*+x^x?sL7Y%`B9x};D z+KADXb5k8Gr;pBrF-)G>ZI5ZOne*6s)70|V+q0RRa0p9!0M#|6xLVV6uxK9aG}omE z6bGO*U@UR&e$p|u9F8S+%FeXRL>4j@ylq`D2R&r5%<;E}>$7$kbDYki7@SuoungDl zBT0d#Wjf56cO&O9%0fLq_u!px)P&A<(riwFlsZTJfn#hbH5}F`h1x@&Nf2U!Gs_F{+8A-H1kau@wNsLEHCGrr zqEXr}rIdoYNh}H|Qx>>3@>d!Xc;9b76vI$g^T9ua zgCxm}D~5^QEy*6wB7iXLS_~FC3nlJWmtG}%wr#yR*|Q_Mo|SUkGvDoC2BN$r;d(>} zSG@Tjm4ZYEs{>&~c;=Gf&>h(8#OcUAZH0}P{U{-r6!$AkWNSY89?!?5*o!?O_vk_1 zo*fg(o<6~>vQ9RoRqUe-Dg8Qe)G{V@K6acc#t0Td@^x9b!=$ei=vM-+{YeVNmd#Yn~KzZVF&{BSww1<2R zB{$LhxXZI`G;Nla-F&*3!R}YwbD|e*25K+G0Jr{*X)O}|%pkc|Umf5T{35C1eQ-l; zOP%D(hEp-?z7FX=7Z^|@HB>NR;SJqGQEmLTg zhUiF6kiu}A!gY8GQo3ok)0js6T5se z)#R48xkog}SEBr_4SZ~*fh+^rG^=IOR^)tkxTWyMLx>P6)I#H7Ks1r=vGpShrH|(? zE{if^5WME%a?OdBLw}I^TCL{(djs|#0D3QtCXun)%5xQGz&_#)t!*y2`sWx;Ex;)`2%bfL5#{|NtrgA!O8{ea0wJzva;c4Uu znL%X2N-kR3vdm=y|A(lIn8vLxTG2#)LO)vmb7ZCVfUU^m6>0^{!Dm` z2wYi}3 z4k&{~WCq%z^XQW3vj>t^g)_g9?K5LzCtEU%C{EzF^yW$KS4?~B$#D=x|%8WY1EQc_PU3f&JF60 zxWNWmF-^bIAllL(d`-UPo}4{ohJTBGYmJ*zSh?>g^lDj?-+j%1Y$4y>;R|T-%8{Zh zrV4Flh~{sFT`A=3$%M}6#!J}ZU$tjSy(mwJqo4L2Hr zB_!OD#P~y0wj>1U3C$@7Ag3hVc=?sJx|~2PZ}3`ZHu|w@MzXFq^?*{@c1uLlMhH0= zrsZ{)o4x$S14|zHrHq7!nv+UR;r!c+^_wJNe7(X$0_K$by%u9@SvKVYNR-l>POpcz z13$|NQSQ|IB89N>1rZ)4@s~fPHJR!G5pP*N#%Igx33`39p3O9u$fr;YvV4igXX7}r zi=?kV#SsVHh6sK$;gburO;EUS3F$%C- z)$?%*eRGlr%n*OxeKXi4KMMKOgfYU>9?*m(<*;b#8v&pGB^epkp?qGsDQ2~`z+sO> zDb2ICvZXDmVV&1ZT4hB_UJ0rsy(R1gI*3MzoXYRK4+)rlEh3P!UYIK|HP%R_7&~O~ zFi-xpA{qH4BORQuipaZ4MigZjM<^YliDbczNy1X?Kllh9L}pco;=B<0-wt*BMHeQQ z1i01`XHWs9i+iA5dm2yuA?C@}$>xb~khewOm0-^yl^LZ?a(BrFw`$ocEM(5(BoRAl zGJ8E3MEj1gG$je4i8MGmA`1rEcHg+?uKf?Zv*^1P$8bgUr{WWeBtyFtW4< zr@%n`XA?3EynJEDTU#*t@qh(wrKt{22Wvc9B!xjMX0c@;+Y_TDRMSwNXcjjQ8z8#Y z)~R&OFe$x8!>RRVj(nmmM!PWbi`t?}Bv&4Ug_gFuu8pWLAX;OD_a8|5+A2rR%HXyg|1_gU-Jgb#rZ5-7INA_lll5SwN)@>WW;C`ih zU=ULVECaGSjL{=QO)C5#xg55o^dJQ&qwTH}Hi+rgB8u5dS4xt$DfXlA8aog27H%-H zM_SHz*#B82D156>*j^h|cW{=`j2gb&=K*lIG8Er<9k}z8jri@ zNYV!a3>nwAXjpJ(`+?2sgkf8*-V>=xYSmU}rADg6l&LUA9GpW_Lf5y`UI_GN@9KgmJc#>6_(Fh#~a@*QDq z7|FJ4i_F|5VGTL&$)$qmQInzNJn&>D$wN7p4wG)iq_!4SCBh_q=s$mw+=_Or95)gW zk(TU^AcM)C$+mBgFe%hSVRyK8R@XK^pg1b|t+qhGwD|0;d`oiZ)_uO&S`*{boA+D; zpc*EUL$*nno#~iIaaNs)^W3{_H+*m16sCMAg)wA++6UlS5iPkivRhry}73?C>tj(cLTy=&e+%bM^ zVTkjH=&J@!ac%p1J&%xXe1y+!s-A-|7nk)bYoAUdM)U~}CUlade|lTa>L;8xuM+`e z|9DvxX=P|g){whn=`MLD+Ci95#hC3AY_RRQ=rfYqHs0EIq^PynWk1ulUcuJO`eW&2 zw9)nF-Ip7EZZI|6v_106L6(B*FLP~nCz|On57kzPTHNVu2{|T4YQW29y$R2yLH+OQAc|jwIu88B~xN1M8c_E0hJW%yg@oH-IUrU z>tRa=u;z#azA-4eJ!7mLT}XD|;@j@HtAkMIk_B-ROepuA^;9GwzzBIJ%zQdVpX0_?aTpyVc`3h7QgiWVq*c>U+ zLxiZv;-Q}7?1?b~twnO9qY{0TKt+p$7zpIHL@12IDy}>h7~K-2eTrvVp6?K{9*!a9wc|zgwOluexfI&v%%c?C6 zOFKuZ&Q!m6FRIig%n@m9?!r{w&S$h858~Iw`#{+5pUn09-E#B#^{iGkOo2*t*C)r0 zkq%@D?T$Mp5s;SlStY43@k$tlGb4|ITspwt9ARx^ZH|s_hs`_!Woz4b(^ly zIvZcFYp2(z8?RaQ-0@uy2N$!`+nnxdb@~TnKh|%WxME_%c-HF9WvlkVw*zvcn=$CC z4)i*Q(Fx;w8pD3qNjkp7G_0}{a);Xe0h^68%nXY{EF0q0WZHF`rHj-~eywC@FYc_o z`+ld{vESI2JDX{TL%8_c{A@F&QO#16ZhNhANt2qaK$W zi!1Xf+fKij+2J_0vh@9Ioc2AlQG(NPcJF|;2(>aaU~mu0B5j%;b;2|XbGNfrlP6d= zfQqb!9wt{NQ{^iMxN0nAhF^VwxX|M~2tPElKHm>Lm!NO9(7oB&K|5ok9z<;vL*pZk z=h#Nhkg_i43$brDHE7ZnsF+FArwCKc}jzUrXKxIe zwHqFEdpIp-uKh#?x!UWmI;RG8&Q1?!(4Mn&&E@qQ>(^@XR)av$nQmds5N>B0Q43nP zX~YD|T9Zo27}T8D+}Xv>(m5$aSl_iWtHJe1CUS?xvL=VzWWGd+;q=;YA6=xJd=n9k4N`MGxnSG;d-P*`c_?orB0z$&O&@ zXM!;f&A~8r&1!B~aH4tpmytopNQhqb zX5uVW^HZuXg>Ru+T^3yi$k+`~VPWQ) zIpN1Zt6<`>E$M!=gOmpXT-ldOFY7@0ESZhGy=ay2mPxY=0I9!Xo?W&r48P<^dfSI9 z(FzQ_fb2HtkQpS5+(72ATQtcHwzv30!G(g4xfNi=Ep+s5g0Xk+OPYz$^poFFWh z*W|>_4ZEmWhj%dzcZkb^v)H9>tj%<1nuC2|I--d%F=%RLp)!$zC?7!(no@B>aJQ8Do3UBLf|0)>(RD+2d}rcs%?>zYJcBsuQJ4R~#gCFRi2t>G!;a2h*8v}SFyNf_NLUn$7msAD@k zva&36sNSR<^{$Q4L5Edkc52^KQUaqpD1bR3F9sRk9WcOeS%R@&K!UuYs?6dcD zqxxo2f>PifC!NIm$<6GH?Pcq4!zo(K=G+r#k{j2dM8pYC+0Xki4J}-bA{gYm=-h=8vvt( z?hLL^-J%TB*ULy-O|5LV7E6eml)iT7T=VQchUpix4mEY@(<_D~hrsFtt1#{iBEKlU z>Sc&(zC=YI4!IO4^U7b_KRnczRs)clmaViSe!-8$`q{fS^(ZPuOCAXIWL~6V4oQKg z^JXWcblI}RuzVYq=12^UXtUgx;(+l-g3DX1#sFD}s7gVxTar;Cn?^2Itz(UrR>myIFtLs)$H8d@$HF=DkZOJn9HB=a%HC z4h)Vmsl6Qny5%PZ%N(5pfofjx@j4%R?P;Ijsf>7G=>Tt8^EVddWGDd8SJabhRgqsN z-DftQCtSww#zSt0MSaul@OR9e?1o|hh;QeuuMC-omUi1cpKu7#BN64Hjc$pT578)C9dhj^FVtMp>vmn6wQvI zrcDnIwQo{MWc;G_pLQ=ljfL*3J&?jZ$?}jj3>!APClk=`=1U z8$}9Q$pq#~UqWtGk}HwL8)#-MwQ@FMG#iS?7iqifHz#8kYbWa^BF$Tv;G9uuJ`O=L znNjkjHm73Fc6pWRkQsIx7pp8f5oyyEq?1NM~6Vi>fyw6b9YR0pk7&3|5R?lsjOyUVxjWW284S7~n5?I3m)}8iexC_v+wk*9lFi1IZV=JaO2tTO%>u3Deg!>H zk9tVrT4oH>#~IQXB0G^R&x~_r62<1C%mYZgPEU(h$qRE6FbQ#Og9ZPbt?-k0wR*S; zHC+t3uAUq!+%3sooKIWs@^|pEMv{THwN;y8n=xejPxgXWVQBo>f`C!WS1u7D_77SgC1x2(>EaVS9VQ}VAcikJ z@)MMn=?-zRw;giZ9xB(2P_p0BLi;+HGQ1Xaq>f4w?V;zFs~D+J$t$W`@@fngL=$0S zb|JwZ<@KZIBAw@!KgCbI$>EBTT;(nnMWG+Pvv-7GjfqU@($#gWPgiNGH9mUyx*ixCV>a?ZlSpNE;%nhC^2OvCY z8q(<26*`Y&fD33k$j5Izzw*k7;jv4$y@V7a8b)eIoe6yp3ldvHUxyJXe}TypY;;@a zE|oM$ZW_!hl`TifFIL;eSXpMDJPRCHY4v?3 zN=t-jNin_IbUcrsNZqQNBHsm-IX+;4=7>|e+ylTrN6AakMuqGbwonw6s2|Uyaq}t_ zTAAC|q(5`XLFCJ3V>v$t&aj-LDQjF5_ZP|>uZ{d;jkK=V{OG0_ndBvlsKikxJgn&p zdG*ET{YzaC_CVMHPNIlthj#mFeEq(S6b=|}7TioqMq9%9y!5PTxN38r(G z)AVX3NVS13jqBn%zMb5Rfzfe;JWp!;Kn|eVh!8rz;@@9d7PbBW4k*TB|K?uM~En(~XHptFut3-!0mCDRw9!h)y zwx11~a@mP`I7A&Go*9M+%5eJTjJP4eGq2KqG2<4}j_!#Jla8V4dN>tV`3QjvwmT>- zXlBb!e~#XYoU!Zx=)Rb&s1wk4PxwL^Mh2}MNgXrMab&g-X6iL7QVZD>pmUK+Fx{{MNwqVIrQV5Mj!(rROeUQE! z$yUn!5Px|LTXpq#kJB?-mRlC)M}lC0wLnRn4&!)U$~+luu;AL0sgEdoUL~uRRB6P> zu5DTL#=yD}7U5q)V4q7C(aQWSo&;UF`K1$E|oXnv%JaSvo7u+Xr*F;a}N{1b&$h0JvLROwIz`aiUPBbGw**Mkw zE6ah8m=v=Fmfs{vh0oQ};s9B-;hLOgKZNH)2CFaH)gIVi%RZu3l(UVzV=;xaRES>8 zFjy$6KTndyEi@jSR@1mh946IO`d=*J5O(Iv7{`BwP2K&$yoOtQ=>%;kafP8-+JKoN ziLsWGA&F_}(d}cJtBTd?ad%v8jHV`TJ5;Au2;J9FOD|&y2U^+4dCas?(3X-b*GaTS zWLHZfM|6!nT+l> z3LEn{4Fjo_;v6~zTAC-WPrX^GQNZ*S)R0c`T_K31 z9FHMahkT`tC`z*uF*s z=e{O`R|nB`wxNKuk%VT^EQe`_kdG9(8I`QNsCA;Zr00Te^Jfpj?4*%bXvGu5o&}7n zQk(%8Zg5iPSfG-+xBL{Ht8M?WzaymmiNiiQ1#OFf#(_)?EYk>AuVn0o#8f2c?!U>M z(^e$Jfg#kT`_h#$I}7t`N!@}1pRTB#hgxOn>I!}L1tYVYaWPv-1dhxY`HkbKXh~FR z?CF85DGvr#OZjV8`N*1=Gu3cm5`t-+W69bAcFflmmbS;A47JUPRboy-kUT%_FXX^$ zt-oloOroO>^5+RyLeP#5#nwSZh7?Lr;@V@bC1i6#jGS5wll=&6hYO)=w~JOQPht3R zgR~e#KGb$`iQullYKc!%NU}auul?Rj19)4NWxCaro(g-dm~ePr%CxP{y}HE0DeRPErIzy+CPG!KVIjsM1PG6K zGcT5pf_ZDJmdmv3((aq3@ra?m1wW`ScI()2*oonWBxxQ+yrUbF*xb$_A)%(0-6rAG zD}#gk&DO(wzHrB`wYWL3N+yQpIOW<*_lh~RZNjKjo$Ikas<$EAViUtlfxO5$yWj%KgT7c=9@9< z@Yk7R99G?+kE6#}hI+CZO-+l9M55-&ndYn9res&x?;DpkCDPHz;Yo2@LtHUJ!(n33 z^+=1!*cMb-%}B5aVa{j8VsXLTGN;O&aC$SGp*3X%3nIHj0_hHZpvLxPd4kuv&@^;@;?>Ey`S+5;8{)qYQw-Ko5_p+nQF zBKqh_EDh~P&&t+g84jZ16vjRGwxr?QTB&q`?G-izCbxAKbcB*@^U#c%D7$@<5n6u0 z_5j%uJ55{Fp5h{DM@nGfN?|0=!>-DkBr`PNc(YYq8Hg%i2&aj>VOWdJ!y)gDxZ=0@ zS_(bXK5WE7!UE50&vZ3ip2)Q-Do=RU_HFm^tvYQB(JQai##D7MoUmYT+Z2DhlO~jcnhW$Z zzZ^%B{A82u@3-T4N7XT0p>*v?t^N`x?ecaM3Z4E#c-UNmh6#IUkrd65vc@`l8|DJl zWlMflc4WvVuB5AdmLa$t(dwuP;@dfQ?@qL@H#BFf#Y=NuC~e=7=FC&uP{%PQvbg^d zJ`ro1!}PfiUBb@H=ZOI5x|d|5gAutCrK%cY)P zWQjl&btF!&r<3Uxeiz9mH#lZqd?VcmS`}ZVLXWM;DIB3%PoQ9}r!9J{R`h63`~UXdpyzas-~MK1ckj%6 zGqb_-dlD``?}|2eNqksQUMA9scUvp<71p=og)*X}QcqzX_QDI8gf}o5zr{JII`J8( z!1lNWQ*k%8#RE?N5$s9(B+gYTsy?97osP`T42EM+2CBpUxCLdP=P(6Npv>(}r~f@H zqqhKsaF|aZKRSz$Ea>fRiTMx_%6y!J2N|J=b(IU zEe^v&n2Q(CK-XK_@p+U7eT4G4YbX=Bi9;}(*~$QOun8AB?JrO=_iyZgl9s-ZicxuBE*06cF^;7u z{S_!@Vlhg}*I)p*;C=Wtj>fxtE42ep;=MSYFG>FyOvE2iGUDoEx08`wP^o>$zsxL? z4%xe*I2nsE9~)67@G{EGFQ6Q%t4{k%l<)lqB_ka(?3MOM`P^_U#A1}^twA{pM^T>l zVFvk^nOt`|zD1s;63LIGG7CrHVC;v>Q9i%LX*Z!P;B}N0o-aThV}D+ltD1q*uIEKoxCa|?KXSfQ z2D598g(wp)cG{IVlJ+8$)bB)&PgFfdMKbU*%3d|&R!kdcPhdaFH9LpH@JICG5WX}K zn{XFi#=FpBgIS#V4L0CkQ4Zq*uE-p2)h=WR)tn>Gi!$4x_I1cd`C=tX>eis7YzwwU zjh*mu=lx^I3e>A8E4_$vHaUJNjy|0@)^nkB>!R(%J({9w1i3( zl@9m}rs8qOx1IhEP*(a0R^m;kJ(D{n*Q$mWIdqR9yQ5w~IUCI=x8rk^jDGF({}`}=!Q&dz@1Sg02rKaNt70o#sO>IF>2Bz(>BG)n6Jfa!SIX@7&=XsZeK zq3e#FX%0eu!&DKaW z2<*xm!?7pcj_=@7d>b=JkF=X{G#;2@ulN#5##&FcZ$Ss_LwhjF7TtmUa0xcyW|Rq} z-9hFUUu9D1jf+uIyc*@YHKL?!KS~OZVH-S!TzPdG|AGHP$xQP!dtzT9H&hLpZvTSb zh4T5GD9?KXcjNmQmBX@hhCQQ=C|j@{C6#-zKR${wfwvsbIsKoY?73^Eedmb!#5VR||F-$3R4aytXlW+_!m+l~B2sQ1zBqB7h5J+Qdc!)fkB z$N|;F z5H00-Do+zjh~aFY$ar{9>iS)kB(;}h%IFs6_TX3I2}m)4HLW@5Bd_F>qz1y zX;O9&a{r~QBgniuK&&NJ5s8Ex+LJ^U(VkdFNRgC35wF?*LnA+It(^9L^b@je*~DT( z##gIhk6l&w;27drg0mO@_dLW;uP9|8ag=z5*hxq!u!&zQr>fRa;TKMo5OTI2C!}n! ziNB^Ye!Qgfx{r7&-m(vs9K4oNNaYxj>~wI0)FZ?}LJnRHA!P+oDiz8iVm9#@!TF2- zs|n&Imsh!>QInVB1XuZ18BDFK(;AC%Vp~ctD)JlAjc7~c6H|!@kx59gh#0Ynm`|J_ zq>Lci5DCOC;(p2hTq;shh`M;qzGCC37ZdzQ#mmFIrV+KoP{K#JiI(ytm2#)?9BQJ0 zI7BoOGYJoIAF-0?Ow`N&*gZgHIMGBLCZtRxHWGsfDNBhYB22U+ju3r`dkKTcBN*~* z+EzVcbb70lB8R6=@i&mHuc>-P@1FW#@8Q}=uh%Ei zyTmT0C%AM`Mw$LJMbrIOby(dV@P|!Do@~+4;IZ7gv42y7 zVd>25U{X~iCpCujl!EP|p~cpX&<*En|%*TxYBcM1n>rEbVKXwPCv5#!t^wr2(Hj;lQ9r6a8jY zy}mSfL0f;Q!4qUk-w(;rr8yg7lZT#n>Fv3N{Q^EqO*hQipoNns%~I1#jX;eNuCt7W zV89)z4(Gvu~w>Rl7Rjh&fvvz5L&WvG5@ z>YTI%9&63dR;LzP^*qATP1APh!1O7x=IMuBdPv!Wx?}l1{YiO`4h6&V3XHswMWYIe z^2Wwovu3+8LY{ilYx++=HQqGpf>zChf!U#f#q>q!HTE=Q=-smu2WN+jDl1rL@@d2E z@do@gp4v!|rs8;5eot6Vhp4B_(K?|brq5PP(MRW|>#ydH)PYKO=NVSLxzeoj7?w8_ z-_Ka)yiqQFeg2)g-|BSz=7Nv)_&b~R+lwmnh{gN#7mGJ#O^Z}T{IyI&F<{vAsxs5R zG7^@KQcuXNXV+?$EbKHX%=UUCY_N~skVl_gGBmAa6k}l^kZY7V%Zcb!jXm{>a8hSq zgB1+aTXlx%4Ot<>Yw5hDeTv;?gBfNazADonju?~tZj)Bf^wjZ*P((gTQmQ;5zbBMy z%(47t$PCisw*0lGUvFEQ)xl>5y;iuP-mJDb%qN%bO8!|g`|5SeO51uF*vmYNmgnYI zTE2!z&@WrSarOr6G3A(sO=eLi{Vi*0IjWad97~$y4SQ;MQ_rees*hHu=nt#&be_9D zmT9FV=!3OW`b}ou%wJWS>r5kLg(E8?w~lQ5ta@`}^E_X=VzK&U*RXjWx9J^fgsq^* zXBuA8Sf|RZaDZFZAn8~aUuU4EhOApUqu~MFE3h#sveIKz2dYfn&@f*AIne&+YrVQ> z)n9aKa9{GRUDMwOi}Z(ISV{}0QbXv+Wq diff --git a/languages/wc-calypso-bridge-id_ID.po b/languages/wc-calypso-bridge-id_ID.po index a076c9a4..1e4969bc 100644 --- a/languages/wc-calypso-bridge-id_ID.po +++ b/languages/wc-calypso-bridge-id_ID.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-14 12:54:19+0000\n" +"PO-Revision-Date: 2023-09-13 09:54:24+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: id\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "Tidak menemukan plugin yang sesuai dengan kebutuhan Anda? Mulai dari integrasi layanan hingga penyesuaian yang unik, tim ahli kami siap membantu Anda mewujudkannya." + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "Lakukan sesuai keinginan Anda" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "Jelajahi Ekstensi" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "Sedang mencari metode pembayaran dan pengiriman yang lebih beragam? Ingin membuat situs keanggotaan, atau menerima donasi? Pilih dari ratusan Ekstensi yang diseleksi dengan cermat oleh tim kami." + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "Perluas toko Anda" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "Serahkan semuanya kepada WordPress. Buat toko, hosting podcast, atau pamerkan karya Anda. Anda yang mengendalikan lebih dari 55.000 plugin." + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "Sesuaikan Situs WordPress Sesuka Anda" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Telusuri plugin" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "Ubah situs WordPress Anda menjadi apa pun yang Anda inginkan. Upgrade ke paket berbayar dan dapatkan akses ke ribuan plugin gratis dan berbayar. Ingin menjadikan situs sesuai keinginan?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "Wujudkan segalanya dengan plugin" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "Dapatkan fitur yang telah disempurnakan dan perbaikan yang lebih cepat dengan membagikan data yang tidak sensitif melalui {{link}}pelacakan penggunaan{{/link}} yang menunjukkan cara WooCommerce digunakan. Tidak ada data pribadi yang dilacak atau disimpan." + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "Buat kartu hadiah digital" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "Mulailah berjualan dan menerima kartu hadiah digital untuk meningkatkan loyalitas pelanggan, meraup pendapatan yang lebih besar, dan menarik pelanggan baru ke toko Anda." + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "Tingkatkan loyalitas pelanggan dengan kartu hadiah" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "Hadirkan produk Anda untuk jutaan pembeli aktif yang berjelajah di platform TikTok, Pinterest, dan Meta melalui iklan sosial media." + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "Jangkau lebih banyak pelanggan di media sosial" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "Jangkau pembeli aktif di Google melalui listing dan iklan produk yang dapat Anda buat dan kelola langsung dari dasbor Anda." + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "Pasang iklan produk Anda di Google" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "Coba AutomateWoo" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "Maksimalkan penjualan dan bangun loyalitas pelanggan melalui pesan pemasaran otomatis yang disesuaikan dengan data pembelian pelanggan Anda." + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "Otomatiskan pemasaran Anda" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "Manfaatkan alat pemasaran bawaan untuk menjangkau lebih banyak pelanggan dan mendongkrak penjualan." + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "Kembangkan bisnis Anda dengan ratusan ekstensi." + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "Jangkau lebih banyak pelanggan dan kembangkan bisnis Anda dengan alat pemasaran dan pengiklanan bawaan. Upgrade ke paket berbayar untuk mendapatkan alat pemasaran yang andal, dan kembangkan bisnis Anda sekarang!" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "Bersiaplah untuk mengembangkan bisnis Anda" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "Ilustrasi tampilan" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "Ilustrasi produk" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "Anda sudah melakukan semua langkah dengan benar, lanjutkan!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "Hore! Tinggal langkah terakhir! Bagus!" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "Sedikit lagi prosesnya selesai!" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "Selamat datang di toko Woo Express Anda" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "Selamat datang di %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "%1$d dari %2$d selesai." + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "Sedikit lagi Anda siap berjualan! Ikuti langkah ini untuk menyiapkan toko uji coba." + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "Sembunyikan daftar penyiapan" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "Proses penyiapan toko sesuai kebutuhan saya." + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "Anda dapat menyiapkan toko dengan mudah." + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "Terima kasih atas feedback Anda." + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "Bagaimana pengalaman Anda?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "Sembunyikan" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "Tampilkan daftar tugas penyiapan" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "Pilihan Daftar Tugas" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "Selamat! Rayakan pencapaian Anda. Setelah siap meluncurkan toko, upgrade ke paket berbayar. Setelahnya, dua tugas selanjutnya akan muncul di daftar tugas." + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "Wow! Toko percobaan Anda sudah siap!" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "Anda keren! Anda bisa lanjut ke tugas berikutnya ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "Terjadi masalah saat menyiapkan pajak otomatis. Coba lagi." + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "Selama periode percobaan gratis, Anda dapat mengonfigurasi pengaturan pajak penjualan, tetapi tidak dapat memungutnya. {{br/}}Untuk mulai menjual produk, {{link}}upgrade sekarang{{/link}}." + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "Saya tidak membebankan pajak penjualan" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "Siapkan pajak secara manual" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "Pilih mitra pajak" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "Pajak WooCommerce dapat melakukan perhitungan otomatis pajak penjualan." + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "Automasi Pajak" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "Automasi pajak" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "Buka layar pengaturan tarif pajak untuk mengonfigurasi tarif pajak Anda" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "Konfigurasi tarif pajak" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "Alamat operasi bisnis Anda" + +#: build/index.js:1 +msgid "Set store location" +msgstr "Atur lokasi toko" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "Mohon pilih negara / wilayah" + +#: build/index.js:1 +msgid "Post code" +msgstr "Kode pos" + +#: build/index.js:1 +msgid "Address" +msgstr "Alamat" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "Negara/Wilayah" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "Dengan mengeklik \"Konfigurasikan\", Anda mengaktifkan tarif pajak dan penghitungan. Info selengkapnya dapat dilihat {{link}}di sini{{/link}}." + +#: build/index.js:1 +msgid "Configure" +msgstr "Konfigurasikan" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "Lanjutkan penyiapan" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "Dengan menginstal WooCommerce Tax dan Jetpack, Anda setuju dengan {{link}}Ketentuan Layanan{{/link}}." + +#: build/index.js:1 +msgid "100% free" +msgstr "100% gratis" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "Didukung oleh {{link}}Jetpack{{/link}}" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "Kepatuhan perhubungan ekonomi {{strong}}tunggal{{/strong}}" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "Penghitungan pajak penjualan real-time" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "Ideal untuk toko-toko baru" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "Pajak WooCommerce" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "Hasilkan lebih banyak penjualan" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "Upgrade ke paket berbayar untuk mendapatkan fitur yang lebih banyak dan mulai berjualan" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "Anda sedang menggunakan percobaan gratis. Untuk mendapatkan akses ke seluruh fitur, upgrade ke paket berbayar." + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "Ilustrasi navigasi modal selamat datang 1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "Ilustrasi navigasi modal selamat datang 2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "Penyiapan diperlukan" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "Hasilkan pendapatan dan kelola pendapatan berulang, serta dapatkan deposit otomatis ke rekening bank yang Anda pilih." + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "Jual ke pasar internasional dan terima lebih dari 135 mata uang dengan metode pembayaran lokal." + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "Tawarkan metode pembayaran yang diinginkan pelanggan seperti pembayaran kartu debit dan kredit, Apple Pay, Sofort, SEPA, iDeal, dan sebagainya." + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "Metode pembayaran yang diterima meliputi:" + +#: build/index.js:1 +msgid "& more." +msgstr "& sebagainya." + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "Jelajahi ekstensi" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "Tambahkan produk Anda. Tampilkan produk atau layanan Anda dan bersiaplah berjualan – tambahkan info, gambar, dan deskripsi produk Anda." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "Impor produk Anda. Tampilkan produk atau layanan Anda dan bersiaplah berjualan – impor info, gambar, dan deskripsi produk yang sudah ada." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "Tambahkan produk" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "Impor produk" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "Tambahkan produk Anda" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "Impor produk Anda" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "Pilih tema" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "Pilih tema yang paling cocok dengan tampilan dan kesan merek Anda, lalu kreasikan sesuai keinginan. Ganti warna, tambahkan logo, dan buat halaman." + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "Pilih tema Anda" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "Plugin" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "Kembalikan" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "\"Pekerjaan selanjutnya\"" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "Daftar tugas penyiapan" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "Tampilkan kembali Daftar Tugas \"Pekerjaan selanjutnya\"." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "Tampilkan kembali Daftar Tugas proses onboarding utama " + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "Gunakan pilihan ini untuk menampilkan kembali Daftar Tugas proses onboarding di Beranda WooCommerce." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "Penyiapan" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "Pengalaman navigasi kustom yang dioptimalkan untuk penjualan." + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Menyelesaikan pekerjaan dengan WooCommerce jadi lebih cepat. Pelajari selengkapnya tentang navigasi baru kami—atau jelajahi secara mandiri." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Gerak lebih cepat dengan navigasi baru kami" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Dapatkan tips dan wawasan mengenai performa toko Anda setiap kali Anda masuk ke dasbor WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Selamat datang di Beranda baru Anda" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Tentukan alamat situs baru untuk toko Anda atau alihkan yang sudah Anda punya." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Tambahkan ilustrasi domain" @@ -79,43 +487,53 @@ msgstr "Detail transfer bank langsung berhasil ditambahkan" msgid "Please enter an account number or IBAN" msgstr "Harap masukkan nomor akun atau IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Hanya Administrator dan Pengelola Toko yang bisa membuat pesanan selama percobaan gratis. Jika Anda siap menerima pembayaran dari pelanggan, {{link}}lakukan upgrade ke paket berbayar{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Metode pembayaran offline" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Lihat Selengkapnya" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Coba salah satu penyedia pembayaran alternatif." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Penyedia pembayaran lainnya" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Berikan pilihan tambahan bagi pelanggan terkait metode pembayaran." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Pilihan pembayaran tambahan" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Siap menerima pembayaran secara online" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Pilih penyedia pembayaran" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Ada error saat menyambunkan ke WooCommerce Payments. Silakan coba lagi atau hubungkan nanti di pengaturan toko." @@ -132,245 +550,258 @@ msgstr "Dengan setuju untuk membagikan {{link}}data penggunaan{{/link}} yang tid msgid "Help us build a better WooCommerce Payments experience" msgstr "Bantu kami membangun pengalaman WooCommerce Payments yang lebih baik" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Dengan menggunakan WooCommerce Payments, Anda sepakat untuk terikat pada {{tosLink}}Ketentuan Layanan{{/tosLink}} kami dan mengonfirmasi bahwa Anda sudah membaca {{privacyLink}}Kebijakan Privasi{{/privacyLink}} kami " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Bersiaplah menerima pembayaran" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Ya, saya ikut!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Buat WooCommerce yang lebih baik" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Ada kendala saat memperbarui preferensi Anda" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Konfigurasikan %(title)s akun Anda" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Instal %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Anda dapat mengelola pengaturan gateway pembayaran ini dengan mengeklik tombol di bawah" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Hubungkan" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Lanjutkan" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ada masalah saat menyimpan pengaturan pembayaran Anda" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s berhasil dikonfigurasi" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Disarankan" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Mitra Lokal" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Selesaikan Penyiapan" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Aktifkan" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Tetap luncurkan" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Beberapa hal yang perlu diperiksa sebelum meluncurkan toko Anda" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Sebelum Anda meluncurkan" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Tentukan alamat untuk situs baru Anda atau alihkan domain yang sudah Anda punya." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Buat daftar produk" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Mulai berjualan dengan menambahkan produk atau layanan ke toko Anda. Buat produk-produk Anda secara manual, atau impor dari toko yang sudah ada." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Buat daftar produk Anda" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Hadirkan metode pembayaran yang praktis dan mudah untuk pelanggan! Siapkan satu (atau lebih!) metode pembayaran langsung atau online yang cepat dan aman." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Terima pembayaran" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Anda selalu bisa mengembalikan perubahan ini di Pengaturan." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Sudah tiba waktunya – toko Anda siap diluncurkan! Yey!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Siap meluncurkan toko Anda?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Berubah pikiran? Anda bisa mengatur agar toko kembali berstatus privat dengan memperbarui pengaturan Privasi." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Lihat toko Anda" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Selamat! Anda berhasil meluncurkan toko WooCommerce. Luangkan waktu untuk merayakan dan memberitakannya!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Yey! Anda berhasil!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Meluncurkan toko Anda" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Disalin" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Tutup banner informasi percobaan gratis ini." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Ini adalah toko percobaan gratis. Anda bisa mulai menjelajahi semua fitur yang tersedia! Untuk mempelajari selengkapnya tentang percobaan gratis, klik \"Pelajari selengkapnya\"." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Ada masalah saat menyimpan lokasi toko Anda" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Dengan mengeklik \"Uji pembayaran,\" Anda setuju dengan {{tosLink}}Ketentuan Layanan{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Perkuat sistem pembayaran Anda dengan pilihan lengkap dan mudah. Periksa detail bisnis Anda untuk mulai menguji transaksi dengan WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Uji pembayaran" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Hadirkan metode pembayaran yang praktis dan mudah untuk pelanggan! Siapkan dan uji beberapa metode pembayaran langsung atau online yang cepat dan aman." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Kini saatnya menguji pembayaran" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ilustrasi pembayaran" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Anda siap untuk menguji berbagai fitur dan manfaat WooCommerce Payments" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Tinggal beberapa langkah lagi, Anda akan siap menerima pembayaran" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Deposit tidak tersedia selama periode percobaan. Untuk mulai memproses transaksi aktual serta menerima pembayaran, lakukan upgrade ke paket berbayar." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Deposit tidak tersedia selama periode percobaan. Untuk mulai memproses transaksi aktual serta menerima pembayaran, upgrade ke paket berbayar." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Hanya Administrator dan Pengelola Toko yang bisa membuat pesanan selama uji coba gratis. Jika Anda siap menerima pembayaran dari pelanggan, lakukan upgrade ke paket berbayar." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Hanya Administrator dan Pengelola Toko yang bisa membuat pesanan selama percobaan gratis. Jika Anda siap menerima pembayaran dari pelanggan, upgrade ke paket berbayar." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Tips, trik, dan inspirasi eCommerce dari blog kami." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "Dapatkan inspirasi" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Jelajahi koleksi" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Mulai segera dengan koleksi lengkap kami yang terkurasi." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Koleksi yang terkurasi" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Beri fitur dan fungsi tambahan, atau integrasikan dengan platform dan alat lainnya." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Atur kustomisasi dan perluas" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Sempurnakan toko Anda – tambahkan ekstensi" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Jelajahi ekstensi" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Atur kustomisasi toko Anda agar optimal untuk bisnis dengan ekstensi Woo. Lakukan upgrade ke paket berbayar untuk memperoleh akses ke ratusan alat dan fitur yang dapat membantu Anda meraih kesuksesan bisnis. Penasaran dengan apa saja yang tersedia? Jelajahi marketplace ekstensi kami." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Sesuaikan toko Anda agar optimal untuk bisnis dengan Ekstensi WooCommerce. Upgrade ke paket berbayar untuk mengakses ratusan alat dan fitur yang membantu Anda mencapai target. Penasaran alat dan fitur apa saja yang tersedia? Jelajahi Marketplace Ekstensi kami." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Tingkatkan toko Anda dengan ekstensi" @@ -384,8 +815,8 @@ msgstr "Saatnya merayakan! Siap meluncurkan toko Anda?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Luncurkan toko Anda" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "Anda sudah meluncurkan toko" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 menit" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "Domain" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Tambah domain" @@ -428,18 +861,19 @@ msgstr "Demi kelancaran checkout bagi pembeli, kami telah menyempurnakan toko An msgid "Meet our new, customizable checkout" msgstr "Inilah checkout baru kami yang bisa dikustomisasi" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tUntuk saat ini, hanya Anda yang bisa melihat toko Anda. Agar toko Anda bisa dilihat semua orang, silakan lakukan upgrade ke paket berbayar.\n" +"\t\t\tUntuk saat ini, hanya Anda yang bisa melihat toko Anda. Agar toko Anda bisa dilihat semua orang,  .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Upgrade sekarang" @@ -451,15 +885,15 @@ msgstr "Selama periode percobaan, Anda hanya bisa membuat pesanan uji coba! Untu msgid "Start selling to everyone" msgstr "Mulai berjualan ke semua orang" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "Akun Saya" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "kontak" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "Beranda" @@ -471,7 +905,8 @@ msgstr "Situs ini sudah diluncurkan" msgid "You don't have permissions to launch this site" msgstr "Anda tidak memiliki izin untuk meluncurkan situs ini" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Hanya Administrator dan Pengelola Toko yang bisa membuat pesanan selama percobaan gratis. Jika Anda siap menerima pembayaran dari pelanggan, lakukan upgrade ke paket berbayar." @@ -492,61 +927,61 @@ msgstr "Pesanan Anda tidak dapat dibuat. Saat ini fungsi checkout diaktifkan han msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Toko ini belum siap menerima pesanan. Saat ini fungsi checkout diaktifkan hanya untuk tujuan pratinjau." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Statistik Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Status Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-Spam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Temukan" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Atur" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Ekstensi" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Pelanggan" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Laporan Lawas" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "Status WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "Pengaturan WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Pesanan" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Beranda Saya" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Umpan Balik" @@ -554,18 +989,26 @@ msgstr "Umpan Balik" msgid "Save big with WooCommerce Payments" msgstr "Hemat besar-besaran dengan WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Tidak, terima kasih" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Mulai" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navigasi" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "Detail pesanan dikirim secara manual kepada pelanggan." msgid "Invalid order ID." msgstr "ID pesanan tidak valid." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "WooCommerce tidak dapat dinonaktifkan pada paket eCommerce." msgid "Store" msgstr "Toko" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Statistik" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Kota" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Lanjutkan" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Pelajari lebih lanjut." @@ -765,6 +1212,11 @@ msgstr "Ekstensi WooCommerce" msgid "Extensions %s" msgstr "Ekstensi %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Didukung oleh %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Buat dengan Storefront & WordPress.com" diff --git a/languages/wc-calypso-bridge-it_IT.mo b/languages/wc-calypso-bridge-it_IT.mo index 148272b4ab82b71f17fd080a3d5dc84d9a138f0e..706d8f1cba4539c4df66d4aefa29b3043d46c525 100644 GIT binary patch literal 37089 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 PLearn more about our new navigation — or go ahead and explore on your own." msgstr "Fare le cose con WooCommerce è diventato ancora più veloce. Leggi tutto sulla nostra nuova navigazione oppure prosegui e scopri le novità tu stesso." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Muoviti più velocemente grazie alla nostra nuova navigazione" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Ottieni suggerimenti e una panoramica sulle prestazioni del tuo negozio ogni volta che torni alla bacheca di WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Scopri la tua nuova Home" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Scegli un nuovo indirizzo web per il tuo negozio o trasferiscine uno che già possiedi." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Aggiungi un'illustrazione del dominio" @@ -79,43 +487,53 @@ msgstr "Dettagli del bonifico bancario diretto aggiunti correttamente" msgid "Please enter an account number or IBAN" msgstr "Inserisci un numero di conto o un IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Solo gli amministratori e i responsabili del negozio possono effettuare ordini durante il periodo di prova. Se tutto è pronto per accettare i pagamenti dai clienti, {{link}}effettua l'aggiornamento a un piano a pagamento{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Metodi di pagamento offline" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Scopri di più" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Prova uno dei fornitori di pagamento alternativi." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Altri fornitori di pagamento" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Offri ai tuoi clienti ulteriori scelte sulle modalità di pagamento." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Opzioni di pagamento aggiuntive" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Per prepararti ad accettare pagamenti online" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Scegli un fornitore dei pagamenti" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Si è verificato un errore durante la connessione a WooCommerce Payments. Riprova o connettiti più tardi nelle impostazioni del negozio." @@ -132,245 +550,258 @@ msgstr "Accettando di condividere i {{link}}dati di utilizzo{{/link}} non sensib msgid "Help us build a better WooCommerce Payments experience" msgstr "Aiutaci a creare una migliore esperienza di WooCommerce Payments" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Utilizzando WooCommerce Payments, accetti i {{tosLink}}Termini di servizio{{/tosLink}} e confermi di aver letto la {{privacyLink}}Politica sulla privacy{{/privacyLink}} " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Preparati ad accettare pagamenti" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Sì, conta su di me!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Crea un WooCommerce migliore" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Si è verificato un problema durante l'aggiornamento delle tue preferenze" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configura l'account %(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Installa %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Puoi gestire le impostazioni di questo gateaway di pagamento facendo clic sul pulsante qui sotto" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Connetti" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Procedi" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Si è verificato un problema durante il salvataggio delle tue impostazioni di pagamento" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "Configurazione di %s completata" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Raccomandato" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Partner locale" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Completa la configurazione" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Abilita" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lancia comunque" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Alcune cose da controllare prima di lanciare il tuo negozio" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Prima del lancio" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Scegli un indirizzo per il tuo nuovo sito web o trasferisci un dominio che già possiedi." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Elenca i prodotti" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Inizia a vendere aggiungendo prodotti o servizi al tuo negozio. Crea i tuoi prodotti manualmente o importali da un negozio esistente." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Elenca i tuoi prodotti" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Offri ai tuoi clienti un modo semplice e conveniente per pagare. Configura uno (o più) dei nostri metodi di pagamento online o di persona, rapidi e sicuri." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Ricevi i pagamenti" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Puoi sempre ripristinarlo in Impostazioni." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "È tempo di festeggiare: tutto è pronto per lanciare il tuo negozio. Wow!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Pronto a lanciare il tuo negozio?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Hai cambiato idea? Puoi rendere nuovamente privato il tuo negozio aggiornando le impostazioni della privacy." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Visualizza il tuo negozio" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Congratulazioni per il lancio del tuo negozio WooCommerce. Dedica un momento ai festeggiamenti e alla condivisione della notizia." -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Wow! Ce l'hai fatta!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Lancio del tuo negozio" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Copiato" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Ignora questo banner informativo per il periodo di prova." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Questo è il tuo negozio di test per il periodo di prova dove potrai iniziare a esplorare le opzioni disponibili. Per saperne di più sulla prova gratuita, fai clic su \"Scopri di più\"." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Si è verificato un problema durante il salvataggio della posizione del negozio" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Facendo clic su \"Test sui pagamenti\", accetti i nostri {{tosLink}}Termini di servizio{{/tosLink}}." -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Potenzia i tuoi pagamenti con una semplice opzione tutto in uno. Verifica i dettagli della tua attività per iniziare a provare le transazioni con WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Test sui pagamenti" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Offri ai tuoi clienti un modo semplice e conveniente per pagare. Configura e prova alcuni dei nostri metodi di pagamento online o di persona, rapidi e sicuri." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "È tempo di provare i pagamenti" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Illustrazione del pagamento" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Tutto è pronto per iniziare a provare le funzionalità e i vantaggi di WooCommerce Payments" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Ti mancano solo pochi passi per poter iniziare a ricevere i pagamenti" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "I versamenti non sono disponibili durante il periodo di prova. Per iniziare a elaborare transazioni reali e ricevere pagamenti, effettua l'aggiornamento a un piano a pagamento." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "I versamenti non sono disponibili durante il periodo di prova. Per iniziare a elaborare transazioni reali e ricevere pagamenti, effettua l'aggiornamento a un piano a pagamento." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Solo gli amministratori e i responsabili del negozio possono effettuare ordini durante il periodo di prova. Se tutto è pronto per accettare i pagamenti dai clienti, effettua l'aggiornamento a un piano a pagamento." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Solo gli amministratori e i responsabili del negozio possono effettuare ordini durante il periodo di prova. Se tutto è pronto per accettare i pagamenti dai clienti, effettua l'aggiornamento a un piano a pagamento." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Suggerimenti, trucchi e ispirazioni per l'e-commerce dal nostro blog." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "Lasciati ispirare" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Scopri le raccolte" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Muovi rapidamente i primi passi con le nostre raccolte di estensioni selezionate." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Raccolte selezionate" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Aggiungi caratteristiche e funzionalità extra o integra con altre piattaforme e strumenti." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Personalizza ed estendi" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Fai di più con il tuo negozio: aggiungi le estensioni" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Sfoglia le estensioni" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Personalizza il tuo negozio in modo che funzioni perfettamente per il tuo business, grazie alle estensioni Woo. Passa a un piano a pagamento per accedere a centinaia di strumenti e funzionalità che possono aiutarti a raggiungere i tuoi obiettivi di business. Vuoi conoscere le opzioni disponibili? Sfoglia il nostro marketplace delle estensioni." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Personalizza il tuo negozio in modo che funzioni perfettamente per la tua attività, grazie alle estensioni WooCommerce. Effettua l'aggiornamento a un piano a pagamento per accedere a centinaia di strumenti e funzionalità che possono aiutarti a raggiungere i tuoi obiettivi. Vuoi conoscere le opzioni disponibili? Sfoglia il nostro marketplace delle estensioni." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Porta il tuo negozio al livello successivo grazie alle estensioni" @@ -384,8 +815,8 @@ msgstr "È tempo di festeggiare. Tutto pronto per lanciare il tuo negozio?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lancia il tuo negozio" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "Hai già lanciato il tuo negozio" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minuti" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "Dominio" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Aggiungi un dominio" @@ -428,18 +861,19 @@ msgstr "Per offrire agli acquirenti un'esperienza di pagamento fluida, abbiamo p msgid "Meet our new, customizable checkout" msgstr "Scopri il nostro nuovo pagamento personalizzabile." -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tAl momento sei l'unica persona che può vedere il tuo negozio. Affinché il tuo negozio sia disponibile per tutti, effettua l'aggiornamento a un piano a pagamento.\n" +"\t\t\tAl momento sei l'unica persona che può vedere il tuo negozio. Affinché il tuo negozio sia disponibile per tutti, effettua .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Migliora il tuo sito" @@ -451,15 +885,15 @@ msgstr "Durante il periodo di prova puoi effettuare solo ordini di prova. Per ri msgid "Start selling to everyone" msgstr "Inizia a vendere al pubblico" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "Il mio account" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "Contatt" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "Home" @@ -471,7 +905,8 @@ msgstr "Questo sito è pronto per essere lanciato" msgid "You don't have permissions to launch this site" msgstr "Non disponi delle autorizzazioni per lanciare il sito" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Solo gli amministratori e i responsabili del negozio possono effettuare ordini durante il periodo di prova. Se tutto è pronto per accettare i pagamenti dai clienti, effettua l'aggiornamento a un piano a pagamento." @@ -492,61 +927,61 @@ msgstr "Non è stato possibile effettuare l'ordine. La funzionalità di pagament msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Il negozio non è pronto ad accettare ordini. La funzionalità di pagamento è attualmente abilitata solo a scopo di anteprima." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack Stats" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Stato Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Antispam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Discover" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gestisci" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Estensioni" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Clienti" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Rapporti di legacy" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "Stato WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "Impostazioni WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Ordini" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Home" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Feedback" @@ -554,18 +989,26 @@ msgstr "Feedback" msgid "Save big with WooCommerce Payments" msgstr "Risparmia in modo significativo con WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "No, grazie" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Inizia ora" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navigazione" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "Dettagli dell'ordine inviati manualmente al cliente." msgid "Invalid order ID." msgstr "ID ordine non valido" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "Impossibile disattivare WooCommerce sul piano eCommerce." msgid "Store" msgstr "Negozio" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Statistiche" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Città" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continua" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Per saperne di più." @@ -765,6 +1212,11 @@ msgstr "Estensioni WooCommerce" msgid "Extensions %s" msgstr "Estensioni %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Con tecnologia %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Realizzazione effettuata con Storefront e WordPress.com" diff --git a/languages/wc-calypso-bridge-ja.mo b/languages/wc-calypso-bridge-ja.mo index bbc841d3e0bed5ab618aecf3e6dd1a0b251bc3e2..b96c84d622ddaa07668314aa3ad43c7ceb2319f1 100644 GIT binary patch literal 39486 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 delta 4945 zcmZwJdsviJ9>DQ4hzN?Bm>@zhAVP>Y5EU^&3EfCh(A1<%5k@6o2Dt<#vD|4@eJf* zAi8i6wqif*H1Bs|DD@M#Kq;qso5C<|L=B-coPyHP8jL{~N=HYqKfa7IwpY#j7cqtU zRpg%v3^I&BX=eh);~YGWRk#RahbncN{#6}?1a3^aTd9?pk8|-2l#vc$bW%@1d9DV> z;vpP|SI~-)79-)EzuT-FLWB z&PQ-eY0h~k``4yB+^{H9^JIe3=jgpbU5ynhoP@Wr)DVT=RUNy>I=tgPpy$JFz zBk`CwZX<0eU-BcVjK)bAk0Wt8%JVL>-i|VXvnVsXfHIKFC`DV;Tkw5+ z1Z^xZlT)u@8TO!T#>E_w98OgW(uKN~AniFB?HJ=YOhozNLX^~1qomA*{ZQjwxX1kd zMPvr*G|Eh`qU?>ED4F;cr{FL~9gNvH6$?=|?ejQ{{?%~`iTEb&z^`!*wlHm(`3HQ+ z68ZBIScM5FGit+Jyol0480$5V87ARn>N9AR)l-AWyDv^OO+g#=>FAVWagahFzHfTn z^h@OBrv8KS+}(UQ@B!qVqfX-zd>3VJ#3vgsqB%I2`V%OpqX{LW+fnw+bI4CrS2FpR z2miF6&gGqrH$WaKf}gIU;wD9>#}#-O@!CiXZfNb2L#IjfkA((%_Q_kCsZ?$esu(2` zwHSdrP>z`!7h}vU<9;m;qP`pD1#}c;fUlW;Z0J;XD9DV4kuPaD0cBTbB44R?ybnJ@ zc`o#4hT~BhoQ1Oc^U)7$kOQEcD8D<7^4u3Fn=ar1)67XOw-Y&Y^VtPmIAk$O%>vbBzhjMH!F{uVOpO^N(k9dgx!Rr7#IE zVj%t(uJIn>cn6`FBtVUTmyQ6CS007W1)?x6511@J*B%Y+Y*jTO3c_KhMZa3d(@; zFbJPS$z(Iia~(JUFX9M%59PUk1erHqXO^ypX=Xr1AX( z?JFMj?vr(R7eSJ|jXs5PH4-ZcX_#?(-;jf`ocR9QK!IgfF7t+yJBSKm zJ0X{(>Hl5ZxG8Hn@+V)$QkEn8l6fx}r<>)zrowt+vJ@maFYuW}{8Fl18wp9BTu&10 zJ=ICn5NiovLe}~O5lzTClTGg>OZ1#sK8YPfAG5v}?S!11QG_g)cX6J8HlwH-kpENE z&k0VI_wRY|Zc%z6{1 znq?t{c##N@3YTokXNiLZhr|1K0jL#3rWCk1B;HNB8##gAznZ{%jpH+caOU%IoZzMQ z!xc|ys9Bqeyg7fkMo=0^+)eZ&CK9uWDk6%I%SO0~r-?ETQc5$(l>hkYuIG*8IXk>yK@!Oh>7-(0Ol%uRVWdiT*?U;(qpu zvZ8W^bZ2ye&P=FvXN-BrqMOF0jC7RRRF*Y=b-4{QX3kStnO4UtYvmf7wXEDxSXEFt z&OL0xb&F1)_=&%R`}y|b3VkLy%>7C7R10~%r0<#Xj*d)e_A7T3*y!Thlo|TK$dG~Q zYJsi5QCe!V7upKlrPE?9dfxO?x;4$CH>3~IZ=~1hmKnF*7iNCdM}InNj6Od*CuDJv zt@24{X$qtXb}BS%)op^xSQFaP}_!QTFhG$zv0ftci)Klaf=DlH8Vg zGkzwXDOjnH!na`a0D z;d((~Y6@R_T$?-%2R!v%-hcdHi>F?D>W_FD+IkM`@-#Gh>N~tk-MeLf&nqW;k9OX4 zy{eDp2J76yVC}5wtCz2OA)t5f=ALKH^fb5Y->hDx16sld@bhhqY =^+mJvouZ@e z;^Jx_J#SH{%uz=!9-?2gk52Ho_Q*6``&3VBb8q7|`r|joj_BFh)T8S?^~bDPnV$6x z?rmi^eB5iQ0xW?yPPX=TF;s@#p;N1^OlKIQ*{fq}zWrexUf0o2&2#T~D$Jt4sr|j* zjZ?dC?r+w?>+y|rX!%T~AT{}!)Z7OxQZ!ERAZJXcj ytBbZx*9ThH4*fA<4Q)5~AGvYptkMBGPH)gndgYD+cmJK?K04^xb2_`@$o~KY16Hj7 diff --git a/languages/wc-calypso-bridge-ja.po b/languages/wc-calypso-bridge-ja.po index 7e2977da..3e804f1d 100644 --- a/languages/wc-calypso-bridge-ja.po +++ b/languages/wc-calypso-bridge-ja.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-12 11:54:22+0000\n" +"PO-Revision-Date: 2023-09-14 08:54:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: ja_JP\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "ニーズに合う適切なプラグインが見つかりませんか ? サービスの統合から特殊なカスタマイズまで、作業を適切に完了できるよう専門チームがお手伝いいたします。" + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "自分のやり方で" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "拡張機能を見る" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "他のお支払い方法と配送方法をお探しですか ? 会員サイトの作成や寄付の受け付けが必要ですか ? 当社のチームが厳選した何百もの拡張機能の中からお選びください。" + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "ストアを拡大する" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "WordPress ではさまざまなことが可能です。 ストアを作成したり、ポッドキャストをホストしたり、作品を掲載したりできます。 55,000を超えるプラグインを管理できます。" + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "WordPress を大きく変える" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "プラグインを表示" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "WordPress サイトを思いのままに作り変えましょう。 有料プランにアップグレードすると、何千もの無料プラグインと有料プラグインを利用できます。 何ができるかに関心がおありですか ?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "プラグインでどんなことも実現" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "WooCommerce がどのように使用されているかを示す{{link}}使用状況の追跡{{/link}}を介して非機密データを共有することで、機能を改善し、修正を迅速化しましょう。 パーソナルデータは追跡も保存もされません。" + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "デジタルギフトカードを作成" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "デジタルギフトカードの販売と受け取りを開始して、顧客ロイヤルティを高め、収益を増やし、新しいお客様にストアを紹介します。" + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "ギフトカードで顧客ロイヤルティを向上" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "ソーシャル広告を利用して、TikTok、Pinterest、Meta プラットフォームを閲覧して買い物に熱中している何百万人ものユーザーに商品を表示しましょう。" + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "ソーシャルメディアを通じてより多くの顧客にリーチ" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "ダッシュボードから直接作成および管理できる商品リストや広告を利用して、Google 全体で活発な買い物客にアプローチします。" + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "Google に商品の広告を掲載" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "AutomateWoo を試す" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "顧客の購入データに応答する自動化されたマーケティング メッセージを通じて、販売を促進し、ロイヤルティを構築します。" + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "マーケティングを自動化する" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "より多くの顧客にリーチして売上を伸ばすための組み込み型マーケティングツールをご覧ください" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "数百個の拡張機能を利用して、ビジネスを成長させることができます" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "組み込み型のマーケティングおよび広告ツールを使用して、より多くの顧客にリーチし、ビジネスを成長させましょう。 有料プランにアップグレードして強力なマーケティングツールを利用し、今すぐビジネスを成長させましょう。" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "ビジネスの成長のために準備を整える" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "外観のイラスト" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "商品のイラスト" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "たいへんすてきです。その調子です !" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "お疲れ様でした ! ついに最後のステップです ! お疲れ様でした" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "タスクは残りわずかです !" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "Woo Express ストアへようこそ" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "%s へようこそ" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "%2$d件中%1$d件が完了しました。" + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "あと少しで販売を開始できます。 次の手順に従って、テスト用ストアをセットアップします。" + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "設定リストを非表示" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "ストア設定が自分のニーズに合っている。" + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "ストア設定が簡単。" + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "フィードバックをぜひお寄せください。" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "ご利用体験はいかがでしたか ?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "非表示" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "設定タスクのリストを表示" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "タスクリストオプション" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "お疲れ様でした。 どうぞお祝いしてください。 ストアを立ち上げる準備ができたら、あとは有料プランにアップグレードするだけです。 そうすることで、タスクリストにある次の2つのタスクを実行できます。" + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "注目 ! トライアル用ストアの設定が完了しました !" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "あと少しで完了です ! 残りのステップはあと1つです ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "税自動処理の設定中に問題が発生しました。 もう一度お試しください。" + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "無料お試し期間中は、消費税の設定を行うことはできますが、徴収することはできません。 {{br/}}商品の販売を始めるには、{{link}}今すぐアップグレードしてください{{/link}}。" + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "消費税は請求しません" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "手動で税を設定" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "タックスパートナーを選択" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "WooCommerce Tax では、消費税の計算を自動化できます。" + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "税金処理を自動化する" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "税金処理を自動化する" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "税率設定画面に移動して税率を設定します" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "税率を設定" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "ビジネスの所在地" + +#: build/index.js:1 +msgid "Set store location" +msgstr "ストアの所在地を設定" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "国または地域を選択してください" + +#: build/index.js:1 +msgid "Post code" +msgstr "郵便番号" + +#: build/index.js:1 +msgid "Address" +msgstr "住所" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "国または地域" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "「設定」をクリックすると、税率と計算を有効にできます。 詳細は{{link}}こちら{{/link}}を参照してください。" + +#: build/index.js:1 +msgid "Configure" +msgstr "設定" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "セットアップを続行" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "WooCommerce Tax と Jetpack をインストールすることで、{{link}}利用規約{{/link}}に同意したものとみなされます。" + +#: build/index.js:1 +msgid "100% free" +msgstr "100% 無料" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "{{link}}Jetpack{{/link}} 提供" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "{{strong}}単一の{{/strong}}経済的関連性コンプライアンス" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "リアルタイムの消費税計算" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "新しいストアに最適" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "WooCommerce Tax" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "売上を伸ばす" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "有料プランをアップグレードしてより多くの機能を利用し、販売を開始しましょう。" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "現在、無料お試しに登録しています。 すべての機能にアクセスするには、有料プランにアップグレードしてください。" + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "ウェルカムモーダルナビゲーションの図1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "ウェルカムモーダルナビゲーションの図2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "セットアップが必要です" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "定期的に収益を得て管理し、指定した銀行口座にデポジットを入金できます。" + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "海外市場に向けて販売し、現地の支払い方法で135種を超える通貨の支払いを受けることができます。" + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "デビットカード決済やクレジットカード決済、Apple Pay、Sofort、SEPA、iDeal など、顧客が希望する決済方法に対応しましょう。" + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "次の支払い方法をご利用いただけます: " + +#: build/index.js:1 +msgid "& more." +msgstr "その他。" + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "機能拡張を表示" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "商品を追加します。 商品の情報、画像、説明を追加して商品やサービスを紹介し、販売を始める準備を整えます。" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "商品をインポートします。 既存の商品の情報、画像、説明をインポートして商品やサービスを紹介し、販売を始める準備を整えます。" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "商品追加" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "商品をインポート" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "商品を追加" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "商品をインポート" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "テーマを選択" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "ブランドの外観に最適なテーマを選択し、独自の雰囲気を作り上げましょう。 色を変更したり、ロゴを追加したり、ページを作成したりできます。" + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "テーマを選択" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "プラグイン" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "復元する" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "「次の手順」" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "タスクリストを設定" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "「次の手順」タスクリストの表示を復元します。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "最初のオンボーディングのタスクリストの表示を復元します。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "これらのオプションを使用して、WooCommerce ホームのオンボーディングのタスクリストの表示を復元します。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "オンボーディング" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "販売向けに最適化されたカスタムナビゲーションを利用できます。" + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "WooCommerce での作業がさらに高速化しました。 新しいナビゲーションの詳細をご覧ください。または、先に進んでご自身で確認してください。" -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "新しいナビゲーションですばやく作業" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "WordPress.com ダッシュボードに戻るたびに、ストアのパフォーマンスに関するヒントや統計概要を確認できます。" -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "新しいホームを利用" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "ストアの新しいサイトアドレスを選択するか、すでに所有しているアドレスを転送します。" -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "ドメインのイラストレーションを追加" @@ -79,43 +487,53 @@ msgstr "銀行振込 (ダイレクト) の詳細の追加が完了しました" msgid "Please enter an account number or IBAN" msgstr "口座番号か IBAN を入力してください" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "無料お試し期間中は、管理者とストア管理者のみが注文を行えます。 顧客からの支払いを受け取る準備ができている場合は、{{link}}有料プランにアップグレード{{/link}}してください。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "オフラインの決済方法" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "もっと見る" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "他の決済サービス業者を試してみましょう。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "その他の決済サービス業者" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "顧客が選べる決済手段を増やしましょう。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "追加の支払いオプション" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "オンライン支払いを受け取る準備をするには" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "決済サービス業者を選択" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "WooCommerce Payments への接続時にエラーが発生しました。 もう一度試すか、しばらくしてからストア設定に接続してください。" @@ -132,245 +550,258 @@ msgstr "機密情報以外の{{link}}使用状況データ{{/link}}の共有に msgid "Help us build a better WooCommerce Payments experience" msgstr "より良い WooCommerce Payments サービスの構築にご協力お願いいたします" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "WooCommerce Payments を使用することで、お客様は弊社の{{tosLink}}利用規約{{/tosLink}}に拘束されることに同意し、弊社{{privacyLink}}プライバシーポリシー{{/privacyLink}}を読んだものとみなされます " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "支払いを受け取る準備をする" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "はい、参加します。" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "より良い WooCommerce を構築" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "設定を更新しているときに問題が発生しました" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "%(title)s アカウントを設定" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "%s のインストール" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "下のボタンをクリックすると、この決済方法の設定を管理できます" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "接続" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "続行" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "支払い設定を保存する際に問題が発生しました" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s が正しく設定されました" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "おすすめ" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "ローカルパートナー" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "設定完了" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "有効化" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "このまま立ち上げる" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "ストアを立ち上げる前に確認すべき点" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "立ち上げ前" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "新しいサイトのアドレスを選択するか、すでに所有しているドメインを転送します。" -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "商品をリスト化" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "ストアに商品やサービスを追加して販売を開始します。 商品を手動で作成するか、既存のストアからインポートします。" -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "商品をリスト化" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "お客様に簡単で便利な決済方法を提供します。 迅速で安全なオンラインまたはオフラインでの支払い方法を1つ (または複数) 設定します。" -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "お支払いの受け取り" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "これは「設定」でいつでも元に戻すことができます。" -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "おめでとうございます – ストアを立ち上げる準備が整いました ! お疲れ様でした !" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "ストアの立ち上げ準備は整いましたか ?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "気が変わりましたか ? プライバシー設定を更新することで、ストアを非公開に戻すことができます。" -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "ストアを表示" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "おめでとうございます。WooCommerce ストアを立ち上げました。 お祝いしてニュースをシェアしましょう !" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "お疲れ様でした ! これで完了です !" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "ストアを立ち上げる" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "コピーしました" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "無料お試し期間の情報バナーを閉じます。" -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "これは、利用できる機能の確認を始めることができる無料お試し期間のテストストアです。 無料お試し期間の詳細については、「さらに詳しく」をクリックしてください。" -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "ストアの所在地を保存しているときに問題が発生しました" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "「支払いをテスト」をクリックすると、{{tosLink}}利用規約{{/tosLink}}に同意したものとみなされます。" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "シンプルなオールインワンオプションで支払いを強化します。 ビジネスの詳細を確認すると、WooCommerce Payments でトランザクションのテストを開始できます。" -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "支払いをテスト" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "お客様に簡単で便利な決済方法を提供します。 迅速で安全なオンラインまたはオフラインでの支払い方法の一部を設定してテストします。" -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "支払いをテストします" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "支払いのイラスト" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "WooCommerce Payments の機能とメリットのテストを開始する準備ができました" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "あと少しで支払いを受け取る準備が整います" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "無料お試し期間中はデポジットを利用できません。 実際のトランザクションの処理を開始して支払いを受け取るには、有料プランにアップグレードしてください。" +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "無料お試し期間中はデポジットを利用できません。 実際のトランザクションの処理を開始して支払いを受け取るには、有料プランにアップグレードしてください。" -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "無料お試し期間中は、管理者とストア管理者のみが注文を行えます。 顧客からの支払いを受け取る準備ができている場合は、有料プランにアップグレードしてください。" +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "無料お試し期間中は、管理者とストア管理者のみが注文を行えます。 顧客からの支払いを受け取る準備ができている場合は、有料プランにアップグレードしてください。" -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "当社ブログからのヒント、コツ、eコマースのインスピレーションです。" -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "インスピレーションを受ける" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "コレクションを見る" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "厳選された拡張機能のコレクションをすぐに使い始めましょう。" -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "厳選コレクション" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "さらに機能を追加したり、他のプラットフォームやツールと統合したりできます。" -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "カスタマイズと拡張" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "ストアでできることを増やす – 拡張機能を追加" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "機能拡張を表示" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Woo 拡張機能を使用して、ストアがビジネスに最適に機能するようカスタマイズします。 有料プランにアップグレードすると、ビジネス目標の達成に役立つ何百ものツールと機能にアクセスできます。 利用できる機能にご興味がおありですか ? 拡張機能マーケットプレイスをご覧ください。" - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "WooCommerce 拡張機能を使用して、ストアがビジネスに最適に機能するようカスタマイズします。 有料プランにアップグレードすると、目標の達成に役立つ何百ものツールと機能にアクセスできます。 利用できる機能にご興味がおありですか ? 拡張機能マーケットプレイスをご覧ください。" + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "拡張機能を使用してストアをレベルアップさせましょう" @@ -384,8 +815,8 @@ msgstr "おめでとうございます ! ストアの立ち上げ準備は整い #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "ストアを立ち上げる" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "すでにストアを立ち上げています" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2分" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "ドメイン" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "ドメインを追加" @@ -428,18 +861,19 @@ msgstr "買い物客がスムーズに購入手続きを行えるよう、コン msgid "Meet our new, customizable checkout" msgstr "新しいカスタマイズされた購入手続きを利用" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\t現在、あなただけがストアを表示できます。 誰でもストアを利用できるようにするには、有料プランにアップグレードしてください。\n" +"\t\t\t現在、あなただけがストアを表示できます。 誰でもストアを利用できるようにするには、してください。\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "今すぐアップグレード" @@ -451,15 +885,15 @@ msgstr "無料お試し期間中に行えるのはテスト注文のみです ! msgid "Start selling to everyone" msgstr "すべての人に販売を開始" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "マイアカウント" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "お問い合わせ" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "ホーム" @@ -471,7 +905,8 @@ msgstr "このサイトはすでに立ち上げ済みです" msgid "You don't have permissions to launch this site" msgstr "このサイトを立ち上げる権限がありません" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "無料お試し期間中は、管理者とストア管理者のみが注文を行えます。 顧客からの支払いを受け取る準備ができている場合は、有料プランにアップグレードしてください。" @@ -492,61 +927,61 @@ msgstr "注文できませんでした。 現在、購入手続き機能はプ msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "このストアで注文を受け付ける準備ができていません。 現在、購入手続き機能はプレビュー目的でのみ有効になっています。" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack 統計" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Jetpack ステータス" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "スパム対策" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Discover" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "管理" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "拡張機能" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "顧客" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "レガシーレポート" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "WooCommerce ステータス" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "WooCommerce 設定" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "注文" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "ホーム" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "フィードバック" @@ -554,18 +989,26 @@ msgstr "フィードバック" msgid "Save big with WooCommerce Payments" msgstr "WooCommerce Payments でコストを大幅に削減しましょう" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "結構です" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "始めてみよう" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "ナビゲーション" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "注文の詳細が手動でお客様に送信されました。" msgid "Invalid order ID." msgstr "無効な注文番号です。" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "eコマースプランでは、WooCommerce を無効化できません msgid "Store" msgstr "ストア" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "統計" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "市区町村" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "続ける" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "さらに詳しく。" @@ -765,6 +1212,11 @@ msgstr "WooCommerce 拡張機能" msgid "Extensions %s" msgstr "拡張機能 %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "%1$s 提供" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Storefront & WordPress.com で作成" diff --git a/languages/wc-calypso-bridge-ko_KR.mo b/languages/wc-calypso-bridge-ko_KR.mo index 5b06cf69bdd86c38a0f98794d827b96f495378cd..a5b98d6a679279d4208b0c0f7036a57a9bf71432 100644 GIT binary patch literal 36968 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 delta 5004 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 Z^7YhSXnymOzPYxmF50t6Z`}L#zXA5ibpikY diff --git a/languages/wc-calypso-bridge-ko_KR.po b/languages/wc-calypso-bridge-ko_KR.po index b964ed0c..26364334 100644 --- a/languages/wc-calypso-bridge-ko_KR.po +++ b/languages/wc-calypso-bridge-ko_KR.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-13 15:54:03+0000\n" +"PO-Revision-Date: 2023-09-14 10:54:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: ko_KR\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "필요에 맞는 플러그인을 찾을 수 없나요? 서비스 통합부터 독특한 사용자 정의 기능까지 전문가 팀이 원하는 목표를 달성하도록 도와드립니다." + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "원하는 방식으로 지원" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "확장 기능 살펴보기" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "더 많은 결제 및 배송 방법을 찾고 계신가요? 멤버십 사이트를 구축하거나 기부를 받고 싶으신가요? 저희 팀이 직접 선정한 수백 가지 확장 기능 중에서 선택하세요." + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "스토어 확장" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "워드프레스라면 무엇이든 가능합니다. 스토어를 만들거나 팟캐스트를 진행하거나 작업을 선보이세요. 55만 개 이상의 플러그인을 이용할 수 있습니다." + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "워드프레스 변환" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "플러그인 찾아보기" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "워드프레스 사이트를 원하는 대로 바꿔보세요. 유료 요금제로 업그레이드하여 수천 개의 무료 및 유료 플러그인에 액세스하세요. 무엇이 가능한지 궁금하신가요?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "무엇이든 지원하는 플러그인" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "우커머스가 어떻게 사용되는지 보여주는 {{link}}사용 추적{{/link}}을 통해 중요하지 않은 데이터를 공유하여 개선된 기능 및 더 빨라진 수정 사항을 확인하세요. 개인 데이터는 추적 또는 저장되지 않습니다." + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "디지털 기프트 카드 생성" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "고객 충성도를 높이고 매출을 늘리고 신규 고객을 스토어로 유치하기 위해 디지털 기프트 카드를 판매하고 결제 수단으로 수락하세요." + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "기프트 카드로 고객 충성도 제고" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "소셜 광고를 통해 TikTok, Pinterest, Meta 플랫폼을 둘러보는 수백만 명의 참여 쇼핑객에게 제품을 선보이세요." + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "소셜 미디어에서 더 많은 고객에게 도달" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "대시보드에서 바로 생성 및 관리할 수 있는 제품 목록 및 광고로 활성 쇼핑객에게 도달하세요." + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "Google에서 제품 광고" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "AutomateWoo 사용해 보기" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "고객의 구매 데이터에 반응하는 자동화된 마케팅 메시지를 통해 매출을 늘리고 충성도를 높이세요." + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "마케팅 자동화" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "더 많은 고객에게 도달하고 매출을 높이도록 지원하는 내장 마케팅 도구를 살펴보세요." + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "수백 가지 확장 기능으로 비즈니스 성장" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "내장된 마케팅 및 광고 도구로 더 많은 고객에게 도달하고 비즈니스를 키우세요. 지금 바로 유료 요금제로 업그레이드하여 강력한 마케팅 도구를 활용하고 비즈니스 성장을 시작하세요!" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "비즈니스 성장 준비" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "디자인 일러스트레이션" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "상품 일러스트레이션" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "아주 좋습니다. 계속하세요!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "우와! 마지막 단계까지 해냈습니다! 잘했습니다." + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "몇 가지 작업만 더 하면 됩니다!" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "Woo Express 스토어에 오신 것을 환영합니다." + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "%s에 오신 것을 환영합니다." + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "%1$d/%2$d개 완료" + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "상품 판매를 위한 준비가 거의 완료됐습니다! 다음 단계를 따라 테스트 스토어를 설정하세요." + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "설정 목록 숨기기" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "내게 필요한 사항이 스토어 설정 프로세스에서 충족됩니다." + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "스토어 설정을 완료하기 쉽습니다." + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "피드백을 보내주셔서 감사합니다!" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "경험해보니 어떠셨나요?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "숨기기" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "설정 작업 목록 표시" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "작업 목록 옵션" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "축하합니다! 잠시 자축하는 시간을 가져보세요. 스토어를 공개할 준비가 되었다면 유료 요금제로 업그레이드만 하면 됩니다. 그러면 작업 목록에 예정된 두 개의 작업도 이용할 수 있게 됩니다." + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "우와! 평가판 스토어가 설정됐습니다!" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "굉장하군요! 해야 할 일이 한 가지 줄었어요 ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "자동화된 세금 설정 중 문제가 발생했습니다. 다시 시도하세요." + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "무료 평가판을 사용하는 동안에는 판매세 설정을 구성할 수 있지만 징수되지는 않습니다. {{br/}}제품 판매를 시작하려면 {{link}}지금 업그레이드{{/link}}하세요." + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "판매세 청구하지 않음" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "수동으로 세금 설정" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "세금 파트너 선택" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "WooCommerce Tax에서는 판매세 계산을 자동화할 수 있습니다." + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "세금 자동화" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "세금 자동화" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "세율 설정 화면으로 이동하여 세율을 구성하세요." + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "세율 구성" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "회원님의 비즈니스가 이루어지는 주소" + +#: build/index.js:1 +msgid "Set store location" +msgstr "스토어 위치 설정" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "국가 / 지역을 입력하세요" + +#: build/index.js:1 +msgid "Post code" +msgstr "우편번호" + +#: build/index.js:1 +msgid "Address" +msgstr "주소" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "국가 / 지역" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "\"구성\"을 클릭하면 세율 및 계산이 활성화됩니다. 자세한 내용은 {{link}}여기{{/link}}를 참조하세요." + +#: build/index.js:1 +msgid "Configure" +msgstr "구성" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "설정 계속하기" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "WooCommerce Tax와 젯팩을 설치하면 {{link}}서비스 약관{{/link}}에 동의하는 것입니다." + +#: build/index.js:1 +msgid "100% free" +msgstr "100% 무료" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "{{link}}젯팩{{/link}} 제공" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "{{strong}}단일{{/strong}} 경제 결합 규정 준수" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "실시간 판매세 계산" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "신규 스토어에 최적" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "WooCommerce Tax" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "매출 증대" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "유료 요금제로 업그레이드하여 더 많은 기능을 활용하고 판매를 시작하세요." + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "현재 무료 평가판을 사용 중입니다! 전체 기능을 이용하려면 유료 요금제로 업그레이드하세요." + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "환영 모달 탐색 일러스트 1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "환영 모달 탐색 일러스트 2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "필요한 설정" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "반복 수익을 창출 및 관리하고 지정된 은행 계좌에 자동으로 예치하세요." + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "해외 시장에 판매하고 로컬 결제 수단으로 135가지 이상의 통화를 수락하세요." + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "체크카드와 신용카드 결제, Apple Pay, Sofort, SEPA, iDeal 등을 포함하여 고객이 선호하는 결제 방법을 제공하세요." + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "수락한 결제 수단:" + +#: build/index.js:1 +msgid "& more." +msgstr "그 외 다수." + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "확장 기능 둘러보기" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "상품을 추가하세요. 제품 및 서비스를 선보이고 판매를 시작할 준비를 하세요. 제품 정보, 이미지, 설명을 추가하세요." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "상품을 가져오세요. 제품 및 서비스를 선보이고 판매를 시작할 준비를 하세요. 기존 제품 정보, 이미지, 설명을 가져오세요." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "상품 추가" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "상품 불러오기" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "상품 추가" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "상품 가져오기" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "테마 선택" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "브랜드의 외형과 분위기에 가장 잘 맞는 테마를 선택하여 맞춤 설정하세요. 색상을 바꾸고 로고를 추가하고 페이지를 만드세요." + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "테마 선택" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "플러그인" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "복원" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "\"다음 할 일\"" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "설정 작업 목록" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "\"다음 할 일\" 작업 목록의 가시성을 복원하세요." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "기본 온보딩 작업 목록의 가시성을 복원하세요." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "이 옵션을 사용하여 우커머스 홈에서 온보딩 작업 목록의 가시성을 복원하세요." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "온보딩" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "판매에 최적화된 사용자 정의 탐색 환경입니다." + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "우커머스에서는 일을 진행하는 속도가 빨라졌습니다. 새로운 탐색에 대해 자세히 알아보거나 직접 탐색해 보세요." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "탐색을 통해 더 빠르게 이동" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "워드프레스닷컴 알림판으로 다시 이동할 때마다 스토어의 성과에 대한 팁과 인사이트를 얻으세요." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "새로운 홈 만나보기" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "스토어의 새 웹사이트 주소를 선택하거나 이미 소유하고 있는 주소를 이전하세요." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "도메인 일러스트레이션 추가" @@ -79,43 +487,53 @@ msgstr "은행 이체 상세 정보 추가됨" msgid "Please enter an account number or IBAN" msgstr "계좌 번호 또는 IBAN을 입력하세요." -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "관리자와 스토어 관리자만 무료 평가판을 사용하는 동안에 주문할 수 있습니다. 고객의 결제를 수락할 준비가 되었으면 {{link}}유료 요금제로 업그레이드{{/link}}하세요." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "오프라인 결제 수단" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "더 보기" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "대체 결제 제공업체 중 하나를 이용해 보세요." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "다른 결제 제공업체" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "고객에게 결제 방법을 선택할 기회를 추가로 제공하세요." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "추가 결제 옵션" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "온라인 결제 수락을 준비하는 방법" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "결제 제공업체 선택" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "WooCommerce Payments에 연결하는 중 오류가 발생했습니다. 다시 시도하거나 나중에 스토어 설정에서 연결하세요." @@ -132,245 +550,258 @@ msgstr "중요하지 않은 {{link}}사용 데이터{{/link}}를 제공하면 msgid "Help us build a better WooCommerce Payments experience" msgstr "더 나은 WooCommerce Payments 환경을 조성하도록 도와주세요" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "WooCommerce Payments를 사용하면 {{tosLink}}서비스 약관{{/tosLink}} 적용에 동의하고 {{privacyLink}}개인정보 취급방침{{/privacyLink}}을 읽었다는 것을 확인하는 것입니다. " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "결제 수락 준비하기" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "네, 저도 끼워주세요!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "더 나은 우커머스 구축" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "기본 설정 업데이트 중 문제가 발생했음" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "%(title)s 계정 구성하기" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "설치 %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "아래 버튼을 클릭하여 이 결제 게이트웨이의 설정을 관리할 수 있습니다." +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "연결하기" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "진행합니다" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "결제 설정 저장 중 문제가 발생했습니다." #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s 구성됨" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "추천" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "현지 파트너" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "설정 완료" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "활성" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "무시하고 시작" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "스토어를 시작하기 전에 확인할 몇 가지 사항" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "시작하기 전에" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "새 웹사이트의 주소를 선택하거나 이미 소유하고 있는 도메인을 이전하세요." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "상품 나열하기" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "스토어에 상품 또는 서비스를 추가하여 판매를 시작하세요. 상품을 수동으로 생성하거나 기존 스토어에서 가져오세요." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "내 상품 나열하기" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "고객에게 쉽고 편리한 결제 방법을 제공하세요! 빠르고 안전한 온라인 또는 직접 결제 수단을 하나 이상 설정하세요." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "결제받기" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "언제든지 설정에서 되돌릴 수 있습니다." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "이제 축하할 시간입니다. 스토어를 시작할 준비가 되었습니다! 좋아요!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "스토어를 시작할 준비가 되셨나요?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "마음이 바뀌셨나요? 개인정보 설정을 업데이트하여 스토어를 다시 비공개로 전환할 수 있습니다." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "내 스토어 보기" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "우커머스 스토어 시작을 축하합니다. 잠시 시간을 내어 축하하고 소식을 공유하세요!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "좋아요! 훌륭합니다!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "스토어 시작하기" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "복사됨" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "이 무료 평가판 정보 배너는 무시하세요." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "무엇을 이용할 수 있는지 둘러보기를 시작할 수 있는 무료 평가판 테스트 스토어입니다. 무료 평가판에 대해 자세히 알아보려면 \"더 알아보기\"를 클릭하세요." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "스토어 위치 저장 중 문제가 발생했음" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "\"결제 테스트\"를 클릭하면 {{tosLink}}서비스 약관{{/tosLink}}에 동의하는 것입니다." -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "간단한 일체형 옵션으로 결제를 강화하세요. WooCommerce Payments로 거래 테스트를 시작할 비즈니스 상세 정보를 확인하세요." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "결제 테스트" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "고객에게 쉽고 편리한 결제 방법을 제공하세요! 빠르고 안전한 온라인 또는 직접 결제 수단을 설정하고 테스트하세요." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "결제를 테스트할 시간입니다." -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "결제 일러스트레이션" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "WooCommerce Payments의 기능과 이점을 테스트할 준비가 되었습니다." -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "결제받기가 준비되기까지 몇 단계밖에 남지 않았습니다." -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "평가판 기간에는 예치금을 사용할 수 없습니다. 실제 거래 처리를 시작하고 결제 및 지불금을 받으려면 유료 요금제로 업그레이드하세요." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "무료 평가판을 사용하는 동안에는 예치금을 사용할 수 없습니다. 실제 거래 처리를 시작하고 결제 및 지불금을 받으려면 유료 요금제로 업그레이드하세요." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "관리자와 스토어 관리자만 무료 평가판을 사용하는 동안에 주문할 수 있습니다. 고객의 결제를 수락할 준비가 되었으면 유료 요금제로 업그레이드하세요." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "무료 평가판을 사용하는 동안에는 관리자와 스토어 관리자만 주문할 수 있습니다. 고객의 결제를 수락할 준비가 되었으면 유료 요금제로 업그레이드하세요." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "블로그에 팁, 요령 및 전자상거래 영감이 정리되어 있습니다." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "영감받기" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "컬렉션 둘러보기" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "엄선한 확장 기능 컬렉션으로 빠르게 시작하세요." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "엄선한 컬렉션" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "추가 특성과 기능을 추가하거나 다른 플랫폼 및 도구와 통합하세요." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "사용자 정의 및 확장" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "스토어에서 더 많은 작업 수행 – 확장 기능추가" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "확장 기능 둘러보기" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Woo 확장 기능으로 스토어를 비즈니스와 합치하도록 사용자 정의하세요. 유료 요금제로 업그레이드하여 비즈니스 목표를 달성하는 데 도움이 될 수 있는 수백 가지 도구와 기능에 접근하세요. 무엇을 사용할 수 있는지 궁금하신가요? 확장 기능 마켓플레이스를 둘러보세요." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "우커머스 확장 기능으로 스토어를 비즈니스에 맞춰 사용자 정의하세요. 유료 요금제로 업그레이드하여 목표를 달성하는 데 도움이 될 수 있는 수백 가지 도구와 기능을 사용하세요. 무엇을 사용할 수 있는지 궁금하신가요? 확장 기능 마켓플레이스를 둘러보세요." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "확장 기능으로 스토어의 수준 높이기" @@ -384,8 +815,8 @@ msgstr "축하할 시간입니다! 스토어를 시작할 준비가 되셨나요 #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "스토어 시작" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "이미 스토어를 시작하셨습니다." #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2분" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "도메인" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "도메인 추가" @@ -428,18 +861,19 @@ msgstr "쇼핑객에게 원활한 계산을 제공하려고 전환에 최적화 msgid "Meet our new, customizable checkout" msgstr "사용자 정의 가능한 신규 계산 기능 만나보기" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\t현재 회원님에게만 스토어가 표시됩니다. 모든 사람이 스토어를 이용할 수 있도록 유료 요금제로 업그레이드하세요.\n" +"\t\t\t현재 회원님에게만 스토어가 표시됩니다. 모든 사람이 스토어를 이용할 수 있도록 하세요.\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "지금 업그레이드" @@ -451,15 +885,15 @@ msgstr "평가판 기간에는 테스트 주문만 가능합니다. 고객의 msgid "Start selling to everyone" msgstr "모든 사람에게 판매 시작" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "내 계정" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "연락처" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "홈" @@ -471,7 +905,8 @@ msgstr "이 사이트는 이미 시작되었음" msgid "You don't have permissions to launch this site" msgstr "이 사이트를 시작할 권한이 없습니다." -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "관리자와 스토어 관리자만 무료 평가판을 사용하는 동안에 주문할 수 있습니다. 고객의 결제를 수락할 준비가 되었으면 유료 요금제로 업그레이드하세요." @@ -492,61 +927,61 @@ msgstr "주문할 수 없습니다. 계산 기능이 현재 미리보기 용도 msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "이 스토어는 주문을 수락할 준비가 되지 않았습니다. 계산 기능이 현재 미리보기 용도로만 활성화되어 있습니다." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack 통계" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "젯팩 상태" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "스팸 방지" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "둘러보기" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "관리" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce 구독" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "확장" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "고객" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "레거시 보고서" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "WooCommerce 상태" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "우커머스 설정" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "주문" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "내 홈" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "피드백" @@ -554,18 +989,26 @@ msgstr "피드백" msgid "Save big with WooCommerce Payments" msgstr "WooCommerce 결제로 대폭 절약" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "괜찮습니다." +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "시작하기" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "내비게이션" + #. Author of the plugin msgid "Automattic" msgstr "오토매틱스" @@ -607,7 +1050,7 @@ msgstr "주문 정보가 수동으로 고객에게 전송되었습니다." msgid "Invalid order ID." msgstr "잘못된 주문 ID." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "우커머스" @@ -742,17 +1185,21 @@ msgstr "전자상거래 요금제에서는 WooCommerce를 비활성화할 수 msgid "Store" msgstr "스토어" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "통계" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "도시" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "계속" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "자세히 알아보세요." @@ -765,6 +1212,11 @@ msgstr "우커머스 확장기능" msgid "Extensions %s" msgstr "확장 기능 %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "%1$s 제공" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Storefront 및 워드프레스닷컴에서 빌드됨" diff --git a/languages/wc-calypso-bridge-pt_BR.mo b/languages/wc-calypso-bridge-pt_BR.mo index 510fdb896831bb66aee47002f702b560e5d334d3..187464f1fe81c09dc506263b85ca4f4af41080b9 100644 GIT binary patch literal 36496 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 delta 4937 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 b>-Bwi?A3ejtPTvg>m7$av8P=hY483oG0`3i diff --git a/languages/wc-calypso-bridge-pt_BR.po b/languages/wc-calypso-bridge-pt_BR.po index 0e98726f..e4656228 100644 --- a/languages/wc-calypso-bridge-pt_BR.po +++ b/languages/wc-calypso-bridge-pt_BR.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-13 13:54:03+0000\n" +"PO-Revision-Date: 2023-09-14 08:54:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: pt_BR\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "Não consegue encontrar o plugin certo? Desde integrações de serviços até personalizações diferenciadas, nossa equipe de especialistas pode ajudar você nessa." + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "Faça do seu jeito" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "Explore extensões" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "Procurando por mais métodos de pagamento e envio? Deseja criar um site para assinantes ou aceitar doações? Escolha entre as centenas de extensões selecionadas a dedo pelo nosso time." + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "Amplie sua loja" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "Com o WordPress, você pode fazer qualquer coisa. Crie uma loja, tenha um podcast ou exiba seu trabalho. Você quem manda, com mais de 55.000 plugins." + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "Transformar o WordPress" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Procurar plugins" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "Transforme seu site WordPress naquilo que deseja. Faça upgrade para um plano pago e obtenha acesso a milhares de plugins gratuitos e pagos. Quer descobrir o que é possível?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "Com os plugins, faça o que quiser" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "Obtenha funcionalidades melhoradas e correções mais rápidas compartilhando dados não pessoais por meio do {{link}}rastreamento de uso{{/link}} que nos mostra como o WooCommerce é usado. Nenhum dado pessoal é rastreado ou armazenado." + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "Crie cartões de presente digitais" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "Comece a vender e aceitar cartões de presente digitais para aumentar a fidelidade dos clientes, gerar mais receita e apresentar sua loja a novos compradores." + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "Aumente a lealdade dos clientes com cartões de presente" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "Exiba seus produtos para milhões de compradores engajados que navegam nas plataformas TikTok, Pinterest e Meta com a publicidade em redes sociais." + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "Alcance mais clientes por meio das redes sociais" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "Alcance compradores ativos em todo o Google com listagens de produtos e anúncios que você pode criar e gerenciar diretamente no seu painel." + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "Anuncie seus produtos no Google" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "Experimente o AutomateWoo" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "Aumente as vendas e crie fidelidade por meio de mensagens de marketing automatizadas que respondem aos dados de compra do seu cliente." + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "Automatize seu marketing" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "Descubra nossas ferramentas de marketing integradas para alcançar mais clientes e aumentar as vendas" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "Expanda seu negócio com centenas de extensões" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "Alcance mais clientes e expanda seus negócios com as nossas ferramentas integradas de marketing e de publicidade. Faça upgrade para um plano pago para desbloquear nossas poderosas ferramentas de marketing e comece a expandir seu negócio hoje mesmo!" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "Comece a expandir seus negócios" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "Ilustração de aparência" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "Ilustração de produtos" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "Está tudo muito bonito, continue assim!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "Oba! Chegamos à última etapa! Bom trabalho" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "Apenas mais algumas tarefas para concluir." + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "Boas-vindas à sua loja do Woo Express" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "Boas-vindas a %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "%1$d de %2$d concluído." + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "Está quase tudo pronto para você começar a vender! Siga estes passos para configurar sua loja de teste." + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "Ocultar lista de configuração" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "O processo de configuração da loja atende às minhas necessidades." + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "A configuração da loja é fácil de concluir." + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "Agradecemos seu feedback!" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "Como foi sua experiência?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "Esconder isso" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "Mostrar lista de tarefas de configuração" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "Opções da lista de tarefas" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "Parabéns! Tire um momento para comemorar. E, quando estiver tudo pronto para lançar sua loja, você só precisa fazer upgrade para um plano pago. Isso também desbloqueará as duas próximas tarefas na lista de tarefas." + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "Oba! Sua loja de teste foi configurada!" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "Você está indo bem! Um coisa a menos na sua lista de afazeres ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "Ocorreu um erro ao configurar impostos automatizados. Tente novamente." + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "Durante o período de teste gratuito, você pode definir as configurações de imposto sobre vendas, mas não recebê-lo. {{br/}}Para começar a vender produtos, {{link}}faça upgrade agora mesmo{{/link}}." + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "Eu não cobro impostos sobre vendas" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "Configurar impostos manualmente" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "Escolher um parceiro para impostos" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "O WooCommerce Tax pode automatizar os cálculos de impostos sobre vendas para você." + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "Automatizar impostos" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "Automatizar impostos" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "Vá para a tela de configurações de taxas de impostos para configurar suas taxas de impostos" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "Configurar taxas de impostos" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "O endereço no qual sua empresa opera" + +#: build/index.js:1 +msgid "Set store location" +msgstr "Definir localização da loja" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "Selecione um país/região" + +#: build/index.js:1 +msgid "Post code" +msgstr "CEP" + +#: build/index.js:1 +msgid "Address" +msgstr "Endereço" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "País" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "Ao clicar em \"Configurar\", você ativa as taxas de impostos e os cálculos. Obtenha mais informações {{link}}aqui{{/link}}." + +#: build/index.js:1 +msgid "Configure" +msgstr "Configurar" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "Prossiga com a configuração" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "Ao instalar o WooCommerce Tax e o Jetpack você concorda com os {{link}}Termos de Serviço{{/link}}." + +#: build/index.js:1 +msgid "100% free" +msgstr "100% gratuito" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "Com tecnologia {{link}}Jetpack{{/link}}" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "Conformidade com nexo econômico {{strong}}único{{/strong}}" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "Cálculo de imposto sobre vendas em tempo real" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "Ideal para novas lojas" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "WooCommerce Tax" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "Obtenha mais vendas" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "Faça upgrade para um plano pago para desbloquear novas funcionalidades e começar a vender" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "No momento, você está usando o teste gratuito. Para ter acesso a toda gama de funcionalidades, faça upgrade para um plano pago." + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "Ilustração de navegação modal de boas-vindas 1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "Ilustração de navegação modal de boas-vindas 2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "Configuração obrigatória" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "Receba e gerencie pagamentos recorrentes e receba depósitos automáticos na conta bancária indicada." + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "Venda para mercados internacionais e aceite mais de 135 moedas com métodos de pagamento locais." + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "Ofereça aos seus clientes a forma de pagamento preferida deles, incluindo pagamentos com cartão de débito e crédito, Apple Pay, Sofort, SEPA, iDeal e muito mais." + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "Os métodos de pagamento aceitos incluem:" + +#: build/index.js:1 +msgid "& more." +msgstr "e mais." + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "Navegar pelas extensões" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "Adicione seus produtos. Exiba seus produtos ou serviços e prepare-se para começar a vender – adicione informações, imagens e descrições dos produtos." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "Importe seus produtos. Exiba seus produtos ou serviços e prepare-se para começar a vender – adicione informações, imagens e descrições dos produtos existentes." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "Adicionar produtos" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "Importar produtos" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "Adicionar seus produtos" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "Importar seus produtos" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "Escolher tema" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "Escolha um tema que melhor se adapte à aparência da sua marca e, em seguida, personalize-o. Altere as cores, adicione seu logotipo e crie páginas." + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "Escolha o tema" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "Plugins" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "Restaurar" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "\"Coisas a fazer\"" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "Configurar lista de tarefas" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "Restaure a visibilidade da lista de tarefas \"Coisas a fazer\"." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "Restaure a visibilidade da lista de tarefas de integração principal." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "Use essas opções para restaurar a visibilidade das listas de tarefas de integração na página inicial do WooCommerce." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "Integração" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "Uma experiência de navegação personalizada otimizada para vendas." + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Fazer acontecer com o WooCommerce agora é muito mais rápido. Leia mais sobre nossa nova navegação ou explore por conta própria." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Acelere o seu avanço com a nossa nova navegação" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Confira as dicas e informações sobre o desempenho da sua loja sempre que acessar o painel do WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Conheça sua nova Página inicial" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Escolha um novo endereço de site para sua loja ou transfira o que você já possui." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Adicionar uma ilustração de domínio" @@ -79,43 +487,53 @@ msgstr "Detalhes de transferência bancária direta adicionados" msgid "Please enter an account number or IBAN" msgstr "Digite um número de conta ou IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Somente administradores e gerentes de loja podem fazer pedidos durante o período de teste gratuito. Se sua loja já estiver pronta para aceitar pagamentos de clientes, {{link}}faça upgrade para um plano pago{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Formas de pagamento offline" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Leia mais" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Experimente uma das alternativas de provedor de pagamento." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Outros provedores de pagamento" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Dê aos clientes mais opções de pagamento." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Opções adicionais de pagamento" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Preparar-se para aceitar pagamentos online" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Escolher um provedor de pagamento" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Ocorreu um erro ao se conectar ao WooCommerce Payments. Tente novamente ou se conecte mais tarde nas configurações da loja." @@ -132,245 +550,258 @@ msgstr "Ao aceitar compartilhar {{link}}dados de uso{{/link}} não pessoais, voc msgid "Help us build a better WooCommerce Payments experience" msgstr "Queremos sua ajuda para melhorar a experiência com o WooCommerce Payments" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Ao usar o WooCommerce Payments, você concorda em aderir aos nossos {{tosLink}}Termos de Serviço{{/tosLink}} e confirma que leu a nossa {{privacyLink}}Política de Privacidade{{/privacyLink}}. " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Prepare-se para aceitar pagamentos" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Sim, conte comigo!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Crie um WooCommerce melhor" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Houve um problema ao atualizar suas preferências" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configure sua conta %(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Instalar %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Para gerenciar as configurações deste portal de pagamentos, clique no botão abaixo" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Conectar" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Continuar" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ocorreu um problema ao salvar suas configurações de pagamento" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s configurado com sucesso" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recomendado" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Parceiro local" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Concluir configuração" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Ativar" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lançar mesmo assim" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Algumas coisas que você deve verificar antes de lançar sua loja" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Antes de lançar" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Escolha um endereço para o seu novo site ou transfira um domínio que você já possui." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Listar produtos" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Adicione produtos ou serviços à loja para começar a vender. Crie produtos manualmente ou importe-os de uma loja existente." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Liste seus produtos" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Ofereça aos seus clientes uma maneira fácil e conveniente de pagar. Configure uma ou mais das nossas rápidas e seguras formas de pagamento online ou presencial." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Receba pagamentos" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Você pode reverter quando quiser em Configurações." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Sua loja está pronta para ser lançada. É hora de comemorar! Eba!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Pronto para lançar sua loja?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Mudou de ideia? Se quiser tornar sua loja privada novamente, atualize as configurações de privacidade." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Visualizar sua loja" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Parabéns pelo lançamento da sua loja com o WooCommerce! Agora é hora de comemorar e espalhar a novidade." -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Eba! Você conseguiu!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Como lançar sua loja" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Copiado" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Ignore este banner informacional sobre o teste gratuito." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Esta é sua loja de teste gratuito. Você pode começar a explorar o que está disponível. Para saber mais sobre o teste gratuito, clique em \"Leia mais\"." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Ocorreu um problema ao salvar a localização da sua loja" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Ao clicar em \"Testar pagamentos\", você concorda com os {{tosLink}}Termos de Serviço{{/tosLink}}." -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Turbine seus pagamentos com uma opção simples e completa. Verifique os detalhes do seu negócio para começar a testar transações com o WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Testar pagamentos" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Ofereça aos seus clientes uma maneira fácil e conveniente de pagar. Configure e teste algumas das nossas rápidas e seguras formas de pagamento online ou presencial." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Chegou a hora de testar os pagamentos" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ilustração de pagamento" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Você já pode começar a testar as funcionalidades e benefícios do WooCommerce Payments" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Falta pouco para sua loja estar pronta para receber pagamentos" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Os depósitos não estão disponíveis durante o período de teste gratuito. Para começar a processar transações reais e receber pagamentos, faça upgrade para um plano pago." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Os depósitos não estão disponíveis durante o período de teste gratuito. Para começar a processar transações reais e receber pagamentos, faça upgrade para um plano pago." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Somente administradores e gerentes de loja podem fazer pedidos durante o período de teste gratuito. Se sua loja já estiver pronta para aceitar pagamentos de clientes, faça upgrade para um plano pago." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Somente administradores e gerentes de loja podem fazer pedidos durante o período de teste gratuito. Se sua loja já estiver pronta para aceitar pagamentos de clientes, faça upgrade para um plano pago." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Dicas, truques e inspirações de comércio eletrônico do nosso blog." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "Busque inspiração" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Descobrir coleções" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Deixe tudo pronto para começar rapidamente com a nossas coleções de extensões cuidadosamente escolhidas." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Coleções cuidadosamente escolhidas" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Adicione funcionalidades extras ou faça integração com outras plataformas e ferramentas." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Personalize e amplie" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Faça mais com a sua loja: adicione extensões" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Navegar pelas extensões" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Personalize sua loja com as extensões Woo para que ela combine perfeitamente com seus negócios. Faça upgrade para um plano pago e tenha acesso a centenas de ferramentas e funcionalidades que podem ajudar você a alcançar seus objetivos de negócios. Que saber o que está disponível? Navegue pelo nosso marketplace de extensões." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Personalize sua loja com as extensões WooCommerce para que ela combine perfeitamente com seus negócios. Faça upgrade para um plano pago e obtenha acesso a centenas de ferramentas e funcionalidades que podem ajudar você a alcançar seus objetivos. Quer saber o que está disponível? Navegue pelo nosso marketplace de extensões." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Eleve sua loja a um novo patamar com as extensões" @@ -384,8 +815,8 @@ msgstr "É hora de comemorar! Tudo pronto para lançar sua loja?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lance sua loja" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "Você já lançou sua loja" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutos" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "Domínio" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Adicionar um domínio" @@ -428,18 +861,19 @@ msgstr "Para proporcionar uma experiência fácil e simples aos compradores na h msgid "Meet our new, customizable checkout" msgstr "Conheça o nosso novo checkout personalizável" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tNo momento, você é a única pessoa que pode visualizar sua loja. Para que outras pessoas também possam visitar sua loja, faça upgrade para um plano pago.\n" +"\t\t\tNo momento, você é a única pessoa que pode visualizar sua loja. Para que outras pessoas também possam visitá-la, .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Faça o upgrade agora" @@ -451,15 +885,15 @@ msgstr "Durante o período de teste gratuito, você só pode fazer pedidos de te msgid "Start selling to everyone" msgstr "Comece a vender para todo mundo" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "Minha conta" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "contato" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "Inicial" @@ -471,7 +905,8 @@ msgstr "O site já foi lançado" msgid "You don't have permissions to launch this site" msgstr "Você não tem permissão para lançar este site" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Somente administradores e gerentes de loja podem fazer pedidos durante o período de teste gratuito. Se sua loja já estiver pronta para aceitar pagamentos de clientes, faça upgrade para um plano pago." @@ -492,61 +927,61 @@ msgstr "Não foi possível fazer seu pedido. No momento, a funcionalidade de che msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Esta loja não está pronta para aceitar pedidos. No momento, a funcionalidade de checkout está ativada apenas como visualização." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Estatísticas do Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Status do Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Antispam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Descubra" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gerenciar" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "Assinaturas do WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Extensões" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Clientes" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Relatórios antigos" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "Status do WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "Configurações do WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Pedidos" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Minha página inicial" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Feedback" @@ -554,18 +989,26 @@ msgstr "Feedback" msgid "Save big with WooCommerce Payments" msgstr "Economize muito com WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Não, obrigado" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Iniciar" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navegação" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "Detalhes do pedido enviados manualmente ao cliente." msgid "Invalid order ID." msgstr "ID de pedido inválida." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "Não é possível desativar o WooCommerce no plano eCommerce." msgid "Store" msgstr "Loja" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Estatísticas" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Cidade" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuar" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Saiba mais." @@ -765,6 +1212,11 @@ msgstr "Extensões do WooCommerce" msgid "Extensions %s" msgstr "%s extensões" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Com tecnologia %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Criado com a ajuda do Storefront e do WordPress.com" diff --git a/languages/wc-calypso-bridge-ru_RU.mo b/languages/wc-calypso-bridge-ru_RU.mo index ae890d3aab619bb42cb64cc0374422106d6ee500..84a0c779c89664199ca0f83b5637aa293be449b0 100644 GIT binary patch literal 48014 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 delta 5129 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 diff --git a/languages/wc-calypso-bridge-ru_RU.po b/languages/wc-calypso-bridge-ru_RU.po index d269a643..bde293bb 100644 --- a/languages/wc-calypso-bridge-ru_RU.po +++ b/languages/wc-calypso-bridge-ru_RU.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-13 11:54:03+0000\n" +"PO-Revision-Date: 2023-09-14 12:54:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: ru\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "Не можете найти подходящий плагин? Наша команда специалистов поможет справиться с любой задачей, от интеграции служб до создания самых причудливых настроек." + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "Делайте всё по-своему" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "Знакомьтесь с расширениями" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "Ищете альтернативные способы оплаты и доставки товаров? Хотите создать сайт с подпиской или принимать пожертвования? Мы подберем для вас сотни расширений, и вы сможете выбрать нужное." + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "Развивайте свой магазин" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "WordPress поможет решить любые задачи. Создать магазин, разместить подкаст или похвастаться работой. В вашем распоряжении 55 000 плагинов." + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "Преобразуйте WordPress" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Плагины" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "Превратите ваш веб-сайт WordPress во что угодно. Перейдите на платный тариф и получите доступ к тысячам платных и бесплатных плагинов. Хотите узнать, где границы возможного?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "С помощью плагинов возможно всё" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "Получайте улучшенные функции и ускоряйте исправления, обмениваясь неконфиденциальными данными через {{link}}средство отслеживания использования{{/link}}, которое показывает, как используется WooCommerce. Никакие персональные данные не отслеживаются и не хранятся." + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "Создавайте цифровые подарочные карты" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "Продавайте и принимайте цифровые подарочные карты, чтобы повысить лояльность клиентов, увеличить доход и привлечь новых клиентов в ваш магазин." + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "Подарочные карты помогают повысить лояльность клиентов" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "С помощью рекламы в социальных сетях представьте ваши товары миллионам заинтересованных покупателей, которые пользуются платформами TikTok, Pinterest и Meta." + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "Охватите больше клиентов в социальных сетях" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "Прямо на консоли создавайте списки продуктов и рекламу и управляйте ими, привлекая активных покупателей в Google." + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "Размещайте рекламу в Google" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "Знакомьтесь с AutomateWoo" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "Повышайте продажи и укрепляйте лояльность с помощью автоматизированных маркетинговых сообщений, реагирующих на данные о покупках ваших клиентов." + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "Автоматизируйте маркетинг" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "Воспользуйтесь нашими встроенными рекламными инструментами, чтобы охватить больше клиентов и повысить продажи" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "Развивайте свой бизнес с помощью сотен бесплатных и платных расширений" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "Встроенные маркетинговые и рекламные инструменты помогут вам охватить больше клиентов и развивать бизнес Перейдите на платный тариф, чтобы получить доступ к мощным маркетинговым инструментам и сразу же приступить к развитию бизнеса!" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "Начните развивать бизнес" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "Изображение внешнего вида" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "Изображение товаров" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "Всё выглядит отлично, так держать!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "Ого! Мы дошли до конца! Отличная работа!" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "Осталось выполнить всего несколько задач!" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "Добро пожаловать в ваш магазин Woo Express!" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "Добро пожаловать в %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "%1$d из %2$d выполнено." + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "Вы почти готовы начать продажи! Выполните эти действия, чтобы настроить пробную версию магазина." + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "Скрыть список настроек" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "Процесс настройки магазина отвечает моим требованиям." + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "Процесс настройки магазина легковыполним." + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "Ваш отзыв очень важен для нас!" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "Как вам это понравилось?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "Скрыть" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "Показать список задач по настройке" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "Параметры списка задач" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "Поздравляем! Возьмите паузу, чтобы отпраздновать. И когда вы уже будете готовы к запуску магазина, всё, что вам останется сделать — перейти на платный тариф. Так вы сможете получить доступ ещё к двум задачам из списка." + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "Ура! Пробная версия магазина настроена!" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "Вы отлично справились! В вашем списке задач стало на один пункт меньше✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "Возникла проблема при настройке автоматизированного налогообложения. Повторите попытку." + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "В течение бесплатного пробного периода вы можете настраивать параметры налога с продаж, но не взимать его. {{br/}}Чтобы начать продажи, {{link}}перейдите на платный тариф{{/link}}." + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "Я не взимаю налог с продаж" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "Настроить налоги вручную" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "Выберите налогового партнёра" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "Сервис «Налоги» WooCommerce Services может автоматизировать расчёт налогов с продаж." + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "Автоматизированное налогообложение" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "Автоматизированное налогообложение" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "Перейдите на экран параметров налоговых ставок, чтобы настроить их" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "Настроить налоговые ставки" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "Адрес вашей компании" + +#: build/index.js:1 +msgid "Set store location" +msgstr "Настроить местоположение магазина" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "Нужно указать страну/регион" + +#: build/index.js:1 +msgid "Post code" +msgstr "Почтовый индекс" + +#: build/index.js:1 +msgid "Address" +msgstr "Адрес" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "Страна/регион" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "Нажав «Настроить», вы включаете налоговые ставки и расчеты. Дополнительные сведения см. {{link}}здесь{{/link}}." + +#: build/index.js:1 +msgid "Configure" +msgstr "Настроить" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "Продолжить установку" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "Устанавливая плагины WooCommerce Tax и Jetpack, вы принимаете наши {{link}}Условия предоставления услуг{{/link}}." + +#: build/index.js:1 +msgid "100% free" +msgstr "100% бесплатно" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "На сайте используется {{link}}Jetpack{{/link}}" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "Соблюдение {{strong}}единых{{/strong}} налоговых обязательств @@@@@" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "Расчёт налога с продаж в реальном времени" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "Подходит для новых магазинов" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "Налоги WooCommerce" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "Получить больше продаж" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "Перейдите на платный тариф, чтобы получить доступ к новым функциям и начать продажи." + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "Сейчас у вас бесплатный пробный период. Чтобы получить доступ ко всем функциям, перейдите на платный тариф." + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "Введение в модальную навигацию, изображение 1 @@@@@" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "Введение в модальную навигацию, изображение 2 @@@@@" + +#: build/index.js:1 +msgid "Setup required" +msgstr "Требуется настройка" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "Получайте регулярный доход и управляйте им, а также автоматически вносите депозиты на указанный вами банковский счёт." + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "Продавайте товары по всему миру и принимайте платежи более чем в 135 валютах с помощью местных способов оплаты." + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "Предложите клиентам различные способы оплаты на выбор, в том числе оплату банковской картой, Apple Pay, Sofort, SEPA, iDeal и другими способами." + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "Доступные способы оплаты:" + +#: build/index.js:1 +msgid "& more." +msgstr "и многое другое." + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "Просмотр расширений" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "Добавить товары Демонстрируйте свои товары и услуги и готовьтесь к началу продаж: загрузите сведения о товарах, изображения и описания." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "Импортировать товары Демонстрируйте свои товары и услуги и готовьтесь к началу продаж: загрузите сведения о товарах, изображения и описания." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "Добавить товары" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "Импорт товаров" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "Добавить товары" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "Импортировать товары" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "Выбор темы" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "Выберите самую подходящую тему для вашего бренда и настройте её по своему вкусу. Меняйте цвета, добавьте логотип, создавайте новые страницы." + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "Выберите тему" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "Плагины" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "Восстановление" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "«Что дальше»" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "Список задач по настройке" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "Показывать список задач по настройке «Что дальше»" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "Показывать список задач по первичной адаптации" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "С помощью этих опций можно сделать видимыми списки задач по первичной адаптации на сайте WooCommerce." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "Адаптация" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "Настраиваемая навигация, приспособленная для продаж." + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Работать с WooCommerce теперь стало ещё быстрее. Узнайте больше о нашей новой системе навигации — или исследуйте её самостоятельно." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Перемещайтесь быстрее с помощью нашей новой навигации" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Получайте советы и аналитические данные по работе вашего магазина при каждом заходе на консоль WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Познакомьтесь с новой главной страницей" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Выберите новый адрес для сайта своего магазина или перенесите уже имеющийся." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Добавьте иллюстрацию домена" @@ -79,43 +487,53 @@ msgstr "Сведения для прямого банковского перев msgid "Please enter an account number or IBAN" msgstr "Введите номер счета или международный номер банковского счета" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "В период использования бесплатной пробной версии размещать заказы могут только администраторы и менеджеры магазинов. Если вы уже готовы принимать платежи от клиентов, {{link}}перейдите на платный тарифный план{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Способы оплаты оффлайн" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Подробности" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Попробуйте воспользоваться одним из альтернативных платёжных сервисов." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Другие платёжные сервисы" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Предоставьте своим клиентам возможность выбирать другие способы оплаты." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Дополнительные способы оплаты" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Как подготовиться к приёму интернет-платежей" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Выберите поставщика системы оплаты" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "При подключении к WooCommerce Payments произошла ошибка. Попробуйте ещё раз или подключитесь позже в настройках магазина." @@ -132,245 +550,258 @@ msgstr "Соглашаясь делиться неконфиденциальны msgid "Help us build a better WooCommerce Payments experience" msgstr "Помогите нам улучшить WooCommerce Payments" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Используя WooCommerce Payments, вы принимаете наши {{tosLink}}Условия предоставления услуг{{/tosLink}} и подтверждаете, что ознакомились с {{privacyLink}}Политикой конфиденциальности{{/privacyLink}} " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Подготовьтесь принимать платежи" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Я тоже хочу!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Улучшите возможности WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "При обновлении настроек возникла проблема" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Настройте свою учётную запись %(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Установить %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Управлять настройками данного платежного шлюза можно нажав кнопку ниже" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Подключайтесь" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Продолжить" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "При сохранении настроек оплаты возникла проблема" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s успешно настроен" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Рекомендован" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Местный партнер" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Завершить настройку" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Включить" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Запустить в любом случае" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Несколько вещей, которые следует проверить перед запуском магазина" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Действия перед запуском" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Выберите адрес нового сайта или перенесите уже имеющийся домен." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Приведите список товаров" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Начните продажи, добавив товары или услуги в магазин. Создавайте товары вручную или импортируйте их из существующего магазина." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Приведите список товаров" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Дайте клиентам возможность легко и удобно оплачивать покупки! Установите один из (или несколько!) наших быстрых и безопасных способов оплаты в Интернете или лично." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Принять платёж" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Вы всегда можете вернуться к этому вопросу в разделе Настройки." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Настало время торжества: вы готовы к запуску своего магазина! Вау!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Готовы запустить собственный магазин?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Передумали? Вы можете снова сделать свой магазин частным, обновив настройки конфиденциальности." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Перейти в магазин" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Поздравляем с запуском вашего магазина WooCommerce. Не забудьте отпраздновать это события и поделиться новостью!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Вау! Готово!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Запуск собственного магазина" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Скопировано" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Откажитесь от этого информационного баннера о бесплатной пробной версии." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Это ваш бесплатный пробный магазин, в котором вы можете ознакомиться с доступными функциями! Чтобы узнать больше о бесплатной пробной версии, нажмите «Подробнее»." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Не удалось сохранить местоположение магазина" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Нажимая «Тестовые платежи», вы соглашаетесь с {{tosLink}}условиями предоставления услуг{{/tosLink}}." -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Осуществляйте платежи с помощью простой и универсальной опции. Проверьте сведения о вашей компании, чтобы начать испытание транзакций с помощью WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Тестовые платежи" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Дайте клиентам возможность легко и удобно оплачивать покупки! Установите и протестируйте некоторые из наших быстрых и безопасных способов оплаты в Интернете или лично." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Пришла пора проверить платежи" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Изображение платежа" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Вы готовы начать тестирование возможностей и преимуществ WooCommerce Payments" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "До начала приёма платежей остался один шаг." -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "В течение пробного периода депозиты недоступны. Чтобы приступить к обработке реальных транзакций и получать платежи и выплаты, перейдите на платный тарифный план." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "В течение бесплатного пробного периода депозиты недоступны. Чтобы приступить к обработке реальных транзакций и получать платежи и выплаты, перейдите на платный тариф." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "В период использования бесплатной пробной версии размещать заказы могут только администраторы и менеджеры магазинов. Если вы уже готовы принимать платежи от клиентов, перейдите на платный тарифный план." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "В течение бесплатного пробного периода размещать заказы могут только администраторы и менеджеры магазинов. Если вы уже готовы принимать платежи от клиентов, перейдите на платный тариф." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Советы, рекомендации и идеи по интернет-торговле из нашего блога." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "Вдохновляйтесь" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Ознакомьтесь с коллекциями" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Быстро приступайте к работе с нашими специальными коллекциями расширений." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Специальные коллекции" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Добавьте дополнительные возможности и функции или подключитесь к другим платформам и инструментам." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Индивидуализация и расширение" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Добивайтесь большего от своего магазина — добавляйте расширения" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Просмотр расширений" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Используйте расширения Woo, чтобы настроить магазин в точном соответствии со своими потребностями. Перейдите на платный тарифный план, чтобы получить доступ к сотням инструментов и функций, которые помогут вам достичь своих целей в бизнесе. Хотите узнать, что предлагается? Ознакомьтесь с нашим магазином расширений." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Используйте расширения WooCommerce, чтобы настроить магазин в точном соответствии со своими потребностями. Перейдите на платный тариф, чтобы получить доступ к сотням инструментов и функций, которые помогут вам достичь ваших целей. Хотите узнать, что мы можем вам предложить? Зайдите в наш магазин расширений." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Выведите свой магазин на новый уровень с помощью расширений" @@ -384,8 +815,8 @@ msgstr "Пришло время отпраздновать! Готовы зап #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Запустите ваш магазин" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "Вы уже запустили свой магазин" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 минуты" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "Домен" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Добавить домен" @@ -428,18 +861,19 @@ msgstr "Чтобы покупателям было просто и удобно msgid "Meet our new, customizable checkout" msgstr "Знакомьтесь с нашей новой, настраиваемой процедурой оформления заказа" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tСейчас только вы можете видеть свой магазин. Чтобы он стал доступен всем, перейдите на платный тарифный план.\n" +"\t\t\tСейчас ваш магазин виден только вам. Чтобы он стал доступен всем, .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Перейти на платную подписку" @@ -451,15 +885,15 @@ msgstr "В течение пробного периода вы можете ра msgid "Start selling to everyone" msgstr "Начинайте продажи для всех" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "Моя учётная запись" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "Связаться" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "Главная страница" @@ -471,7 +905,8 @@ msgstr "Этот сайт уже запущен" msgid "You don't have permissions to launch this site" msgstr "У вас нет прав на запуск этого сайта" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "В период использования бесплатной пробной версии размещать заказы могут только администраторы и менеджеры магазинов. Если вы уже готовы принимать платежи от клиентов, перейдите на платный тарифный план." @@ -492,61 +927,61 @@ msgstr "Не удалось разместить ваш заказ. Функци msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Этот магазин ещё не готов принимать заказы. Функции оформления заказа в настоящее время доступны только для предварительного просмотра." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Статистика Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Статус в Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Защита от спама" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Открыть" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Управление" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Расширения" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Клиенты" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Старые отчёты" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "Статус WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "Настройки WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Заказы" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Главная" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Обратная связь" @@ -554,18 +989,26 @@ msgstr "Обратная связь" msgid "Save big with WooCommerce Payments" msgstr "Экономьте больше с WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Нет, спасибо" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Начало работы" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Навигация" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "Описание заказа отправлено клиенту вру msgid "Invalid order ID." msgstr "Неверный идентификатор заказа." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "Нельзя деактивировать WooCommerce при испол msgid "Store" msgstr "Магазин" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Статистика" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Город" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Продолжить" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Дополнительные сведения." @@ -765,6 +1212,11 @@ msgstr "Расширения WooCommerce" msgid "Extensions %s" msgstr "Расширения %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "При поддержке %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Создано с помощью Storefront и WordPress.com" diff --git a/languages/wc-calypso-bridge-sv_SE.mo b/languages/wc-calypso-bridge-sv_SE.mo index 179318e20d80d0410754a28b9f2d6fea33871ea5..9facd04b1ce241bc669177d7ae93f69a4ec6c682 100644 GIT binary patch delta 13223 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 delta 5747 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 diff --git a/languages/wc-calypso-bridge-sv_SE.po b/languages/wc-calypso-bridge-sv_SE.po index d784af72..03a7202f 100644 --- a/languages/wc-calypso-bridge-sv_SE.po +++ b/languages/wc-calypso-bridge-sv_SE.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-06 19:25:38+0000\n" +"PO-Revision-Date: 2023-09-14 12:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -13,7 +13,7 @@ msgstr "" #: build/plugins.js:1 msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "" +msgstr "Kan du inte hitta rätt tillägg för dina behov? Vårt team av experter kan hjälpa dig att få jobbet gjort på rätt sätt, från tjänsteintegreringar till exotiska anpassningar." #: build/plugins.js:1 msgid "Do it your way" @@ -25,7 +25,7 @@ msgstr "Upptäck utökningar" #: build/plugins.js:1 msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "" +msgstr "Letar du efter fler betalnings- och fraktmetoder? Vill du bygga en medlemskapswebbplats eller ta emot donationer? Välj bland hundratals olika utökningar, handplockade av vårt team." #: build/plugins.js:1 msgid "Extend your store" @@ -33,7 +33,7 @@ msgstr "Utöka din butik" #: build/plugins.js:1 msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "" +msgstr "Få WordPress att göra vad som helst. Skapa en butik, starta en podcast eller visa upp ditt arbete. Med över 55 000 tillägg är det du som har kontrollen." #: build/plugins.js:1 msgid "Transform WordPress" @@ -45,7 +45,7 @@ msgstr "Bläddra bland tillägg" #: build/plugins.js:1 msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "" +msgstr "Förvandla din WordPress-webbplats till vad du vill. Uppgradera till ett betalpaket och få tillgång till tusentals gratis- och betaltillägg. Är du nyfiken på vad som är möjligt?" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -53,7 +53,7 @@ msgstr "Få vad som helst att hända med tillägg" #: build/payment-gateway-suggestions.js:3 msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "" +msgstr "Få förbättrade funktioner och snabbare korrigeringar genom att dela icke-känsliga data via {{link}}användningsspårning{{/link}} som visar oss hur WooCommerce används. Inga personliga data spåras eller lagras." #: build/marketing.js:1 msgid "Create digital gift cards" @@ -69,7 +69,7 @@ msgstr "Öka kundlojalitet med presentkort" #: build/marketing.js:1 msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "" +msgstr "Få dina produkter att synas för miljontals engagerade köpare på plattformarna TikTok, Pinterest och Meta med hjälp av social annonsering." #: build/marketing.js:1 msgid "Reach more customers across social media" @@ -77,7 +77,7 @@ msgstr "Nå fler kunder via sociala medier" #: build/marketing.js:1 msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "" +msgstr "Nå aktiva köpare i Google med produktlistor och annonser som du kan skapa och hantera direkt i din adminpanel." #: build/marketing.js:1 msgid "Advertise your products on Google" @@ -105,19 +105,19 @@ msgstr "Öka ditt företag med hundratals utökningar" #: build/marketing.js:1 msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "" +msgstr "Nå fler kunder och få ditt företag att växa med vår inbyggda marknadsförings- och annonseringsverktyg. Uppgradera till ett betalpaket för att låsa upp våra kraftfulla marknadsföringsverktyg och få ditt företag att börja växa idag." #: build/marketing.js:1 msgid "Get ready to grow your business" -msgstr "" +msgstr "Är du redo att få ditt företag att växa?" #: build/index.js:3 src/task-headers/appearance.js:29 msgid "Appearance illustration" -msgstr "" +msgstr "Illustration av utseende" #: build/index.js:3 src/task-headers/products.js:26 msgid "Products illustration" -msgstr "" +msgstr "Produktillustration" #: build/index.js:3 msgid "Everything is looking great, keep it up!" @@ -155,11 +155,11 @@ msgstr "Dölj listan med konfigurationsåtgärder" #: build/index.js:1 msgid "The store setup process meets my needs." -msgstr "" +msgstr "Butikskonfigurationsprocessen uppfyller mina behov." #: build/index.js:1 msgid "The store setup is easy to complete." -msgstr "" +msgstr "Butikskonfigurationen är enkel att slutföra." #: build/index.js:1 msgid "We appreciate your feedback!" @@ -175,19 +175,19 @@ msgstr "Dölj detta" #: build/index.js:1 msgid "Show setup task list" -msgstr "" +msgstr "Visa uppgiftslista för inställning" #: build/index.js:1 msgid "Task List Options" -msgstr "" +msgstr "Uppgiftslistealternativ" #: build/index.js:1 msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "" +msgstr "Grattis! Ta en stund och fira. Och när du är redo att lansera din butik är allt du behöver göra att uppgradera till ett betalpaket. Detta låser även upp de två kommande uppgifterna i uppgiftslistan." #: build/index.js:1 msgid "Woohoo! Your trial store has been set up!" -msgstr "" +msgstr "Hurra! Din provperiodsbutik har konfigurerats." #: build/index.js:1 msgid "You're awesome! One less item on your to-do list ✅" @@ -199,7 +199,7 @@ msgstr "Det var ett problem med att ställa in automatiska momser. Försök igen #: build/index.js:1 msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "" +msgstr "Under den kostnadsfria provperioden kan du konfigurera dina inställningar för försäljningsmoms, men inte samla in moms. {{br/}}För att börja sälja produkter, {{link}}uppgradera nu{{/link}}." #: build/index.js:1 msgid "I don't charge sales tax" @@ -215,7 +215,7 @@ msgstr "Välj en momspartner" #: build/index.js:1 msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "" +msgstr "WooCommerce Tax kan beräkna försäljningsmoms i realtid åt dig." #: build/index.js:1 msgid "Automate Taxes" @@ -227,7 +227,7 @@ msgstr "Automatisera momser" #: build/index.js:1 msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "" +msgstr "Gå till inställningsvyn för momssatser för att konfigurera dina momssatser" #: build/index.js:1 msgid "Configure tax rates" @@ -259,7 +259,7 @@ msgstr "Land/Region" #: build/index.js:1 msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "" +msgstr "Genom att klicka på Konfigurera aktiverar du momssatser och beräkningar. Du hittar mer information {{link}}här{{/link}}." #: build/index.js:1 msgid "Configure" @@ -271,7 +271,7 @@ msgstr "Fortsätt installationen" #: build/index.js:1 msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "" +msgstr "Genom att installera WooCommerce Tax och Jetpack samtycker du till {{link}}användarvillkoren{{/link}}." #: build/index.js:1 msgid "100% free" @@ -283,11 +283,11 @@ msgstr "Drivs med {{link}}Jetpack{{/link}}" #: build/index.js:1 msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "" +msgstr "{{strong}}Enkel{{/strong}} överensstämmelse med ekonomisk nexus" #: build/index.js:1 msgid "Real-time sales tax calculation" -msgstr "" +msgstr "Beräkning av försäljningsmoms i realtid" #: build/index.js:1 msgid "Best for new stores" @@ -311,27 +311,27 @@ msgstr "Du använder för närvarande en gratis provperiod! För att få åtkoms #: build/index.js:1 src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" -msgstr "" +msgstr "Välkommen modal navigering illustration 1" #: build/index.js:1 src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" -msgstr "" +msgstr "Välkommen modal navigering illustration 2" #: build/index.js:1 msgid "Setup required" -msgstr "" +msgstr "Konfiguration krävs" #: build/index.js:1 msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "" +msgstr "Tjäna och hantera återkommande intäkter och få automatiska insättningar till ditt valda bankkonto." #: build/index.js:1 msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "" +msgstr "Sälj till internationella marknader och acceptera mer än 135 valutor med lokala betalningsmetoder." #: build/index.js:1 msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "" +msgstr "Erbjud dina kunder deras föredragna sätt att betala inklusive bank- och kreditkortsbetalningar, Apple Pay, Sofort, SEPA, iDeal och många fler." #: build/index.js:1 msgid "Accepted payment methods include:" @@ -375,7 +375,7 @@ msgstr "Välj tema" #: includes/tasks/class-wc-calypso-task-appearance.php:38 msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." -msgstr "" +msgstr "Välj ett tema som bäst passar ditt varumärkes utseende och känsla och gör det sedan till ditt eget. Ändra färgerna, lägg till din logga och skapa sidor." #: includes/tasks/class-wc-calypso-task-appearance.php:29 msgid "Choose your theme" @@ -401,15 +401,15 @@ msgstr "Ställ in uppgiftslista" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 msgid "Restore the visibility of the \"Things to do next\" Task List." -msgstr "" +msgstr "Återställ synligheten för uppgiftslistan \"Saker att göra härnäst\"." #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 msgid "Restore the visibility of the primary onboarding Task List." -msgstr "" +msgstr "Återställ synligheten för den primära uppgiftslistan för onboarding." #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." -msgstr "" +msgstr "Använd dessa alternativ för att återställa synligheten för uppgiftslistorna för onboarding på WooCommerce-startsidan." #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 msgid "Onboarding" @@ -717,16 +717,16 @@ msgstr "Det här är din kostnadsfria provperiodsbutik där du kan börja utfors msgid "There was a problem saving your store location" msgstr "Det var ett problem att spara din butiksplats" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Genom att klicka på \"Testa betalningar\" samtycker du till {{tosLink}}användarvillkoren{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Hantera dina betalningar med ett enkelt allt-i-ett-alternativ. Verifiera dina företagsuppgifter för att börja testa transaktioner med WooCommerce Payments." #: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Testa betalningar" @@ -735,12 +735,12 @@ msgid "Give your customers an easy and convenient way to pay! Set up and test so msgstr "Ge dina kunder ett enkelt och bekvämt sätt att betala. Konfigurera och testa några av våra snabba och säkra betalningsmetoder för onlinebetalningar eller personliga betalningar." #: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Det är dags att testa betalningar." #: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Betalningsillustration" @@ -796,7 +796,7 @@ msgstr "Bläddra bland utökningar" #: includes/templates/html-admin-page-addons-landing-page.php:19 msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." -msgstr "" +msgstr "Anpassa din butik för att fungera perfekt för ditt företag, med WooCommerce-utökningar. Uppgradera till ett betalt paket för att få åtkomst till hundratals verktyg och funktioner som kan hjälpa dig att nå dina mål. Nyfiken på vad som finns? Bläddra i vår marknadsplats för utökningar." #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 @@ -866,7 +866,10 @@ msgid "" "\n" "\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" -msgstr "\n" +msgstr "" +"\n" +"\t\t\tJust nu är du den enda som kan se din butik. För att göra din butik tillgänglig för alla,  .\n" +"\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 @@ -882,15 +885,15 @@ msgstr "Under provperioden kan du bara lägga testbeställningar. För att ta em msgid "Start selling to everyone" msgstr "Börja sälja till alla" -#: includes/class-wc-calypso-bridge-setup.php:339 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "Mitt konto" -#: includes/class-wc-calypso-bridge-setup.php:337 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "Kontakt" -#: includes/class-wc-calypso-bridge-setup.php:328 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "Hem" diff --git a/languages/wc-calypso-bridge-tr_TR.mo b/languages/wc-calypso-bridge-tr_TR.mo index 85ab57e853f443a2c174054c777d1e7130432e14..c86d1aed95c19c4097e214c601489fb51af00d9a 100644 GIT binary patch literal 36991 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 delta 4931 zcmZwKd303O9l-HBAwURWNg#wJBrjnxkPt`+5Y~i!Ny09OvOO}7WXNPD&P+f+7#1I2%=GJ_ByR$hF-)a@^%@14;qQ<>)eVewD0K&4pdQ^_ zsloUnN<$x^eC~6Uf!xA@*pJal2eYvj7e?yepk(gv*a0Oisn8LF(qJ|PS+fxlC!su_ zgR&>?M@jh_^x{_Bf#2hB+|Wy@8a#vBaSUIQ=PekGKcZyB(c7-KLsmg`>`neB*O_Q7Q+pWhm(*P=||HIx~)pbX?alqLNflkh7%fzgI- zL&U|wG^H~5Lrl88mN_ULFGKm_N|X$2L}~a4_QwX?g&(4HT*~N1V+FDbsvc#@no!z# zA33S&PbitWg|alkHk>iqQ0?(`%tl%JKcgJS@39~D<;Gam43xT?o6PV4ZpNd?{!%H7 zt~KVP40v3mJ`Z!LFG5NEZe;re)sqw?17}gz>KZ>3jKPlNUrfT)Xkc(Mg+ml% z7k`4C@Jp1ny^S3)inC*2JW7glk%OZ4Vj-SF8NfFv18tpWe?J4I!(5b%jz;NcD#`@r z=8^vd3OjhfTT~rIS%TBZGOMe23;%^>c$2gE4ld=}l3Ih?M!XN5_#txA)EG9>Qe2FD zRlSaq$?qbjvJTSz%#q}OD}~iOkTw1X$_S%I*}J#{%E-H5cT7d;ARpuKK9u)`g$1O3 zE1ss_G}?Y|tR7>xdlGx_{0xr6OGsC$LvXB}s;PLM2Xjywj^$HbF$rY}ve3ZM*Z~)# zY{pe616+^ty&9B`4q_X88Q0-i+>1jBl$wNZ;VBG87uq8}jWc*)jkgAb0!Ln5MoF!#gM1+td*N`Dfz3r(({dbuUc8NmQ6_Mp$XZ_51puWcS4ze+q6F|Lwo_+3rgOY)` z`S!bfICi4G1ZDG8VjS*7*|dkSJ)S_>e6ONp^zwZ2FPrE~9>}rz0j1-_d+kj&4Aa$YrA}c_PdMQdf7m+Sh^nLalb5W226AY)NFH%)I ziM!W}6rLp(6U&HU#0El^fxg1&Ux#u%LaZRV6Y`ptjwCBS;_kJL0?7`)^yFDkj+Sf^ znZ?V*LBdb$C*+ds{J-ll9p5oA3`9 zSuW;pZ@2??QEkBy#7_t|arpN>~~K|Dw7CgjSqQTrkaYluXmfRH_Ngpg~! zP59oC{==8-+C#)M;Tr$*fU;rkUilPG65;m)786ep&lBva@b3ap%L!g|;cF51S;UhB z2PXWh3Bp%4_e>%v$FG5yLEOFMXvwjWYa}r>T(WOHp##yCkaxsTf)}HzCejGGEFwf~ zBsd`9e-R=4Qj!-~6tRccCHbFAL9SS$JY2H>NgYjj95Fre>~TyY%7`qYl5i4tucs-L zL@M$!(nJ;U0hYU|{72B?zKG8inA;+k6d8z}J%8eBKdO(jFeYr=S-q>@BUf!#Re!kaW zZ6v$(>EwjamE31+;Ty<5M&vaTwz-yRB zmFe>6{ryW~OTBJ4?ejrB+x5)d<^N%z)U?UbA4z+*82|qXm)-dZ>6QC8)li$!U^MNs_Byq z?@A+3ZW&cRud})|kR3`Ka>JnuhJG63<+b#uYPdQaiaP|NsR zt@LM;v-F!&W+yFhS!@1hc50#JrU^^ePOH)0>61g(rXO?YfyIyMP9=x*$0gl6s=QG1q_M;X=nv!%=0H#fA@xvc=rm+Qi1=N(o0&az_+ zt*`$5@&cV>_SA2i1rtlm<~nno>1l3U=QbH-xoNC4Df*imd1kCNt0-g{)qEt-+~_ua zh75D9%cI8Ar7>PQ?Yul)KUMlf+~h!o%j33M>H;pG&b2It;4U{S4bxp|>YuI5(D7wk zLdoUBqL^1vw+SZWGd*R^jZO8c$XrqFHY}%0Z?8xVU2+#kg??U@>`0tuu5E7gWf=il zwJIu_-tdtlecaba$1m@r-}F~&pT8wMsVDvWb#!%3sJzvQ>0&8 zo87Ld)AgGkuU97NbC2!&4@r?E A{r~^~ diff --git a/languages/wc-calypso-bridge-tr_TR.po b/languages/wc-calypso-bridge-tr_TR.po index dbc38dcc..cb76851d 100644 --- a/languages/wc-calypso-bridge-tr_TR.po +++ b/languages/wc-calypso-bridge-tr_TR.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-14 21:54:03+0000\n" +"PO-Revision-Date: 2023-09-13 13:54:04+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: tr\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "İhtiyaçlarınıza uygun eklentiyi bulamıyor musunuz? Hizmet entegrasyonlarından egzotik özelleştirmelere kadar çeşitli alanlarda uzman ekibimiz işlerinizi doğru yapmanıza yardımcı olabilir." + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "İstediğiniz gibi yapın" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "Uzantıları Keşfedin" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "Daha fazla ödeme ve gönderim yöntemi mi arıyorsunuz? Üyelik sitesi oluşturmak veya bağış kabul etmek mi istiyorsunuz? Ekibimizin özenle seçtiği yüzlerce Uzantı arasından seçim yapın." + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "Mağazanızı genişletin" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "WordPress'in dilediğiniz her şeyi yapmasını sağlayın. Mağaza oluşturun, podcast barındırın veya işinizi vitrine çıkarın. 55.000'den fazla eklenti ile kontrol sizin elinizde." + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "WordPress'i Dönüştürün" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Eklentilere göz atın" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "WordPress sitenizi aklınıza koyduğunuz şeye dönüştürün. Ücretli bir pakete yükseltip binlerce ücretsiz ve ücretli eklentiye erişim edinin. Nelerin mümkün olduğunu mu merak ediyorsunuz?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "Eklentilerle her şeyi gerçekleştirin" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "Bize WooCommerce'in nasıl kullanıldığını gösteren {{link}}kullanım izleme{{/link}} özelliği aracılığıyla hassas olmayan verileri paylaşarak iyileştirilmiş özellikler ve daha hızlı düzeltmeler alın. Kişisel veriler izlenmez veya saklanmaz." + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "Dijital hediye kartları oluşturun" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "Müşteri sadakatini artırmak, daha fazla gelir kazanmak ve mağazanızı yeni müşterilere tanıtmak için dijital hediye kartları satmaya ve kabul etmeye başlayın." + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "Hediye kartlarıyla müşteri sadakatini artırın" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "Sosyal reklam ile ürünlerinizi TikTok, Pinterest ve Meta platformlarına göz atan milyonlarca ilgili müşterinin önüne çıkarın." + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "Sosyal medyada daha fazla müşteriye ulaşın" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "Doğrudan panonuzdan oluşturup yönetebileceğiniz ürün listelemeleri ve reklamlarıyla Google'daki etkin müşterilere ulaşın." + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "Ürünlerinizi Google'da tanıtın" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "AutomateWoo'yu deneyin" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "Müşterinizin satın alma verilerine yanıt veren otomatik pazarlama mesajlarıyla satışları artırın ve sadakat oluşturun." + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "Pazarlamanızı otomatikleştirin" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "Daha fazla müşteriye ulaşmak ve satışlarınızı artırmak için yerleşik pazarlama araçlarımızı keşfedin" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "Yüzlerce uzantıyla işletmenizi büyütün" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "Yerleşik pazarlama ve reklam araçlarımızla daha fazla müşteriye ulaşın ve işletmenizi büyütün. Hemen güçlü pazarlama araçlarımızın gücünü ortaya çıkarmak ve işletmenizi büyütmeye başlamak için ücretli bir pakete yükseltin!" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "İşletmenizi büyütmeye hazırlanın" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "Görünüm illüstrasyonu" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "Ürünlerin illüstrasyonu" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "Her şey harika görünüyor, böyle devam edin!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "Woo! Son adıma geldik! Harikasınız" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "Tamamlanacak yalnızca birkaç görev daha kaldı!" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "Woo Express mağazanıza hoş geldiniz" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "%s sitesine hoş geldiniz" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "%1$d/%2$d tamamlandı." + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "Satış yapmaya neredeyse hazırsınız! Test mağazanızı kurmak için bu adımları takip edin." + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "Kurulum listesini gizle" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "Mağaza kurulum süreci ihtiyaçlarımı karşılıyor." + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "Mağaza kurulumunun tamamlanması kolay." + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "Geri bildirim için teşekkürler!" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "Deneyiminiz nasıldı?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "Bunu gizle" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "Kurulum görev listesini göster" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "Görev Listesi Seçenekleri" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "Tebrikler! Kutlamak için bir dakikanızı ayırın. Mağazanızı yayınlamaya hazır olduğunuzda yapmanız gereken tek şey ücretli bir pakete yükseltmektir. Bu işlem ayrıca görev listesinde iki yaklaşan görevin kilidini de açar." + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "Harika! Deneme mağazanız kuruldu!" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "Harika gidiyorsunuz! Yapılacaklar listenizden bir madde daha silindi ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "Otomatik vergiler ayarlanırken bir sorun oluştu. Lütfen tekrar deneyin." + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "Ücretsiz deneme sürümü süresinde satış vergisi ayarlarınızı yapılandırabilirsiniz, ancak satış vergilerinizi toplayamazsınız. {{br/}}Ürün satmaya başlamak için {{link}}hemen yükseltin{{/link}}." + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "Satış vergisi almıyorum" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "Vergileri manuel olarak ayarlayın" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "Bir vergi ortağı seçin" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "WooCommerce Tax, satış vergisi hesaplamalarınızı sizin için otomatikleştirebilir." + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "Vergileri Otomatikleştir" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "Vergileri otomatikleştirin" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "Vergi oranlarınızı yapılandırmak için vergi oranı ayarları ekranına gidin." + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "Vergi oranlarını yapılandırın" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "İşletmenizin faaliyet adresi" + +#: build/index.js:1 +msgid "Set store location" +msgstr "Mağaza konumunu ayarlayın" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "Lütfen bir ülke / bölge seçin" + +#: build/index.js:1 +msgid "Post code" +msgstr "Posta kodu" + +#: build/index.js:1 +msgid "Address" +msgstr "Adres" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "Ülke" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "\"Yapılandır\" seçeneğine tıklayarak vergi oranlarını ve hesaplamaları etkinleştirirsiniz. Daha fazla bilgi için {{link}}bu bölüme{{/link}} bakın." + +#: build/index.js:1 +msgid "Configure" +msgstr "Yapılandır" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "Kuruluma devam et" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "WooCommerce Tax ve Jetpack'i kurarak {{link}}Hizmet Koşullarını{{/link}} kabul etmiş olursunuz." + +#: build/index.js:1 +msgid "100% free" +msgstr "%100 ücretsiz" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "{{link}}Jetpack{{/link}} tarafından desteklenir" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "{{strong}}Tek{{/strong}} ekonomik bağlantı uyumluluğu" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "Gerçek zamanlı satış vergisi hesaplama" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "Yeni mağazalar için en iyisi" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "WooCommerce Tax" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "Daha fazla satış yapın" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "Yeni özelliklerin kilidini açmak ve satış yapmaya başlamak için ücretli bir pakete yükseltin." + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "Şu anda ücretsiz deneme sürümünü kullanıyorsunuz! Tüm özelliklere erişmek için lütfen ücretli bir pakete yükseltin." + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "Hoş geldiniz penceresi gezinme illüstrasyonu 1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "Hoş geldiniz penceresi gezinme illüstrasyonu 2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "Kurulum gerekir" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "Sürekli bir gelir akışı sağlayın, yinelenen ödemeleri yönetin ve ödemelerin belirlediğiniz banka hesabınıza otomatik olarak yatırılmasını sağlayın." + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "Uluslararası pazarlara satış yapın ve yerel ödeme yöntemleriyle 135'ten fazla para biriminde ödeme kabul edin. " + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "Banka ve kredi kartı ödemeleri, Apple Pay, Sofort, SEPA, iDeal ve çok daha fazlası dahil olmak üzere müşterilerinize tercih ettikleri ödeme yöntemini sunun." + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "Kabul edilen ödeme yöntemleri şunlardır:" + +#: build/index.js:1 +msgid "& more." +msgstr "ve daha fazlası." + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "Uzantılara göz atma" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "Ürünlerinizi ekleyin. Ürünlerinizi veya hizmetlerinizi gösterin ve ürün bilgilerinizi, görsellerinizi ve açıklamalarınızı ekleyerek satışa başlamaya hazırlanın." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "Ürünlerinizi içe aktarın. Ürünlerinizi veya hizmetlerinizi gösterin ve ürün bilgilerinizi, görsellerinizi ve açıklamalarınızı içe aktararak satışa başlamaya hazırlanın." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "Ürünleri ekle" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "Ürünleri içe aktarın" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "Ürünlerinizi ekleyin" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "Ürünlerinizi içe aktarın" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "Tema seçin" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "Markanızın genel görünümüne en uygun temayı seçip ardından tamamen size özgü hale getirin. Renkleri değiştirin, logonuzu ekleyin ve sayfalar oluşturun." + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "Temanızı seçin" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "Eklentiler" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "Geri yükle" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "\"Bundan sonra yapılacaklar\"" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "Kurulum görev listesi" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "\"Bundan sonra yapılacaklar\" Görev Listesinin görünürlüğünü geri yükleyin." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "Birincil tanıtım Görev Listesinin görünürlüğünü geri yükleyin." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "WooCommerce Ana Ekranında tanıtım Görev Listelerinin görünürlüğünü geri yüklemek için bu seçenekleri kullanın." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "İlk Katılım" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "Satış için uygun hale getirilmiş özel bir gezinme deneyimi." + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "WooCommerce ile işleri halletmek artık daha hızlı. Yeni gezinmemiz hakkında daha fazla bilgi edinin veya gidip kendiniz keşfedin." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Yeni gezinmemizle daha hızlı hareket edin" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "WordPress.com panonuza her geri döndüğünüzde mağazanızın performansı hakkında ipuçları ve istatistikler alın." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Yeni Ana Sayfanızla tanışın" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Mağazanız için yeni bir web sitesi adresi seçin veya zaten sahip olduğunuz bir adresi aktarın." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Alan adı illüstrasyonu ekleyin" @@ -79,43 +487,53 @@ msgstr "Doğrudan banka havale detayları başarıyla eklendi" msgid "Please enter an account number or IBAN" msgstr "Lütfen bir hesap numarası veya IBAN girin" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Ücretsiz deneme süresi boyunca yalnızca Yöneticiler ve Mağaza Yöneticileri sipariş verebilir. Müşterilerden ödeme almaya hazırsanız {{link}}ücretli bir pakete yükseltin{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Çevrimdışı ödeme yöntemleri" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Daha fazla gör" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Alternatif ödeme sağlayıcılarından birini deneyin." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Diğer ödeme sağlayıcıları" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Müşterilerinize ödeme yöntemleriyle ilgili ek seçenekler sunun." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Ek ödeme seçenekleri" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Çevrimiçi ödeme almaya hazır olmak için" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Bir ödeme sağlayıcısı seç" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "WooCommerce Payments bağlantısı kurulurken bir hata oluştu. Lütfen tekrar deneyin veya mağaza ayarlarında daha sonra bağlanın." @@ -132,245 +550,258 @@ msgstr "Hassas olmayan {{link}}kullanım verilerini{{/link}} paylaşmayı kabul msgid "Help us build a better WooCommerce Payments experience" msgstr "Daha iyi bir WooCommerce Payments deneyimi oluşturmamıza yardımcı olun" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "WooCommerce Payments'ı kullanarak {{tosLink}}Hizmet Şartlarımıza{{/tosLink}} bağlı kalmayı ve {{privacyLink}}Gizlilik Politikamızı{{/privacyLink}} okuduğunuzu kabul etmiş olursunuz. " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Ödeme almaya hazır olun" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Evet, ben de varım!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Daha iyi bir WooCommerce oluşturun" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Tercihleriniz güncellenirken bir sorun oluştu" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "%(title)s hesabınızı yapılandırın" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Yükle %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Aşağıdaki düğmeyi tıklayarak bu ödeme ağ geçidinin ayarlarını yönetebilirsiniz" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Bağlan" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "İlerle" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ödeme ayarlarınız kaydedilirken bir sorun oluştu" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s başarıyla yapılandırıldı" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Önerilen" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Yerel iş ortağı" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Kurulumu Tamamla" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Etkinleştir" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Yine de başlat" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Mağazanızı başlatmadan önce kontrol etmeniz gereken birkaç şey" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Başlatmadan önce" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Yeni web siteniz için bir adres seçin veya zaten sahip olduğunuz bir alan adını aktarın." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Ürün listeleme" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Mağazanıza ürün veya hizmet ekleyerek satış yapmaya başlayın. Ürünlerinizi manuel olarak oluşturun veya mevcut bir mağazadan içe aktarın." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Ürünlerinizi listeleme" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Müşterilerinize kolay ve rahat bir ödeme yöntemi sağlayın! Hızlı ve güvenli internetten veya şahsen ödeme yöntemlerimizden birini (veya daha fazlasını!) ayarlayın." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Ödeme alın" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Bunu her zaman Ayarlar'ın altından geri alabilirsiniz." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Kutlama zamanı, mağazanızı başlatmaya hazırsınız! Woo!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Mağazanızı yayınlamaya hazır mısınız?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Fikrinizi mi değiştirdiniz? Gizlilik ayarlarınızı güncelleyerek mağazanızı tekrar gizli hale getirebilirsiniz." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Mağazanızı görüntüleme" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "WooCommerce mağazanızı başlattığınız için tebrik ederiz. Kutlamak ve haberleri paylaşmak için bir dakikanızı ayırın!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! Başardınız!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Mağazanızı başlatma" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Kopyalandı" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Bu ücretsiz deneme süresi bilgilendirici bandını kapatın." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Bu, neler bulunduğunu keşfetmeye başlayabileceğiniz ücretsiz deneme süresi test mağazanız! Ücretsiz deneme süresi hakkında daha fazla bilgi edinmek için \"Daha fazla bilgi\"ye tıklayın." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Mağaza konumunuz kaydedilirken bir sorun oluştu" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "\"Ödemeleri test et\"e tıklayarak {{tosLink}}Hizmet Koşulları{{/tosLink}}'nı kabul etmiş olursunuz." -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Ödemelerinizi basit, hepsi bir arada bir seçenekle güçlendirin. WooCommerce Ödemeler ile işlemleri test etmeye başlamak için işletmenizle ilgili ayrıntıları doğrulayın." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Ödemeleri test etme" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Müşterilerinize kolay ve rahat bir ödeme yöntemi sağlayın! Hızlı ve güvenli internetten veya şahsen ödeme yöntemlerimizden bazılarını ayarlayın ve test edin." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Ödemeleri test etme zamanı" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ödeme resmi" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "WooCommerce Payments'ın özelliklerini ve avantajlarını test etmeye hazırsınız" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Ödeme almaya hazır olmanıza sadece birkaç adım kaldı" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Ücretsiz deneme süresi boyunca yatırılan para kullanılamaz. Gerçek işlemleri işlemeye başlamak ve ödemeleri almak için ücretli bir pakete yükseltin." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Ücretsiz deneme süresi boyunca yatırılan para kullanılamaz. Gerçek işlemleri işlemeye başlamak ve ödemeleri almak için ücretli bir pakete yükseltin." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Ücretsiz deneme süresi boyunca yalnızca Yöneticiler ve Mağaza Yöneticileri sipariş verebilir. Müşterilerden ödeme almaya hazırsanız ücretli bir pakete yükseltin." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Ücretsiz deneme süresi boyunca yalnızca Yöneticiler ve Mağaza Yöneticileri sipariş verebilir. Müşterilerden ödeme almaya hazırsanız ücretli bir pakete yükseltin." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Blogumuzdan ipuçları, püf noktaları ve e-ticaret ilhamı." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "İlham alma" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Koleksiyonları keşfetme" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Seçilmiş uzantı koleksiyonlarımızla hızlı bir şekilde başlayın." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Seçilmiş Koleksiyonlar" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Ekstra özellikler ve işlevler ekleyin veya diğer platformlar ve araçlarla entegre olun." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Özelleştirme ve genişletme" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Mağazanızla daha fazlasını yapın, uzantılar ekleyin" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Uzantılara göz atma" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Woo uzantılarıyla mağazanızı işletmeniz için mükemmel çalışacak şekilde özelleştirin. İşletme hedeflerinize ulaşmanıza yardımcı olabilecek yüzlerce araç ve özelliğe erişim elde etmek için ücretli bir pakete yükseltin. Neler bulunduğunu mu merak ediyorsunuz? Uzantı pazarımıza göz atın." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "WooCommerce Uzantılarıyla mağazanızı işletmeniz için mükemmel çalışacak şekilde özelleştirin. Hedeflerinize ulaşmanıza yardımcı olabilecek yüzlerce araç ve özelliğe erişim elde etmek için ücretli bir pakete yükseltin. Neler bulunduğunu mu merak ediyorsunuz? Uzantı Pazarımıza göz atın." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Uzantılarla mağazanızı bir sonraki seviyeye taşıyın" @@ -384,8 +815,8 @@ msgstr "Kutlama zamanı! Mağazanızı yayınlamaya hazır mısınız?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Mağazanızı yayınlayın" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "Mağazanızı zaten yayınladınız" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 dakika" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "Alan Adı" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Alan adı ekle" @@ -428,18 +861,19 @@ msgstr "Müşterilerinize sorunsuz bir ödeme deneyimi sunmak üzere dönüşüm msgid "Meet our new, customizable checkout" msgstr "Yeni, özelleştirilebilir ödeme sayfamızla tanışın" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tŞu anda mağazanızı görebilen tek kişi sizsiniz. Mağazanızı herkesin kullanımına açmak için lütfen ücretli bir pakete yükseltin.\n" +"\t\t\tŞu anda mağazanızı görebilen tek kişi sizsiniz. Mağazanızı herkesin kullanımına açmak için lütfen .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Şimdi yükselt" @@ -451,15 +885,15 @@ msgstr "Ücretsiz deneme süresi boyunca sadece test siparişleri verebilirsiniz msgid "Start selling to everyone" msgstr "Herkese satış yapmaya başlama" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "Hesabım" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "İletişim" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "Başlangıç" @@ -471,7 +905,8 @@ msgstr "Bu site zaten başlatıldı" msgid "You don't have permissions to launch this site" msgstr "Bu siteyi başlatma izniniz yok" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Ücretsiz deneme süresi boyunca yalnızca Yöneticiler ve Mağaza Yöneticileri sipariş verebilir. Müşterilerden ödeme almaya hazırsanız ücretli bir pakete yükseltin." @@ -492,61 +927,61 @@ msgstr "Siparişiniz verilemedi. Ödeme işlevi şu anda yalnızca önizleme ama msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Bu mağaza sipariş almaya hazır değil. Ödeme işlevi şu anda yalnızca önizleme amacıyla etkinleştirilmiştir." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack İstatistikleri" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Jetpack Durumu" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-Spam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Keşfet" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Yönetin" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Genişleme paketleri" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Müşteriler" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Eski Raporlar" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "WooCommerce durumu" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "WooCommerce Ayarları" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Siparişler" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Evim" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Geri Bildirim" @@ -554,18 +989,26 @@ msgstr "Geri Bildirim" msgid "Save big with WooCommerce Payments" msgstr "WooCommerce Payments ile büyük kazanın" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Hayır, teşekkürler" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Başla" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Dolaşım" + #. Author of the plugin msgid "Automattic" msgstr "Otomatik" @@ -607,7 +1050,7 @@ msgstr "Sipariş ayrıntıları müşteriye postayla gönderildi." msgid "Invalid order ID." msgstr "Geçersiz sipariş kimliği." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "WooCommerce, E-Ticaret paketinde devre dışı bırakılamaz." msgid "Store" msgstr "Mağaza" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "İstatistikler" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Şehir" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Devam" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Daha fazla bilgi edinin." @@ -765,6 +1212,11 @@ msgstr "WooCommerce uzantıları" msgid "Extensions %s" msgstr "Uzantılar: %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Destekleyen: %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Storefront & WordPress.com ile Oluştur" diff --git a/languages/wc-calypso-bridge-zh_CN.mo b/languages/wc-calypso-bridge-zh_CN.mo index 93ab393ca0c12c34d05289f6e87f4e3f9b2494bf..a102af21808efcd6169595634aca166256cead36 100644 GIT binary patch literal 33059 zcmd6v34B~veeW+2mLw385W)`EAsfL~oPJn|(tzYu zvMo#TzQ(cREsibOiC4*%OUv38XhZ4pfB=c^XjI@q>4TOQ+V}mP|G6`FWQB&u`@Glr z_~Sg-wf94R z|DQqrxlTVKpmWu40bdV32u=ojK@IuyU>EpJkbl7^-eT=N0II)s@Ir7KsBwN7WNN`* zgX(|ORs&r*NA#p3}`?fx04@jL^*3;Z#- zAAG~xf}j!n3V0tl>FtaeoDUuae*nH4-0%(x_$9C&Ooc&k7x)EG^f`ygod>=fTmaq( z>iHKz(d*m`Y@F`^PviOuQ0=}KoCMZ`bzm>3`JDtcpRa-;_+798{15PpVEsFdu9reg zt=D8w>wgWX`Q8M+0-Oq-4c-rGoK2wGod+_NU=67L4ucy1pXmA}LGUf`IM?61C~W>=Q)=dUEd5I=K2zU{Vb^Y{}5EYe*;%n#4G?1wVKLXDH&qv5amkHp_;8oyN;A~Ly z+XISDUk1+tzvZuoLB01gQ0<>~g|+u4Q1vbZB}Z3*YOfhozmI`x@6SPv^Y8uj55a9* z{}TKhxarCufF*;s@-iY6+yH7lKLK71HiEEfumMy%L;m`&LCx#upy(64$Hw<6Q1{;k zik_E(T8Aq^>4^dV{2A~`uD=WZ8Q4W$ihy??Qk5eh?N3ZUD~#^Pu=@0f%{%%n8ItYr+-vG6~!=Uv0 zzkurRoGC_^2_UQ-G=S%W8^L#hPl2#v@EuU=a{h;mKQ09k?cjQF71#>?9{6(ppt^z& zgYN;`LDBCJDE_+`V>bhw0^SGi2SwLc+|4`Sb)fq10TI<;C-@rZ{T*;4*Z+8r&12EM zM$h%2=5+#m1^8FstH8elUk!fWU;h|Hg#^CKcz|+AmfNJOK;A_Ee z`TG&5etrV7w82XmtlGa5)cf~=lfa_CzYWZB-4E)$cYMU!y%H2%-w$2}Hh}79IjHs? z_4uU6qoCyRi{KgHx4|>Pl7Id)P<-&8pvFI8nzi?C@LaAx;PD<%?We%EfLT!eF9Dwb z4}opqr>2{o{uZe9c_)ANgL6Ug;bk8+x&8>qzu;N^d;+}sejDdXQ1o~L{2cfdkR=Q5 zgy`yjEvRvA2Sw*2pxPbsSn_z*$L;xhLA`e!_%`rEp!#hBPk<*uwe#@r8!qs;6x4ew zK+$Cj_!{sD@b%ykk6-inJg9bl32Hs01bzmb4Xy`Y_J_8_5U643*e}~?)xLFKM1<V}}0^bMj@%S95_TD_h?ABEtZwA%=he6TvlO8_OP%?H$dwPPc-hV;iV; zH-MV|R#4+U0=^pjTks9w^Wgd5zk{lOZi_vC6R3G#4C?*k;Jd(QK-K#dsCHhKHUH#n zkblA5{89hM!9(B={Po(LZwJ)-&v^U?a1z(w2ld`rt!5Xm0w-`i6;%IuQ15kus^0?+ zfhRzXpoELeG}wg@O}Oi zz-j!ETzwhT^XEPO6x8^B4NeA6D_Vb7gQ|BYsDAGQUkheI&EvD6>hA^B?sq})(J#R{ z;Dk0C=Xy~0zW`nV{>WdyeRdF_ih|q08^FiGwczvM{oq41axVBy@MB;J{2+M41Nb5@ zfo`D2^_K|$*% z6kYxXd^7lMkG}v#hjaee{L2a8*y1;rewTQx5I~Zv+1n6hFKQVVnqF27VH}AAAdV z7`z312GqRIZ?|>IfK#|$1!^A8f?DUFgOJ;Oe&A8#)@Q##Le_l=Z` zD6gQQ`@j!Vo~P*Z8Or-8e?s{wr9^ohos_Nd4e$cW0)MS} zoJC(B1&>hP>F?j_aj!=~r~iJX$6tc~O!;fdV-$VkEpHt?I2__K^J7gLr{Qk0ibx+(Wi zevdMnatGyE%F8KdP+mqm_28dUK0*08_0KG**Pyq0pDGEC7YbbqUV@_c;@b@geY)KNY_X{UUb^6!*Al&dJ) zDEbsBD=F(KTPUyQ{Wnrh=X?A)Fa82vO)2>6x!?rKnUp`L{D^XZa)uwnD!%LU50o{O z*K_}TFim+sWjp0;$}^PzMR_%48l{8sUWz`yPkGpV!$$+Jr#wJ;$lu!m-cNZcs*t`oTVH7Xzz0)dQ$9W8 zx=Su9ToPs)ue+o^mCdH}pQ>*w7IWE4u5W9dnNKyk22x>bD$~f@sq6AK*e0vFjCnVD_*bYoa( zYiLLp3NzZ8o96}>Gijy~ToJZpvTen5aK+@w7lkwOxc683TZQ1Ju%V6VwuIT#?99wm zF_X)N=?7ZV`Aj<7AUdUrVWtq~T8o*M%!70>BL{ub&CLw5j<;u|Q$@OF4sA0tS&h0i zpPQXwer*qg>18lLZ%JjcH5Xx~xfufG9cA1TRwSQ_=UoU>S!lwzM7dORrZ{(E z2!%4)VwzcaP-Hc@a2yEF%nBRRMYt_- z*T&~2;`$xSoo(67XWCftN;9W69N(!6r#0o~uoN?_!}z`i&mzsvz(=l+ndxGfPp2B^ zYHbU}RK6H5fB0Pc$}km=*f+q;XXGY^nU>VdbYY@vp)p-($Y)@nT-N5BF3f}5w@5?&roo0FMQ z3~ttvIUc(?Rme0rLgZ;(62(6$p_oQas&pfto}Ee0k$}M$b-~TX=TcI}>)a_6o#bSx z=G0OlxH+Gj18r`5pqS1U9O3*OICIP$lS*D`%QQEJDFmrlgc0x0zkXyrgU>_*oK6*KoH*YI>h)b)-;Y_iGhYwO}+~W^;8#r z98yVj^OjSPXsc8fR?V~^1`N2NInyvp1HRyvSW8}@fn37S(^(X`n@s9~P_k+RXh=0T zv>~aEUBkPjc*N6{xgp8v%B;q8GF{8%6;a^=H)W%l2&M&p=%He+aF?Ue^t3dAbfJkG zZC0LX=$S0i=JafGy~L_csy>u1wx-aHVivb7)h>+S~O)rBHlxt@+ICRKr}O$yB=tr{-9X@OD8DluSo=!Iw zZU}GBV*|b7gY>4o#R4L0`hgtM?k#2JLE{bdJg*nisTM7wvzb^qF{9&e%~iTnJ%2h^ zk8Q!z$ZH4;4YN2CljR10ac;b!!pLJ)x+4H{b(7K}w6!8uT08gh2UFL3n#qBPl_6^O zmZn?|C6Qu&bHX|4dIXd!Q?O2m*5%bB`T>7bF0~!-eqFaP#nY zF#EwRx#s4ya|6T=#+$_)B3y8?<9HQ`F1BfKHFYayp;DW5LA1xO?QKT2X&fi#_*AQV ze~@ncw@}ODR9xboo4`ev7Bj`>^t;e~<|e6vJeODn%65%$ypmeOaS*Pu{Nz;ZWg{{T z>E<+xET&^=%vMMgpnYM&*ghuwhWG2jn`j^>+s%Nbw=3R=4a*qHjRQWwyim=w48y>M z#<-5}ax>~C9?rqT>6fq4wtP^*6c%Jmi$S3k}Av!n==K8aSq46p(re- zJmP7?A>7ax$zxk9m#vv}BY+o*e!4vTNO~r!CAh`ZSYu{p1~v(2;zgi8@{NVymNt=2 zetyhT?p|IYjQCp|reRi}GaBc|<6rx4cH1~VZZ zs_4afSqQwbiRK$5*SzX^)P?tr8_h^*N(+mrXhWAx7!g7gXYrit>&4!M57bbgQKLLl zxcWp`Hr$yxRtQDVme1ty98%aMoEF|e#d8@)WjBQ06_RSM4l}&lIdAyi4Y&ojrdxBU zLtbKLIXZlo)_&)f-Kd0 zRX!?IZ;FQXIF7|hEM&#~Wi5$Yw4%(vp~=OV-ZCn-6A9`uJwyqqW_)V8ZOMoOBx;I1 zJz?cidG8o1T8PZjAg*5V&q>YY(#2!9;uRoEYR}qt-fVMjZmPM6uh*2%wash_Q{H=T zOpLXKrII-?_9D1w%`ra4?qt9s-*n#bP-|Php@|^gd9943$_a^48#_1+BVKK&=vR{| zH$tgeAC$1*ME&wmVo7Csb@)*A`O6=ExWZFDoQ}f--m3V~Ub^6pgv*&2TarsF!*YoY z$LzQ#tc0^g1(dAT%(&BTu^@OoF&XH0d`0Pq&I~U>QQ{9)^e+ad8V%M3x25t3JoIfz zWu>F&t1a*336qtUI@Ck?M1HAosTyNh#O3mH^m!ygl!&&Kct2n5wbwc38-}_ij+u0q9m=e0-qC#-HB{3Q;Y;`(ND!|+2I-aK+ z>+xoT+cVirp~+!+eJ-C zwF_A)3vSF?AY8|i6+(sWNo_3qrg%5JhujMys5FFQV$sJnhE7mauapa6u^V=_(262y zbQj7Jd1=)%rKH^b$~sGl6JNy|t@hzeqEQp4*kZWnjyHS<#Z0Twg^)%LFg74-uedRp z_+f#h5M<|FUd_dDj-@}{*3ycGz%o~vq$X{|Yzs~GIV`8m&IzMmJZHBprp0EqVC$Wx zmdBo*nUWI@VM!05y6P2IYni5JW=+q{nix)19Dve*vBbG|la5K`a9m=ikZX{cNcoHf zZ@VEl2i<3}oa65*Cs*y$nB#CJiotlL4$E-;T_h>cv@C~n=FP}ij4~&gpL?!-l@@en zE=)Bkkka6YKX8m)O3h8*`R#W|Z@SBhjLSyE`Im;KoJ;ed-qE&Br?bXPV7%8z3#JML zSM-J2L!LNemhMSGNAY0Cmh}zpWIgypI7pJraYZ%JdqXhAvIrmydkF>$ zorMxNtIMc@DL3DAPcY@y*!8R^$0;qXIm|#TZ-KwA5yEkA{@+SLqJuR6KO;PI$*>;| z?Dd<|kyEk?8!`K_gkVz4uW%xp@X4oGJ|@IoO!2u#3-YGiS{FZH3@2mrF+^=gQIY zSB`{cEA5UbnY>w1P{Cd4nPhDkoM=yT><%bTTxe@neweg}d<`Wx(fqi}GqY&gR9I+D zH)LjD_bc4iXdJ;-4NcNLIX0b1X1IpR&tk+&1c?}X{rnER-j$6eu{5dLT71+j^qR>40lU7 z5l=x%H*C!{HlTjpXyiq3;jMyVKg*#i6hafDjEebOvuQVl4dK;SPnziB)4ztdPNyScw@!2aKW-eaRlWGu1sT!}MaAMu9vHs_f7E0XIn1&by^ z5@t*Y?sa+0IN<>6wUKfo!jUsbyRj9eElYUHGN+2DV*+7RQ=uW9b$pM8)xMxz`P#@4 zGK0wYom{lE%Q6=N_}@om#587g(TYyw>-5m&KWlbsr@9?^oO}gh@UjmhEBYoMI)BDj zBLY`eC4~Zvb98yj(M@&R1&lztv?14+=G&ZD*8M=0Lu8W|y^AZ-jM|4JOxF}piripjm&j#Tyg4%!htZH(Pq|GTm$z{0HWB(+_s(v| zY)H%2yN}aaP_ZdL&aoBg=G0iWI`?rhVN$+{$d6^zj{a{*iTVVytWT>}igOx?WR-i} zLQUfa4M*JICR$;dVy=;BOOvoY`DXLvTqS4tZ_u;mNzN&(xbGYm6 z^XTH0*_lG7KBL17vH2V4R0=tJGU4*6wDPWz7kHUHEYgQMYZF_c+IQU^IGm-qUOHLQ zaP_;?rtTwZX_A1=iEHh#*9FtqM|6L}`pisQrtxINst}ga>V?342*W}VNXs;B9 zR$jEYh4)L$$Lqy*dd0LB-%5>I(xfHzX;hud>em=^@lHj3Fec}0aX?2hMw-7Nqdlx? zX&qe3GfxiOXa+7JVU8rmAEI(3!ApGz>*UAZY{b$fx;5s6Y-XB}k=n`wr9UT4xOR;0iyUX_IR`m;dO(I_#e@|^b}0n4vV z1aj7MnlhLg*GWY&=E&k&8Ak_|T&2}^bN^cPVP znN=H#^L*(4Ak?uJO_)p);98eBg9<2J+ykB3(|nSZSSPnn)Tjx^Q`FD4aa(N3 zb+DFEI*GxN&*bA8UUA_n`nDxbWEB{%KYvoMG^x2bI4iDyn>F3ZHXyg=26=nycvd^b zIykBs)||~0CC$KUuiG5}gZq{4fkB)yU>lI#VT>LbYEt3T$>ne?B@Zb;8Etc&ut6-h zHc_0tG^HeItLHoluW|Aq-HaPd>=71Pa-9FHBq;2tkUw4&g%GSyIj2`QkB$7?9NJ! zR1#B8g)w9A96B{FzEP&-7HtNKLKV{AjEK)-Ef7y~L^G4y73QGVo<@L6Pi@1W=7FG! zNKRR8+eV1xCz$SzF|m(SO_6bre23o~MzY4erMZwj$B&&7n?Ab^0yb2|R4Z5T|2AUp3+sCyu`-^9bP;FS6d1m3k27 zqC)b@_0OOYBgTXW;|EF7KfFK9?kAkrqF)4%{o`d(q&bC#WDmJ@LU@Nf6P+LoXkvmp zC)mib=S-2AB#!YWz9U7=b6YvjbaOt#(aU7Da9V7mll9G)tF6~oUp=&4^JF?(LCKf7 zc6KK=(|#Q)MtZoClQl9C;Ufl zlT>%q(OE`q$r^jflsFS2;nb;siWKYj2H_;>rqCU-uJ$w)YmP|Z8zUE$`oYI_p51;) zKw3DHoe+E+p|>M9Zi)S`2Xt4FV5-?|sv?0LW@j>(9*#gEZtV2N%iw-=Yq&7(X(6P z<6q7%)Sc!u$IZ0Q;5V??lo}4y97*M(MctthHLVU%Np2 zW>knsV!MjYwqeU(a}!uX}Cb+;4FWHT#=j-2ZwGa_Gs=De`!*D@TA6zL&CtjOXY^}N8D7)PK> zklff&iG37LMHdM%5y&o#jCnOS?D{m}GdGD(Z5Q1=w2j^jc6qZlFm=MElcW{QC=Hf!*w9m%Z z>n4BTjE_ya1H#~5=JMBucQogUQ)N3Yzq0NMvXWRwPwviXTHhi$@Q@7l6 z#?*Z7)2M_=QyQzoPEvHz7|U>m`+?lZ#=fYl`zObjMLl~;o4QK#c1Jz^!-G3UHZ6@h z_j5V2VL`NdQ8cjj`Sy8XdFhVQ{HM!(PuQ)|&D)~hM@n7oyg58D5FKwXts0`Oa{rNd zm#4CGVu$=HryQg1#Ulf|%8Q>K9$Z&Gcr4nnc658M6e8W|hj7oeZ;FN%MoS(Y9#}fM z_1JUmn}g`cQ&HctQfIIGK^!+V>V*gFH*s9@rs_~3TC!zyVfV<1KH1`teO-ETMHqE1 z8eOp^pp9tZ?r32*-SSho`0nC?;eq9&tJ za_64m6DvpeEK`%iN85*w?xC~t{1c^~6~lvv8PV|3fvVYXW@h;45?TqTNhyRQt9F+< zkCb|Phle&s+a8UM5Ae)xRvV6b9*K_5HyX1#)QARFl^$;|ZP{Vu2ujO$L_KSH0QpLL zhe~UXMaO%hWeZD7_x|Mgh9ElHOD|Dxx4uO^M}pFk!Dz{2r8WDlD}Nnr*;4&RZ6*0}v}tH`ULOn=uq5SO z^ZY`IGnecxtvWoidwEcE5%oPfvV4EJcLy`H2k`O>{dUb3g!LcUwLd_b%l)v`5wYLO z4)NZWfzqbEF-@R=ac5U|P}w*RBV47fm80#C1yS#^(t;jjd3fN-(an#R zR`-+^Y>79)hEJRn+s|JZEjmV?7ez<==(N=N$nfCa z(yC+8ngz!8Fpp`3 zdNU1$VvBm0>z!`os6XoMXQ(Xa$a1k=xo_)8UqbW3EahE~i(1<^*n&t}`j1$n@qA1B zwny6+ROVRIYw6I^a{p>$U-cc&Un6idO#H;lq^7iaD;kE@s=rT*`nt-GFRUSi0s*Z~ ze9&mThV2JvV_LPF8lx>!O{*31R+{tctu*L|1!Cb4bpSH3#gB79zL z3tu6~1SmFbS!2^hBHR8&5KJR>&H(pOaL^{|U*y&<)^^@8a7^#@8b${ra^jJZC)b;% z)EaiKDYq{ypV&LHYtR;AWU!}%cd@B!Ol7rhGUQF2naGTC#%DdFv@X^81ZR;4-$b!QNW7K~PC0{mj_N8j{HBy4m|_nAhNJ#(zl(EHrvKK?66` zcy4Y%Z1lmXmL6VP)@7_XvgB~7y~7j;bF`bK_CXY&nxkGcurk`WZcIIIGL!W%2j#wj zG4;$wRNFIc78scR@)yQ7VfCkG<%2tMPJ)pgo684fBh8-F$h~oqXkK1&0Ock5$`!_FM_YjC)dj}INXU75%uo+$#Fc5j(yRZO?<0))!uUqxm3;St+hMVdF&9B zmh;`4Z0lZ&LxolSR4(uAK%T@aLnlk?`p5NN-EbMuu`LJ-YI<~4$M7I-*Vd?WEkU^+O}Oy3L=|QacA*WHLLxdH(47Uh3l>$kI7a2bUcwbgiTFb}UAZ zL@W0U4{XGyVo+nx6=i2GiZkybNWxb^e4N1;~P^xBWR@MJG?`E zVlR?a<5nYCc!7cU8WK|_e%Lm0aGPfb|J>0eTC@=76UvzHXp5j_9o!N19*vH#Hs`~5 zMLyBV`DjY>qa72SJTbC*ht|afSVp>$u1@n-O1t+&#}=v{`e$Sz@!y{4$N{Z`3t&v= z1`10?+c%U?E{;}q6Zu$Y<%9c%kL@@AP2+REFJ7$;)O0{{Gz>1zsAmnbID$jky9gD5G|+dnaECSLR|EIi zL}%YR9??N**5g+v zjhLPxN>PmA!9oqi`g-bO7F;Hbw1sc3yPodRot=vPiB7#HH5Q8(CmAG^k8CL)-BVeg zF=2(Vpyo~P!-U4goHZ7VDJNT`HWDP`u?nNLu@X{{2pD~G-SEl2XnXf4;f`ZZtW)>! z@eMW#JSAuv&D)KU7(TI@gaert8-h)2Elwg~1F{~_8cS~6H@aZ6jT=17{)YG z;_lLw(9+0jS~|cD#k7ttUS{kNl=^#0d$*R4JdMW|ZG4oOCjQ?ZoYp-GqBgF>Ofylf zrV}Es&{4$;pSE=)j{rkM8%9dd1w)m0bzmwr6I+gwi<3vT51~UXS{9*W=hHYcdZZJz zhQydM5A7FQcx08IY`IXx{bI|~6Y9~~mEog{ar>f$2g`>a=O#L3r0WShQDw5aoS$W@ zRAQ{{mtEn?&j zvV$978d-#>WDZPmS+2;(e2Hw2d6O^r!bo2`0f{)STWX<%8^g;^%{ujANd`=m1%x=I z7|WASYI1!nn6v4dc8?64WWb_M|1ti07u>b-yY-CVW8;5vobYW8!L0j^uy_5|L-1_l zR#%y@gq34`N~iF)hRsq(L+$3Jnlcz!y^QIx7)Yu4uqF@QldVY#xQqkqK{}v(P;{zc zmP*KK>l+YD;c{6o<_HF2=Y8AlK`^>=4gOc)#n0syqn-1RbV9QL4zj3R-_QzDxjkzt zW=SsK==z1GTNQ;YUW5yve4i=8aLTQ2y8Xw|#wI%fj5z)UHUE#3XVxe}Y4MwN6=#gb z%c9w;Rs2*_Tw@G1+S;WV(CdlZn8Iv7ui>LZrOo|5BP1yW%L{`jQiTcBU(83j>UQQ4q;#IJC%Nx9itOP8hdvRAAO42u3qO_ zLa3O}YA%Q~2vd^bc|_Lbz`Ued!y3@&D1o)tQh4iZHsI&D93d7ldSo3*1jU1-bX^9# z)ZJS?^q8_3%AA-nc9{?YpVG2N$S|WO8J=nXG5Uds%skGjDut@%l3;#D2G>^&U8vyG zc@IubT+YY%Lz#fCbvQ<)75f|quc=8vpV)*)qIb%N7vj;zKdI7CT-L{O-O>INvS-UN z1G^k4UFy?nScGHd-?k>42615*YJFtK?$VOI(e{I;W8eb)(8?S&LPyUc>PnxJUifgaD)=T?|NV41v-YgDcT1mfDD`uGz1|1DeabIga*fKelzq zG_H-AXfv5oV$|^Qzg_r7OkY_F+RfjYOC+_M$cw?rOzz*tzwxaj`w*mSXM{QK?W-2cZTj-!Ba$yf;l9B20IiSRKNKZXb)ljJl=<|>YI%E7T} zhfC6s19G8QG9oW^EoH+7Q-GF3z1W(nRg>M)@)hivpjJzLhZqUp<$SFt26jSf?bYl+ znR5uA#bRjs!0~^%e}}!H4m`u!1|Q5*9$JYTV7r5KV!wytzNy06)RL*8fE_4h!jG>R zd91^G>*i!4cXH=Q?;h{redV`o6NUKCIZNzvqH|Qu`L7oJh~L>rE%$er>9f!SYOzsc zj+g}><2d9MAIlqJmu}H4M^>>N%uk_0?=-LKCxmo&;{_i3gQzhzE#YP+jA?5()O)0E zzc8sL$EMbjj;BkrX+Y-ZSbOIENiDctKzv_ik}QMcvK^H;%5r(sG-V>U*yUal+lvsh zba1eIWPT-tQFo{pA3E(>f&a-i@DO>r%gPQqSc3%kil@wh?TX)(sJWo_fl_ zMB0{06iwE~R+*|FTgluj3 zz*j!FD>|wTX449e+FNw+#GJxF3pmtnA&%u{VH6+kZQ2X@yiRl8qIK?lEdBb4h;p0` zd>rN?0&N?e=p%h1*HKyLvczaI1?Xx{2F*mtOtigpkZw@&aTkD3k{u+ znRK9HydPb=Z$K10Zb-&(b!df?B#GQ#HDBS#N{(2$KiojKpP;!aQI^;xNFKG2C+`kt zsA)Gc?~=QdIO0KXGo8n6ic~}+i!#V2xdKk}vXXJF>(i!LdqT-(jaRHV&5~$dJ}vBV zaWe-Qyic1@>0^$hDE!wMkM@WdX2)^NYjvZ?Oduy8sypp*c<=T=@CQ+VCjP$nYK-Ui z)z-2Tx<%QM$BvgCT^sE`UV3WK0({#FtI;i`xV8_Dy4vMtZrZP4b=g483q~vBT(&4U z@>B_G{M`MsLmgyQZL``Ob=$IboV)fh87__~#G-2fn-+@)N{$mKJM%&ku{@;B>(N!~ z%l-YXhI4Tlpn1I-o%5fdAW08%99UqvC~gzX8dATe5RH*c^!-?w=HdZ(VRUUD`?zDP z+LTS$MUg~RFWZ*9hNTgIji+NVDb-42p}eB%UcTES_uSmk!w&nngYX-9v@?Ek$OZyc zM3PDe#@HjfyR{3=5;}RZ_Fb&1y+KXSlwf7sN2k5qR)ANC6_UFBGVPHLY)pEg3~s%a z$V9SspT@Y>de(3%DxUp`L`K-MmBt3~<{CS$J3Ep&&@qvYt!m}`i}_OK?{N}E^Gc4( z0z=-BeVf0Vv_`q_Br1gnPpRm>lPr**fg_VBO7MPsgPmMN|5?1McFDGxXedA8^DyjC znY!A~UdEn^cVUFA_|2j1kosdeE)2Hm4i7GLk?Hc$Z3{T_WO2Fc%WcPaho^f3BZmD^ zrg$6J!qSrV=!nkJnJ1tjEZI8Jafqa}UPhHd79sW?kqyNdZ7j5mF%(gWEFh0 zu53)l=!#Bqw#wHpTT?m8m<;5#9JS}{ptR1Y9iJDSc!JT0FWG)4)KN}p#TKPg%|5$~ zelpVkN(6?oikdoj62r7E|(2No89q6mv@$U?d-68VQ7ai z7@chcX&cXFBgBes#s16Is|#<-YHKRrnAqJ#Ac5%8v#y%nK@YFyU(HX2qWzn>Roc?4 zL!R3gYq>4`9-lzbiYb@tXCBncui0vr?z$kbwDM_et^)yS3|qa7<{7UTVI6ml%0TbL)qID&6N!YG>GLmMGK z8PZHD9s~F6&;tgi+`kATpvTFb%V6A*i=oWh$M(BDd#zo<+fXw$V$(@JRwUiT$;qUT zX|j*Xdr{uEF{SZFphG?Tx7m_JZqrY}Luv1}^2y~MO1rn}u&m24S&YZ;e5}SekFNBO zd>E=^v}-I{*fo6gU}f#Azwhw_v0QWL6#+?uBYjG}^)AP0DD5K~Pfm-x^A1iAX@4e& z>%-+7-0IwK6?8lHPxHINNcd~M5W~1ho_i>U9O#7{V>7z|ax9x5&-Iq^x=``%&-;E5IpocVL>62;6nI5=T0j zo_71(4w_PIcru<*_ieYkjuZ*g86D_}j;)T4>>M82W!fxSFZT(ZSozfsYSCVXN{q?x zkhqvY)sjE{p{kig+)%fnEDK*+!>O0OH9cD!I+wV3kU_G;MW39!7+ukaGPigT+h}Ty zGivP9Qo%-{Ntd45Dn;TfX2pi833mj?Ikg-EczlJ{2jzw-D;-^^T}Sc`J)O~hwyfI8 z28H^CjwHqX)}XZSaR_MQbc%<-I@?bS(0?2_;GF)BwXyPg!4nPfoL^w)$IZkY!AvAt z-NC2d#;l7g`V?Vp=O~1JA>pHy-W?>ayfkAl?OcoY`eBNFJ4W|xFRko0iY8qv4Vio~ zO=4cDCnlta{RgaVQ~$OuwC#xJcD$2aTYE`SsvbvXk-Q4VX7EFXB`0Y{o&J|Ur(yZX acgDY^(W%Tsqy?VF8E5;ZylVkQKKS44OV0lQ delta 5098 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 T#%zneX6vm#bj0YC&4vF3B8$Vb diff --git a/languages/wc-calypso-bridge-zh_CN.po b/languages/wc-calypso-bridge-zh_CN.po index 781fdd26..d345fe94 100644 --- a/languages/wc-calypso-bridge-zh_CN.po +++ b/languages/wc-calypso-bridge-zh_CN.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-12 11:54:25+0000\n" +"PO-Revision-Date: 2023-09-14 08:54:42+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: zh_CN\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "无法找到符合需求的合适插件? 从服务集成到独特的自定义项,我们的专家团队能帮助您做好各项工作。" + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "按照自己的方式进行" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "了解扩展程序" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "寻求更多付款和配送方式? 想要构建会员站点或接受捐赠? 从我们团队精挑细选的数百款扩展程序中进行选择。" + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "扩展您的商店" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "将一切交给 WordPress 来完成。 创建商店、托管播客或展示您的作品。 超过 55,000 款插件让您尽在掌控。" + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "转变 WordPress" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "浏览插件" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "将您的 WordPress 站点变成您想要的任何形式。 升级至付费套餐即可获得数千款免费和付费插件的使用权限。 想知道有哪些可能功能?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "借助插件实现任何目的" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "通过{{link}}使用情况跟踪{{/link}}分享非敏感数据,向我们展示 WooCommerce 的使用情况,以便改进功能并提高修复速度。 不会跟踪或存储任何个人数据。" + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "创建数字礼品卡" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "开始销售和接受数字礼品卡以提升客户忠诚度,增加收入,并为您的商店引入新客户。" + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "通过礼品卡提升客户忠诚度" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "通过投放社交广告,将您的产品呈现在浏览 TikTok、Pinterest 和 Meta 平台的数百万感兴趣的购物者面前。" + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "在社交媒体上吸引更多客户" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "通过产品列表和广告(可直接通过仪表盘创建和管理)吸引 Google 上的活跃购物者。" + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "在 Google 上为您的产品投放广告" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "试试 AutomateWoo" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "通过响应客户购买数据的自动化营销消息促进销售并培养客户忠诚度。" + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "实现营销自动化" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "了解我们内置的营销工具,以吸引更多客户并促进销售。" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "通过数百款扩展程序来拓展您的业务。" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "通过我们内置的营销和广告工具吸引更多客户并拓展您的业务。 升级至付费套餐,解锁我们强大的营销工具,并立即开始拓展您的业务!" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "准备好拓展您的业务" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "外观插图" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "产品插图" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "一切都很顺利,继续保持!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "Woo! 我们只差最后一步了! 好样的" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "只剩几项任务需要完成了!" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "欢迎光临您的 Woo Express 商店" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "欢迎使用 %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "已完成%1$d 项,共 %2$d 项。" + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "您差不多可以开始营业了! 请按照以下步骤操设置测试商店。" + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "隐藏设置列表" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "商店设置流程符合我的需求。" + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "商店设置易于完成。" + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "感谢您的反馈!" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "您的体验如何?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "将此隐藏" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "显示设置任务列表" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "任务列表选项" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "恭喜! 花点时间庆祝一下。 一旦您准备好推出您的商店,您唯一要做的便是升级至付费套餐。 这也将解锁任务列表中的两项即将执行的任务。" + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "哇哦! 试用版商店已设置完成!" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "您真棒! 任务清单上又少一项 ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "设置自动收税时遇到问题。 请重试。" + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "在免费试用期内,您可以配置销售税设置,但不能收税。 {{br/}}若想开始销售产品,{{link}}请立即升级{{/link}}。" + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "我不收取销售税" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "手动设置税费" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "选择一位税务合作伙伴" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "WooCommerce Tax 会自动为您计算销售税。" + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "自动收税" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "自动收税" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "前往税率设置界面,以配置您的税率" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "配置税率" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "您的业务经营地址" + +#: build/index.js:1 +msgid "Set store location" +msgstr "设置商店位置" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "请选择国家/地区" + +#: build/index.js:1 +msgid "Post code" +msgstr "邮政编码" + +#: build/index.js:1 +msgid "Address" +msgstr "地址" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "国家/地区" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "点击“配置”后您即可启用税率和计算。 若想了解更多信息,请点击{{link}}此处{{/link}}。" + +#: build/index.js:1 +msgid "Configure" +msgstr "配置" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "继续设置" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "安装 WooCommerce Tax 和 Jetpack 即表示您同意{{link}}服务条款{{/link}}。" + +#: build/index.js:1 +msgid "100% free" +msgstr "完全免费" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "由 {{link}}Jetpack{{/link}} 提供支持" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "{{strong}}单{{/strong}}经济关联合规性" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "实时计算销售税" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "最适合新店" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "WooCommerce Tax" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "提升销售额" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "升级至付费套餐,解锁新功能并开始销售。" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "您目前正在使用免费试用版! 若想获取全套功能,请升级至付费套餐。" + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "欢迎模式导航插图 1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "欢迎模式导航插图 2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "需要设置" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "赚取和管理定期收入,并自动将存款存入您指定的银行账户。" + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "销往国际市场并通过本地付款方式接受超过 135 种货币的付款。" + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "为您的客户提供他们的首选支付方式,包括借记卡和信用卡支付、Apple Pay、Sofort、SEPA、iDeal 等。" + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "接受的付款方式包括:" + +#: build/index.js:1 +msgid "& more." +msgstr "等。" + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "浏览扩展程序" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "添加产品。 展示您的产品或服务并准备好开始销售 — 添加产品信息、图片和描述。" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "导入产品。 展示您的产品或服务并准备好开始销售 — 导入现有的产品信息、图片和描述。" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "添加产品" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "导入产品" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "添加产品" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "导入产品" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "选择主题" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "选择最适合您品牌外观和感觉的主题,然后对其进行自定义。 更改颜色、添加徽标和创建页面。" + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "选择您的主题" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "插件" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "还原" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "“待办事项”" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "设置任务列表" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "恢复显示“待办事项”任务列表。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "恢复显示主登录任务列表。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "使用这些选项可在 WooCommerce 主页中恢复显示主登录任务列表。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "登录" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "出于销售目的优化的自定义导航体验。" + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "使用 WooCommerce 完成工作的速度越来越快。 详细了解我们的新导航,或亲身体验,自行探索。" -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "使用我们的新导航提高浏览速度" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "每次跳转回 WordPress.com 仪表盘时,都可以获得有关商店性能的提示和见解。" -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "了解新主页" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "为您的商店选择一个新的网站地址,或者转移您已经拥有的网站地址。" -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "添加域名插图" @@ -79,43 +487,53 @@ msgstr "已成功添加直接银行转账详细信息" msgid "Please enter an account number or IBAN" msgstr "请输入帐号或 IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "只有管理员和商店经理可以在免费试用版中下单。 如果您已准备好接收客户付款,请{{link}}升级至付费套餐{{/link}}。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "线下付款方式" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "查看更多" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "尝试某个备用付款提供商。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "其他付款提供商" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "为您的客户提供更多付款方式选择。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "其他付款选项" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "准备接收在线付款" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "选择付款提供商" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "连接到 WooCommerce Payments 时出错。 请重试,或稍后在商店设置中连接。" @@ -132,245 +550,258 @@ msgstr "同意分享非敏感{{link}}使用情况数据{{/link}}即表示,您 msgid "Help us build a better WooCommerce Payments experience" msgstr "帮助我们打造更优质的 WooCommerce Payments 体验" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "使用 WooCommerce Payments 即表示,您同意遵守我们的{{tosLink}}服务条款{{/tosLink}},并确认您已阅读我们的{{privacyLink}}隐私政策{{/privacyLink}} " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "准备好接收付款" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "是,我报名!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "构建更好的 WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "更新您的偏好设置时出现问题" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "配置您的 %(title)s 账户" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "安装 %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "您可以通过单击下面的按钮来管理此付款网关的设置" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "连接" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "继续" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "保存您的付款设置时出现问题。" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "已成功配置 %s" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "推荐" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "当地合作伙伴" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "完成设置" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "启用" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "仍然发布" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "发布商店前的应检查事项" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "发布前" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "为您的新网站选择一个地址,或者转移您已经拥有的域名。" -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "列出产品" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "向您的商店添加产品或服务,开始进行销售。 手动创建产品,或从现有商店导入产品。" -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "列出产品" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "为您的客户提供简单便捷的支付方式! 设置一种(或多种!)快速安全的在线或面对面付款方式。" -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "收款" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "您可以随时在设置下恢复此设置。" -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "举杯庆祝吧 - 您已准备好发布商店! Woo!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "准备好开启您的商店了吗?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "改变了主意? 您可以更新隐私设置,将您的商店设为私密。" -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "查看商店" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "祝贺您发布 WooCommerce 商店。 花点时间来庆祝和分项这一消息吧!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! 您做到了!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "发布您的商店" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "已复制" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "忽略此免费试用版信息横幅。" -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "这是您的免费试用版测试商店,您可以在这里开始探索可用功能! 要详细了解免费试用版,请点击“了解详情”。" -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "保存您的商店位置时出现问题" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "点击“测试付款”即表示您同意{{tosLink}}服务条款{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "通过简单的一站式选项帮助您打造强大的付款功能。 验证您的业务详情,以开始使用 WooCommerce Payments 测试交易。" -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "测试付款" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "为您的客户提供简单便捷的支付方式! 设置并测试一些快速安全的在线或面对面付款方式。" -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "是时候测试付款了" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "付款插图" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "您现在可以开始测试 WooCommerce Payments 的功能和优势了。" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "只差几步,您就可以获得付款了" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "存款在试用期间不可用。 要开始处理真实交易并接收付款和支出,请升级至付费套餐。" +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "存款功能在试用期间不可用。 若想开始处理真实交易并收付款,请升级至付费套餐。" -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "只有管理员和商店经理可以在免费试用版中下单。 如果您已准备好接收客户付款,请升级至付费套餐。" +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "只有管理员和商店经理可以在免费试用版中下单。 如果您已准备好接收客户付款,请升级至付费套餐。" -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "来自我们博客的提示、技巧和电子商务灵感。" -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "受到启发" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "探索收藏" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "快速开始了解我们精心策划的扩展程序收藏。" -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "精心策划的收藏" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "添加额外的特性和功能,或与其他平台和工具集成。" -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "定制和扩展" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "使用您的商店完成更多工作 - 添加扩展程序" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "浏览扩展程序" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "使用 Woo 扩展程序定制您的商店,使其完美贴合您的业务。 升级至付费套餐,获得数百种工具和功能的访问权限,帮助您实现业务目标。 好奇有哪些可用功能? 浏览我们的扩展程序市场。" - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "使用 Woo 扩展程序自定义您的商店,使其完美贴合您的业务。 升级至付费套餐,获得数百种工具和功能的使用权限,借此实现目标。 好奇有哪些可用功能? 浏览我们的扩展程序市场。" + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "使用扩展程序让您的商店更上一层楼" @@ -384,8 +815,8 @@ msgstr "举杯庆祝吧! 准备好开启您的商店了吗?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "推出您的商店" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "您已准备好发布商店" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 分钟" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "域" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "添加域" @@ -428,18 +861,19 @@ msgstr "为了给您的购物者提供流畅结账体验,我们提供全新的 msgid "Meet our new, customizable checkout" msgstr "了解我们可定制的全新结账页面" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\t目前,您是唯一一个能看到商店的人。 要让您的商店面向所有人开放,请升级至付费套餐。\n" +"\t\t\t目前,只有您可以看到您的商店。 若想让商店面向所有人开放,请。\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "立即升级" @@ -451,15 +885,15 @@ msgstr "在试用期间,您只能下达测试订单! 要接收来自客户 msgid "Start selling to everyone" msgstr "开始面向所有人销售" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "我的账户" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "联系" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "首页" @@ -471,7 +905,8 @@ msgstr "此站点已发布" msgid "You don't have permissions to launch this site" msgstr "您没有发布此站点的权限" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "只有管理员和商店经理可以在免费试用版中下单。 如果您已准备好接收客户付款,请升级至付费套餐。" @@ -492,61 +927,61 @@ msgstr "您无法下单。 当前启用结账功能仅用于预览目的。" msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "此商店尚未准备好接收订单。 当前启用结账功能仅用于预览目的。" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack 统计" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Jetpack 状态" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "反垃圾邮件" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "发现" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "管理" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "扩展" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "客户" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "旧版报告" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "WooCommerce 状态" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "WooCommerce 设置" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "订单" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "我的主页" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "反馈" @@ -554,18 +989,26 @@ msgstr "反馈" msgid "Save big with WooCommerce Payments" msgstr "WooCommerce Payments 帮您节省大量资金" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "不用了,谢谢" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "从这里开始" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "导航" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "已将订单详细信息手动发送给客户。" msgid "Invalid order ID." msgstr "无效的订单 ID。" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce插件" @@ -742,17 +1185,21 @@ msgstr "无法在电子商务版套餐中停用 WooCommerce。" msgid "Store" msgstr "商店" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "统计数据" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "都市" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "继续" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "了解更多内容。" @@ -765,6 +1212,11 @@ msgstr "WooCommerce 扩展程序" msgid "Extensions %s" msgstr "扩展程序 %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "由 %1$s 提供支持" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "借助 Storefront 和 WordPress.com 打造" diff --git a/languages/wc-calypso-bridge-zh_SG.mo b/languages/wc-calypso-bridge-zh_SG.mo index bc9eb4314284a42370d2e9d942c0b47bc0c3a802..72b75e0ab95fdd2f78578c31930974c750b681be 100644 GIT binary patch literal 33059 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 aJLBKd=v3w*(gIK8jI(`H-n9TDAN+5!PR|Gc delta 5098 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 T#%zneX6vm#bj0YC&4vF3B8$Vb diff --git a/languages/wc-calypso-bridge-zh_SG.po b/languages/wc-calypso-bridge-zh_SG.po index 7836edc0..80d13d9c 100644 --- a/languages/wc-calypso-bridge-zh_SG.po +++ b/languages/wc-calypso-bridge-zh_SG.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-12 11:54:25+0000\n" +"PO-Revision-Date: 2023-09-14 08:54:42+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: zh_SG\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "无法找到符合需求的合适插件? 从服务集成到独特的自定义项,我们的专家团队能帮助您做好各项工作。" + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "按照自己的方式进行" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "了解扩展程序" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "寻求更多付款和配送方式? 想要构建会员站点或接受捐赠? 从我们团队精挑细选的数百款扩展程序中进行选择。" + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "扩展您的商店" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "将一切交给 WordPress 来完成。 创建商店、托管播客或展示您的作品。 超过 55,000 款插件让您尽在掌控。" + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "转变 WordPress" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "浏览插件" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "将您的 WordPress 站点变成您想要的任何形式。 升级至付费套餐即可获得数千款免费和付费插件的使用权限。 想知道有哪些可能功能?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "借助插件实现任何目的" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "通过{{link}}使用情况跟踪{{/link}}分享非敏感数据,向我们展示 WooCommerce 的使用情况,以便改进功能并提高修复速度。 不会跟踪或存储任何个人数据。" + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "创建数字礼品卡" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "开始销售和接受数字礼品卡以提升客户忠诚度,增加收入,并为您的商店引入新客户。" + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "通过礼品卡提升客户忠诚度" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "通过投放社交广告,将您的产品呈现在浏览 TikTok、Pinterest 和 Meta 平台的数百万感兴趣的购物者面前。" + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "在社交媒体上吸引更多客户" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "通过产品列表和广告(可直接通过仪表盘创建和管理)吸引 Google 上的活跃购物者。" + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "在 Google 上为您的产品投放广告" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "试试 AutomateWoo" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "通过响应客户购买数据的自动化营销消息促进销售并培养客户忠诚度。" + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "实现营销自动化" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "了解我们内置的营销工具,以吸引更多客户并促进销售。" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "通过数百款扩展程序来拓展您的业务。" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "通过我们内置的营销和广告工具吸引更多客户并拓展您的业务。 升级至付费套餐,解锁我们强大的营销工具,并立即开始拓展您的业务!" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "准备好拓展您的业务" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "外观插图" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "产品插图" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "一切都很顺利,继续保持!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "Woo! 我们只差最后一步了! 好样的" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "只剩几项任务需要完成了!" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "欢迎光临您的 Woo Express 商店" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "欢迎使用 %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "已完成%1$d 项,共 %2$d 项。" + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "您差不多可以开始营业了! 请按照以下步骤操设置测试商店。" + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "隐藏设置列表" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "商店设置流程符合我的需求。" + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "商店设置易于完成。" + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "感谢您的反馈!" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "您的体验如何?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "将此隐藏" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "显示设置任务列表" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "任务列表选项" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "恭喜! 花点时间庆祝一下。 一旦您准备好推出您的商店,您唯一要做的便是升级至付费套餐。 这也将解锁任务列表中的两项即将执行的任务。" + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "哇哦! 试用版商店已设置完成!" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "您真棒! 任务清单上又少一项 ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "设置自动收税时遇到问题。 请重试。" + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "在免费试用期内,您可以配置销售税设置,但不能收税。 {{br/}}若想开始销售产品,{{link}}请立即升级{{/link}}。" + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "我不收取销售税" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "手动设置税费" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "选择一位税务合作伙伴" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "WooCommerce Tax 会自动为您计算销售税。" + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "自动收税" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "自动收税" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "前往税率设置界面,以配置您的税率" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "配置税率" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "您的业务经营地址" + +#: build/index.js:1 +msgid "Set store location" +msgstr "设置商店位置" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "请选择国家/地区" + +#: build/index.js:1 +msgid "Post code" +msgstr "邮政编码" + +#: build/index.js:1 +msgid "Address" +msgstr "地址" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "国家/地区" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "点击“配置”后您即可启用税率和计算。 若想了解更多信息,请点击{{link}}此处{{/link}}。" + +#: build/index.js:1 +msgid "Configure" +msgstr "配置" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "继续设置" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "安装 WooCommerce Tax 和 Jetpack 即表示您同意{{link}}服务条款{{/link}}。" + +#: build/index.js:1 +msgid "100% free" +msgstr "完全免费" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "由 {{link}}Jetpack{{/link}} 提供支持" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "{{strong}}单{{/strong}}经济关联合规性" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "实时计算销售税" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "最适合新店" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "WooCommerce Tax" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "提升销售额" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "升级至付费套餐,解锁新功能并开始销售。" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "您目前正在使用免费试用版! 若想获取全套功能,请升级至付费套餐。" + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "欢迎模式导航插图 1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "欢迎模式导航插图 2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "需要设置" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "赚取和管理定期收入,并自动将存款存入您指定的银行账户。" + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "销往国际市场并通过本地付款方式接受超过 135 种货币的付款。" + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "为您的客户提供他们的首选支付方式,包括借记卡和信用卡支付、Apple Pay、Sofort、SEPA、iDeal 等。" + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "接受的付款方式包括:" + +#: build/index.js:1 +msgid "& more." +msgstr "等。" + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "浏览扩展程序" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "添加产品。 展示您的产品或服务并准备好开始销售 — 添加产品信息、图片和描述。" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "导入产品。 展示您的产品或服务并准备好开始销售 — 导入现有的产品信息、图片和描述。" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "添加产品" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "导入产品" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "添加产品" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "导入产品" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "选择主题" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "选择最适合您品牌外观和感觉的主题,然后对其进行自定义。 更改颜色、添加徽标和创建页面。" + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "选择您的主题" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "插件" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "还原" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "“待办事项”" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "设置任务列表" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "恢复显示“待办事项”任务列表。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "恢复显示主登录任务列表。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "使用这些选项可在 WooCommerce 主页中恢复显示主登录任务列表。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "登录" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "出于销售目的优化的自定义导航体验。" + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "使用 WooCommerce 完成工作的速度越来越快。 详细了解我们的新导航,或亲身体验,自行探索。" -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "使用我们的新导航提高浏览速度" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "每次跳转回 WordPress.com 仪表盘时,都可以获得有关商店性能的提示和见解。" -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "了解新主页" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "为您的商店选择一个新的网站地址,或者转移您已经拥有的网站地址。" -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "添加域名插图" @@ -79,43 +487,53 @@ msgstr "已成功添加直接银行转账详细信息" msgid "Please enter an account number or IBAN" msgstr "请输入帐号或 IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "只有管理员和商店经理可以在免费试用版中下单。 如果您已准备好接收客户付款,请{{link}}升级至付费套餐{{/link}}。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "线下付款方式" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "查看更多" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "尝试某个备用付款提供商。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "其他付款提供商" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "为您的客户提供更多付款方式选择。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "其他付款选项" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "准备接收在线付款" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "选择付款提供商" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "连接到 WooCommerce Payments 时出错。 请重试,或稍后在商店设置中连接。" @@ -132,245 +550,258 @@ msgstr "同意分享非敏感{{link}}使用情况数据{{/link}}即表示,您 msgid "Help us build a better WooCommerce Payments experience" msgstr "帮助我们打造更优质的 WooCommerce Payments 体验" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "使用 WooCommerce Payments 即表示,您同意遵守我们的{{tosLink}}服务条款{{/tosLink}},并确认您已阅读我们的{{privacyLink}}隐私政策{{/privacyLink}} " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "准备好接收付款" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "是,我报名!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "构建更好的 WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "更新您的偏好设置时出现问题" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "配置您的 %(title)s 账户" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "安装 %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "您可以通过单击下面的按钮来管理此付款网关的设置" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "连接" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "继续" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "保存您的付款设置时出现问题。" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "已成功配置 %s" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "推荐" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "当地合作伙伴" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "完成设置" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "启用" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "仍然发布" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "发布商店前的应检查事项" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "发布前" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "为您的新网站选择一个地址,或者转移您已经拥有的域名。" -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "列出产品" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "向您的商店添加产品或服务,开始进行销售。 手动创建产品,或从现有商店导入产品。" -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "列出产品" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "为您的客户提供简单便捷的支付方式! 设置一种(或多种!)快速安全的在线或面对面付款方式。" -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "收款" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "您可以随时在设置下恢复此设置。" -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "举杯庆祝吧 - 您已准备好发布商店! Woo!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "准备好开启您的商店了吗?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "改变了主意? 您可以更新隐私设置,将您的商店设为私密。" -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "查看商店" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "祝贺您发布 WooCommerce 商店。 花点时间来庆祝和分项这一消息吧!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! 您做到了!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "发布您的商店" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "已复制" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "忽略此免费试用版信息横幅。" -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "这是您的免费试用版测试商店,您可以在这里开始探索可用功能! 要详细了解免费试用版,请点击“了解详情”。" -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "保存您的商店位置时出现问题" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "点击“测试付款”即表示您同意{{tosLink}}服务条款{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "通过简单的一站式选项帮助您打造强大的付款功能。 验证您的业务详情,以开始使用 WooCommerce Payments 测试交易。" -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "测试付款" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "为您的客户提供简单便捷的支付方式! 设置并测试一些快速安全的在线或面对面付款方式。" -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "是时候测试付款了" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "付款插图" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "您现在可以开始测试 WooCommerce Payments 的功能和优势了。" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "只差几步,您就可以获得付款了" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "存款在试用期间不可用。 要开始处理真实交易并接收付款和支出,请升级至付费套餐。" +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "存款功能在试用期间不可用。 若想开始处理真实交易并收付款,请升级至付费套餐。" -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "只有管理员和商店经理可以在免费试用版中下单。 如果您已准备好接收客户付款,请升级至付费套餐。" +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "只有管理员和商店经理可以在免费试用版中下单。 如果您已准备好接收客户付款,请升级至付费套餐。" -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "来自我们博客的提示、技巧和电子商务灵感。" -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "受到启发" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "探索收藏" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "快速开始了解我们精心策划的扩展程序收藏。" -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "精心策划的收藏" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "添加额外的特性和功能,或与其他平台和工具集成。" -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "定制和扩展" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "使用您的商店完成更多工作 - 添加扩展程序" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "浏览扩展程序" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "使用 Woo 扩展程序定制您的商店,使其完美贴合您的业务。 升级至付费套餐,获得数百种工具和功能的访问权限,帮助您实现业务目标。 好奇有哪些可用功能? 浏览我们的扩展程序市场。" - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "使用 Woo 扩展程序自定义您的商店,使其完美贴合您的业务。 升级至付费套餐,获得数百种工具和功能的使用权限,借此实现目标。 好奇有哪些可用功能? 浏览我们的扩展程序市场。" + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "使用扩展程序让您的商店更上一层楼" @@ -384,8 +815,8 @@ msgstr "举杯庆祝吧! 准备好开启您的商店了吗?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "推出您的商店" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "您已准备好发布商店" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 分钟" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "域" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "添加域" @@ -428,18 +861,19 @@ msgstr "为了给您的购物者提供流畅结账体验,我们提供全新的 msgid "Meet our new, customizable checkout" msgstr "了解我们可定制的全新结账页面" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\t目前,您是唯一一个能看到商店的人。 要让您的商店面向所有人开放,请升级至付费套餐。\n" +"\t\t\t目前,只有您可以看到您的商店。 若想让商店面向所有人开放,请。\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "立即升级" @@ -451,15 +885,15 @@ msgstr "在试用期间,您只能下达测试订单! 要接收来自客户 msgid "Start selling to everyone" msgstr "开始面向所有人销售" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "我的账户" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "联系" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "首页" @@ -471,7 +905,8 @@ msgstr "此站点已发布" msgid "You don't have permissions to launch this site" msgstr "您没有发布此站点的权限" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "只有管理员和商店经理可以在免费试用版中下单。 如果您已准备好接收客户付款,请升级至付费套餐。" @@ -492,61 +927,61 @@ msgstr "您无法下单。 当前启用结账功能仅用于预览目的。" msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "此商店尚未准备好接收订单。 当前启用结账功能仅用于预览目的。" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack 统计" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Jetpack 状态" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "反垃圾邮件" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "发现" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "管理" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "扩展" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "客户" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "旧版报告" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "WooCommerce 状态" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "WooCommerce 设置" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "订单" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "我的主页" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "反馈" @@ -554,18 +989,26 @@ msgstr "反馈" msgid "Save big with WooCommerce Payments" msgstr "WooCommerce Payments 帮您节省大量资金" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "不用了,谢谢" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "从这里开始" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "导航" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "已将订单详细信息手动发送给客户。" msgid "Invalid order ID." msgstr "无效的订单 ID。" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce插件" @@ -742,17 +1185,21 @@ msgstr "无法在电子商务版套餐中停用 WooCommerce。" msgid "Store" msgstr "商店" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "统计数据" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "都市" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "继续" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "了解更多内容。" @@ -765,6 +1212,11 @@ msgstr "WooCommerce 扩展程序" msgid "Extensions %s" msgstr "扩展程序 %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "由 %1$s 提供支持" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "借助 Storefront 和 WordPress.com 打造" diff --git a/languages/wc-calypso-bridge-zh_TW.mo b/languages/wc-calypso-bridge-zh_TW.mo index 4ffc70d4640de3030ea3f0264a33f06c63307747..c9aecf5b336428163b60910af081cc133cd8b11c 100644 GIT binary patch literal 33030 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 delta 4900 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 O(4tSe=j+UkmH!4ru0|vP diff --git a/languages/wc-calypso-bridge-zh_TW.po b/languages/wc-calypso-bridge-zh_TW.po index 0e9fe11c..98c5b54c 100644 --- a/languages/wc-calypso-bridge-zh_TW.po +++ b/languages/wc-calypso-bridge-zh_TW.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-13 09:54:04+0000\n" +"PO-Revision-Date: 2023-09-14 08:54:05+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,435 @@ msgstr "" "Language: zh_TW\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgstr "找不到符合自身需求的外掛程式嗎? 從服務整合到充滿異國風味的自訂項目,我們的專家團隊都能協助你妥善完成。" + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "用自己的方式進行" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "探索擴充功能" + +#: build/plugins.js:1 +msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgstr "在尋找更多的付款和運送方法嗎? 想建立會員網站,或接受捐款嗎? 從我們的團隊精挑細選的數百種擴充功能中,盡情選擇。" + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "擴大商店" + +#: build/plugins.js:1 +msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgstr "讓 WordPress 代勞一切。 建立商店、主持 Podcast 或展示工作成果。 超過 55,000 種外掛程式,都掌握在你的手中。" + +#: build/plugins.js:1 +msgid "Transform WordPress" +msgstr "為 WordPress 改頭換面" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "瀏覽外掛程式" + +#: build/plugins.js:1 +msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgstr "將你的 WordPress 網站改造成任何你一心嚮往的面貌。 升級為付費方案,即可使用數千種免費與付費外掛程式。 想知道哪些夢想能夠實現嗎?" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "透過外掛程式,實現一切" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "透過{{link}}使用情況追蹤{{/link}}分享非敏感性資料,可以協助我們改善功能、快速修復程式。「使用情況追蹤」可讓我們知道你的 WooCommerce 使用情況。 我們不會追蹤或儲存任何個人資料。" + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "製作數位禮物卡" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "開始販售並接受數位禮物卡來提高顧客忠誠度、創造更多收益,並向新顧客介紹你的商店。" + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "透過禮物卡提高顧客忠誠度" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "運用社群媒體廣告,向瀏覽 TikTok、Pinterest 和 Meta 平台的數百萬熱情買家展示自家產品。" + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "在社群媒體上觸及更多顧客" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "透過可直接從儀表板建立及管理的產品清單和廣告,觸及整個 Google 上的活躍買家。" + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "在 Google 上廣告自家產品" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "試用 AutomateWoo" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "透過呼應顧客購買資料的自動化行銷訊息,提高銷售額並建立忠誠度。" + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "行銷自動化" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "探索我們的內建行銷工具,觸及更多顧客並提升銷售額" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "透過數百個擴充功能,拓展你的業務" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "運用我們的內建行銷和廣告工具,觸及更多顧客並拓展業務。 升級為付費方案,即可解鎖我們強大的行銷工具,立即開始拓展業務!" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "準備好拓展業務" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "外觀插圖" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "產品插圖" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "一切看起來都好極了,繼續維持!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "Woo! 終於到最後一個步驟了! 太好了" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "只要再完成幾個部分,就大功告成了!" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "歡迎蒞臨你的 Woo Express 商店" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "歡迎造訪 %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "已完成 %1$d 個,共 %2$d 個。" + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "你即將準備好開始販售! 請依照這些步驟,設定測試商店。" + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "隱藏設定清單" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "商店設定流程符合我的需求。" + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "商店設定很容易完成。" + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "感謝你的意見回饋!" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "你的使用體驗如何?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "隱藏此項目" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "顯示設定工作清單" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "任務清單選項" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "恭喜! 花點時間慶祝一下吧。 準備好推出商店後,只要升級為付費方案即可。 升級後,也會解鎖任務清單中即將開始的任務。" + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "哇! 你的免費試用商店已設定完畢!" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "太好了! 你又完成待辦清單上的一項任務了 ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "設定自動計算稅額時發生問題。 請再試一次。" + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "在免費試用期間,你可以進行營業稅相關設定,但還不能收取這些款項。 {{br/}}若要開始販售產品,{{link}}請立即升級{{/link}}。" + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "我不收營業稅" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "手動設定稅金" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "選擇稅務合作夥伴" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "WooCommerce Tax 可自動為你計算營業稅。" + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "自動處理稅務" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "自動處理稅務" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "前往稅率設定畫面設定稅率" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "設定稅率" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "公司營運地址" + +#: build/index.js:1 +msgid "Set store location" +msgstr "設定商店地點" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "請選擇國家/地區" + +#: build/index.js:1 +msgid "Post code" +msgstr "郵遞區號" + +#: build/index.js:1 +msgid "Address" +msgstr "位址" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "國家/地區或區域" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "按一下「設定」,即可啟用稅率和計算功能。 詳情請參閱{{link}}此處{{/link}}。" + +#: build/index.js:1 +msgid "Configure" +msgstr "設定" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "繼續設定" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "安裝 WooCommerce Tax 和 Jetpack,即表示你同意{{link}}服務條款{{/link}}。" + +#: build/index.js:1 +msgid "100% free" +msgstr "完全免費" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "採用 {{link}}Jetpack{{/link}} 提供的技術" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "{{strong}}單一{{/strong}}經濟關係規範" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "營業稅即時計算" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "適合新商店" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "WooCommerce Tax" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "創造更多銷量" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "升級為付費方案,即可解鎖更多功能並開始銷售" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "你正在免費試用中! 若要取得完整功能,請升級為付費方案。" + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "歡迎模式導覽插圖 1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "歡迎模式導覽插圖 2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "需要設定" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "賺取並管理定期收益,並自動存款至指定的銀行帳號。" + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "銷售到國際市場,並透過當地付款方式接受超過 135 種貨幣。" + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "為顧客提供他們偏好的付款方式,包括簽帳金融卡和信用卡付款、Apple Pay、Sofort、SEPA、iDeal 等。" + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "接受的付款方式包括:" + +#: build/index.js:1 +msgid "& more." +msgstr "及其他方式。" + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "瀏覽擴充功能" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "新增產品。 炫耀自家產品與服務,並準備好開始銷售:新增產品資訊、圖片與說明。" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "匯入你的產品 炫耀自家產品與服務,並準備好開始銷售:匯入現有的產品資訊、圖片與說明。" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "新增商品" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "匯入商品" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "新增產品" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "匯入你的產品" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "選擇佈景主題" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "選擇最符合品牌外觀與風格的佈景主題,然後開始用於自家品牌。 變更顏色、新增標誌並建立頁面。" + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "選擇佈景主題" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "外掛程式" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "還原" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "「後續步驟」" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "設定工作清單" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "還原「後續步驟」工作清單的可見度。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "還原主要引導工作清單的可見度。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "使用這些選項來還原 WooCommerce 首頁的引導工作清單可見度。" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "申請" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "已針對銷售最佳化的自訂導覽體驗。" + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "WooCommerce 讓你事半功倍。 深入瞭解我們全新的導覽 — 或自行探索。" -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "我們全新的導覽讓你事半功倍" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "每次返回 WordPress.com 儀表板,都能查看提升商店表現的提示和洞察報告。" -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "認識新首頁" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "為商店選擇一個新的網站位址,或移轉現有網站位址。" -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "新增網域圖例" @@ -79,43 +487,53 @@ msgstr "已成功新增直接銀行轉帳詳細資料" msgid "Please enter an account number or IBAN" msgstr "請輸入帳號或 IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "免費試用期只有管理員和商店經理可以下單。 如果你已準備好接受顧客付款,請{{link}}升級到付費方案{{/link}}。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "離線付款方式" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "查看更多" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "試試其他付款服務供應商。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "其他付款服務供應商" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "讓顧客擁有更多付款選項。" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "其他付款選項" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "準備好在線上接受付款" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "選擇付款供應商" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "連結到 WooCommerce Payments 時發生錯誤。 請再試一次,或稍後再從商店設定連結。" @@ -132,245 +550,258 @@ msgstr "同意分享非敏感{{link}}使用狀況資料{{/link}},可以協助 msgid "Help us build a better WooCommerce Payments experience" msgstr "協助我們建立更流暢的 WooCommerce Payments 使用體驗" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "使用 WooCommerce Payments,即表示你同意遵守我們的{{tosLink}}服務條款{{/tosLink}},並確認已詳閱我們的{{privacyLink}}隱私權政策{{/privacyLink}} " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "準備好接受付款" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "是的,我要加入!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "建立更強大的 WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "更新喜好設定時發生問題" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "設定你的 %(title)s 帳號" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "安裝 %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "點選下方按鈕即可管理此付款閘道的設定" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "連結" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "繼續" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "儲存你的付款設定時發生問題" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s 設定成功" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "推薦" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "當地合作夥伴" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "完成設定手續" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "啓用" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "仍要推出" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "推出商店前的檢查事項" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "推出之前" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "為新網站選擇一個位址,或移轉現有網域。" -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "產品上架" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "為你的商店新增產品或服務,立即開始銷售。 手動建立產品,或從現有商店匯入。" -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "將你的產品上架" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "為顧客提供簡單方便的付款方式! 設定一或多個快速安全的付款方式,可選擇線上收款或親自收款。 " -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "收取付款" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "你可以隨時在「設定」下還原此設定。" -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "你已經準備好推出商店了,準備慶祝吧! Woo!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "準備好推出你的商店了嗎?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "改變主意了? 更新「隱私權」設定,就能將商店設回私人模式。" -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "查看商店" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "恭喜你推出了 WooCommerce 商店。 好好慶祝一番,別忘了分享這個好消息!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! 你辦到了!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "正在推出商店" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "已複製" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "關閉此免費試用資訊橫幅。" -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "這是你的免費試用測試商店,你可以在這裡開始探索可用的功能! 若要深入瞭解免費試用,請按一下「深入瞭解」。" -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "儲存商店地點時發生問題" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "按一下「測試付款」,即表示你同意{{tosLink}}服務條款{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "利用簡單的多合一選項,增強付款功能。 驗證企業詳細資料就能開始使用 WooCommerce Payments 測試交易。" -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "測試付款" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "為顧客提供簡單方便的付款方式! 設定並測試快速安全的付款方式,可選擇線上收款或親自收款。 " -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "是時候測試付款了" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "付款插圖" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "你準備好開始測試 WooCommerce Payments 的功能和優勢了" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "只要再幾個步驟,就能開始收款" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "試用期不提供匯款功能。 若要開始處理真正的交易和收付款,請升級到付費方案。" +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "試用期不提供匯款功能。 若要開始處理真正的交易和收付款,請升級為付費方案。" -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "免費試用期只有管理員和商店經理可以下單。 如果你已準備好接受顧客付款,請升級到付費方案。" +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "免費試用期只有管理員和商店經理可以下單。 如果你已準備好接受顧客付款,請升級為付費方案。" -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "從我們的網誌查看各種秘訣、技巧和電子商務靈感。" -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 +#: build/plugins.js:1 msgid "Get inspired" msgstr "獲得啟發" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "探索系列" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "透過我們精選的擴充功能系列快速上手。" -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "精選系列" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "新增額外的特色和功能,或與其他平台和工具整合。" -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "自訂和擴充" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "讓商店發揮更多成效 — 新增擴充功能" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "瀏覽擴充功能" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "使用 Woo 擴充功能自訂商店,以完美滿足你的業務需求。 升級到付費方案,使用數百種工具和功能來協助你實現業務目標。 想知道有哪些功能嗎? 歡迎瀏覽我們的擴充功能市集。" - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "使用 WooCommerce 擴充功能自訂商店,以完美滿足你的業務需求。 升級為付費方案,使用數百種工具和功能來協助你實現目標。 想知道有哪些功能嗎? 歡迎瀏覽我們的擴充功能市集。" + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "透過擴充功能讓你的商店更上一層樓" @@ -384,8 +815,8 @@ msgstr "是時候慶祝一下了! 準備好推出你的商店了嗎?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "推出你的商店" @@ -394,6 +825,8 @@ msgid "You've already launched your store" msgstr "你已經推出商店了" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 分鐘" @@ -406,9 +839,9 @@ msgid "Domain" msgstr "網域" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "新增網域" @@ -428,18 +861,19 @@ msgstr "為了讓顧客享有流暢的結帳體驗,我們提供全新的轉換 msgid "Meet our new, customizable checkout" msgstr "認識我們全新的客製化結帳體驗" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\t目前只有你可以看到商店。 若要讓所有人都能造訪你的商店,請升級到付費方案。\n" +"\t\t\t目前只有你可以看到商店。 若要讓所有人都能造訪你的商店,請。\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "立即升級" @@ -451,15 +885,15 @@ msgstr "試用期只能送出測試訂單! 若要接收顧客的訂單,請 msgid "Start selling to everyone" msgstr "開始向所有人銷售" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:362 msgid "My Account" msgstr "我的帳號" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:360 msgid "Contact" msgstr "聯絡頁面" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:351 msgid "Home" msgstr "主頁" @@ -471,7 +905,8 @@ msgstr "本網站已經發佈。" msgid "You don't have permissions to launch this site" msgstr "你無權推出此網站" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "免費試用期只有管理員和商店經理可以下單。 如果你已準備好接受顧客付款,請升級到付費方案。" @@ -492,61 +927,61 @@ msgstr "無法送出你的訂單。 結帳功能目前僅供預覽。" msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "這家商店還沒有準備好接受訂單。 結帳功能目前僅供預覽。" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack Stats" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Jetpack 狀態" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "反垃圾內容" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "探索" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "管理" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "擴充功能" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "顧客" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "舊版報告" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "WooCommerce 狀態" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "WooCommerce 設定" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "訂單" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "我的首頁" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "意見反應" @@ -554,18 +989,26 @@ msgstr "意見反應" msgid "Save big with WooCommerce Payments" msgstr "透過 WooCommerce Payments 省更多" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "不用了,謝謝" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "開始使用" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "導覽" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1050,7 @@ msgstr "訂單詳細資料已手動傳送給客戶。" msgid "Invalid order ID." msgstr "無效的訂單編號。" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1185,21 @@ msgstr "電子商務方案無法停用 WooCommerce。" msgid "Store" msgstr "商店" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "統計資料" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "城市" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "繼續" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "瞭解更多。" @@ -765,6 +1212,11 @@ msgstr "WooCommerce 擴充功能" msgid "Extensions %s" msgstr "擴充功能數量:%s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "技術支援:%1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "架設工具:Storefront 和 WordPress.com" diff --git a/languages/wc-calypso-bridge.pot b/languages/wc-calypso-bridge.pot index a74c8d5e..0b87571a 100644 --- a/languages/wc-calypso-bridge.pot +++ b/languages/wc-calypso-bridge.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the WooCommerce Calypso Bridge plugin. msgid "" msgstr "" -"Project-Id-Version: WooCommerce Calypso Bridge 2.2.13\n" +"Project-Id-Version: WooCommerce Calypso Bridge 2.2.14\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-calypso-bridge\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: 2023-09-12T11:25:33+00:00\n" +"POT-Creation-Date: 2023-09-14T13:37:30+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.8.1\n" @@ -149,15 +149,15 @@ msgstr "" msgid "This site has already been launched" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "" @@ -396,7 +396,6 @@ msgstr "" #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "" @@ -1183,7 +1182,7 @@ msgid "Make anything happen, with plugins" msgstr "" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" msgstr "" #: build/plugins.js:1 @@ -1191,11 +1190,11 @@ msgid "Browse plugins" msgstr "" #: build/plugins.js:1 -msgid "Transform WordPress" +msgid "Customize your website" msgstr "" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." msgstr "" #: build/plugins.js:1 @@ -1203,7 +1202,7 @@ msgid "Extend your store" msgstr "" #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." msgstr "" #: build/plugins.js:1 @@ -1215,7 +1214,11 @@ msgid "Do it your way" msgstr "" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "" + +#: build/plugins.js:1 +msgid "Hire an expert" msgstr "" #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:29 From d10979c76ef8dc532fedff8afb1d48e224b79b92 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 14 Sep 2023 16:40:54 +0300 Subject: [PATCH 47/81] Bump readme.txt --- readme.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/readme.txt b/readme.txt index febce6bf..c56785dd 100644 --- a/readme.txt +++ b/readme.txt @@ -23,10 +23,8 @@ This section describes how to install the plugin and get it working. == Changelog == = 2.2.14 = -* _Enter your changes here_ - -= unreleased = -* Updated plugins landing page (free trial) #xxx +* Updated plugins landing page (free trial) #1300 +* Removed some get_options logging during the page creation one time job #1296 = 2.2.13 = * Display a server based WooPayments setup task header when an incentive is available #1294 From b57bdd7a6827e613700b11dcf8bf9fe4b00a26cc Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Tue, 19 Sep 2023 12:55:09 +0300 Subject: [PATCH 48/81] Revert aggressive page deletion - Flush cache and sleep --- includes/class-wc-calypso-bridge-setup.php | 104 +++++++++++---------- readme.txt | 4 + 2 files changed, 59 insertions(+), 49 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index 4fce5fb4..2371e498 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version 2.2.13 + * @version x.x.x */ use Automattic\WooCommerce\Admin\WCAdminHelper; @@ -221,10 +221,10 @@ public function woocommerce_create_pages_callback() { $operation = 'woocommerce_create_pages'; - $this->write_to_log( $operation, 'initialized' ); + $this->write_to_log( $operation, 'INITIALIZED' ); - // Set the operation as completed if the store is active for more than 1 hour. - if ( WCAdminHelper::is_wc_admin_active_for( 60 * MINUTE_IN_SECONDS ) ) { + // Set the operation as completed if the store is active for more than 5 minutes. + if ( WCAdminHelper::is_wc_admin_active_for( 5 * MINUTE_IN_SECONDS ) ) { update_option( $this->option_prefix . $operation, 'completed', 'no' ); $this->write_to_log( $operation, 'completed (60 minutes)' ); @@ -268,28 +268,27 @@ public function woocommerce_create_pages_callback() { } try { - /* - * Force delete all pages (including duplicates), except some which are whitelisted. - */ - $exclude_pages = array( 'faq', 'contact-us', 'blog' ); - $args_pages = array( - 'post_type' => 'page', - 'post_status' => 'any', - 'posts_per_page' => - 1, + + $this->write_to_log( $operation, 'DELETING WOOCOMMERCE PAGES '); + + $woocommerce_slugs = array( + 'shop' => _x( 'shop', 'Page slug', 'woocommerce' ), + 'cart' => _x( 'cart', 'Page slug', 'woocommerce' ), + 'checkout' => _x( 'checkout', 'Page slug', 'woocommerce' ), + 'myaccount' => _x( 'my-account', 'Page slug', 'woocommerce' ), + 'refund_returns' => _x( 'refund_returns', 'Page slug', 'woocommerce' ), ); - $query_pages = new WP_Query( $args_pages ); - - $this->write_to_log( $operation, 'DELETING PAGES '); - if ( ! empty( $query_pages->posts ) ) { - foreach ( $query_pages->posts as $page ) { - if ( ! in_array( $page->post_name, $exclude_pages ) ) { - $result = wp_delete_post( $page->ID, true ); - $this->write_to_log( $operation, 'deleted WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); - if ( ! $result ) { - $this->write_to_log( $operation, 'failed to delete WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); + foreach ( $woocommerce_slugs as $key => $page_slug ) { + $slugs = array( $page_slug, $page_slug . '-2' ); + foreach ( $slugs as $slug ) { + $page = get_page_by_path( $slug, ARRAY_A ); + if ( is_array( $page ) && isset( $page['ID'] ) ) { + $result = wp_delete_post( $page['ID'], true ); + if ( $result ) { + $this->write_to_log( $operation, 'deleted WooCommerce page ' . $slug ); + } else { + $this->write_to_log( $operation, 'failed to delete WooCommerce page ' . $slug ); } - } else { - $this->write_to_log( $operation, 'skipped WooCommerce page ' . $page->ID . ' - ' . $page->post_name ); } } } @@ -303,21 +302,41 @@ public function woocommerce_create_pages_callback() { * `My Account` page id setting, is created with key `myaccount`. * @see WC_Install::create_pages() */ - $this->write_to_log( $operation, 'DELETING OPTIONS '); - foreach ( [ 'shop', 'cart', 'myaccount', 'checkout', 'refund_returns' ] as $page ) { - $value = get_option( "woocommerce_{$page}_page_id" ); - $result = delete_option( "woocommerce_{$page}_page_id" ); - $this->write_to_log( $operation, 'deleted option woocommerce_' . $page . '_page_id : ' . $value ); - if ( ! $result ) { - $this->write_to_log( $operation, 'failed to delete option woocommerce_' . $page . '_page_id : ' . $value ); + $this->write_to_log( $operation, 'DELETING WOOCOMMERCE PAGE OPTIONS '); + + foreach ( $woocommerce_slugs as $key => $page_slug ) { + $value = get_option( "woocommerce_{$key}_page_id" ); + $result = delete_option( "woocommerce_{$key}_page_id" ); + if ( $result ) { + $this->write_to_log( $operation, 'deleted option woocommerce_' . $key . '_page_id : ' . $value ); + } else { + $this->write_to_log( $operation, 'failed to delete option woocommerce_' . $key . '_page_id : ' . $value ); + } + } + + $this->write_to_log( $operation, 'DELETING HEADSTART PAGES '); + + // See https://github.com/Automattic/theme-tsubaki/blob/trunk/inc/headstart/en.json + $headstart_slugs = array( 'shop', 'cart', 'checkout', 'my-account', 'refund_returns' ); + foreach ( $headstart_slugs as $page_slug ) { + $slugs = array( $page_slug, $page_slug . '-2' ); + foreach ( $slugs as $slug ) { + $page = get_page_by_path( $slug, ARRAY_A ); + if ( is_array( $page ) && isset( $page['ID'] ) ) { + $result = wp_delete_post( $page['ID'], true ); + if ( $result ) { + $this->write_to_log( $operation, 'deleted headstart page ' . $slug ); + } else { + $this->write_to_log( $operation, 'failed to delete headstart page ' . $slug ); + } + } } } - // Commenting this out, to see if this was the reason that the pages are now created. -// foreach ( [ 'shop', 'cart', 'myaccount', 'checkout', 'refund_returns' ] as $page ) { -// $value = get_option( "woocommerce_{$page}_page_id" ); -// $this->write_to_log( $operation, 'getting option woocommerce_' . $page . '_page_id : ' . $value ); -// } + $this->write_to_log( $operation, 'FLUSH CACHE AND SLEEP '); + // sleep for 0.5 second to give enough time to memcache to flush and revalidate. + wp_cache_flush(); + usleep( 500000 ); // Delete the following note, so it can be recreated with the correct refund page ID. if ( class_exists( 'Automattic\WooCommerce\Admin\Notes\Notes' ) ) { @@ -436,19 +455,6 @@ class_exists( 'Automattic\WooCommerce\Blocks\Package' ) }, PHP_INT_MAX ); - // Log if valid page exists. - add_filter( 'woocommerce_create_page_id', function ( $valid_page_found, $slug, $page_content ) { - - $operation = 'woocommerce_create_pages'; - if ( $valid_page_found ) { - $this->write_to_log( $operation, 'woocommerce_create_page_id filter - valid page found - slug: ' . $slug ); - } else { - $this->write_to_log( $operation, 'woocommerce_create_page_id filter - valid page not found - slug: ' . $slug ); - } - - return $valid_page_found; - }, PHP_INT_MAX, 3 ); - // Log which pages have been created. add_action( 'woocommerce_page_created', function ( $page_id, $page_data ) { $operation = 'woocommerce_create_pages'; diff --git a/readme.txt b/readme.txt index c56785dd..8cc8fa4f 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,10 @@ This section describes how to install the plugin and get it working. == Changelog == += unreleased = +* Revert all page deletion and delete only WooCommerce related pages #xxx +* Purge cache before creating WooCommerce related pages #xxx + = 2.2.14 = * Updated plugins landing page (free trial) #1300 * Removed some get_options logging during the page creation one time job #1296 From be4413413989b618e787f16d6028c0270390b661 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Tue, 19 Sep 2023 15:50:56 +0300 Subject: [PATCH 49/81] Avoid duplications --- includes/class-wc-calypso-bridge-setup.php | 66 ++++++++++++++-------- 1 file changed, 41 insertions(+), 25 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index 2371e498..21f4c274 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -226,7 +226,7 @@ public function woocommerce_create_pages_callback() { // Set the operation as completed if the store is active for more than 5 minutes. if ( WCAdminHelper::is_wc_admin_active_for( 5 * MINUTE_IN_SECONDS ) ) { update_option( $this->option_prefix . $operation, 'completed', 'no' ); - $this->write_to_log( $operation, 'completed (60 minutes)' ); + $this->write_to_log( $operation, 'completed (5 minutes)' ); return; } @@ -269,27 +269,24 @@ public function woocommerce_create_pages_callback() { try { + /* + * Delete all WooCommerce pages, by translated slug, and start fresh. + * + * @see WC_Install::create_pages() + */ $this->write_to_log( $operation, 'DELETING WOOCOMMERCE PAGES '); - $woocommerce_slugs = array( + $woocommerce_pages = array( 'shop' => _x( 'shop', 'Page slug', 'woocommerce' ), 'cart' => _x( 'cart', 'Page slug', 'woocommerce' ), 'checkout' => _x( 'checkout', 'Page slug', 'woocommerce' ), 'myaccount' => _x( 'my-account', 'Page slug', 'woocommerce' ), 'refund_returns' => _x( 'refund_returns', 'Page slug', 'woocommerce' ), ); - foreach ( $woocommerce_slugs as $key => $page_slug ) { + foreach ( $woocommerce_pages as $key => $page_slug ) { $slugs = array( $page_slug, $page_slug . '-2' ); foreach ( $slugs as $slug ) { - $page = get_page_by_path( $slug, ARRAY_A ); - if ( is_array( $page ) && isset( $page['ID'] ) ) { - $result = wp_delete_post( $page['ID'], true ); - if ( $result ) { - $this->write_to_log( $operation, 'deleted WooCommerce page ' . $slug ); - } else { - $this->write_to_log( $operation, 'failed to delete WooCommerce page ' . $slug ); - } - } + $this->delete_page_by_slug( $slug, $operation ); } } @@ -299,12 +296,11 @@ public function woocommerce_create_pages_callback() { * for an ecommerce plan. WC_Install:create_pages() might not create all the * required pages without resetting these options first. * - * `My Account` page id setting, is created with key `myaccount`. * @see WC_Install::create_pages() */ $this->write_to_log( $operation, 'DELETING WOOCOMMERCE PAGE OPTIONS '); - foreach ( $woocommerce_slugs as $key => $page_slug ) { + foreach ( $woocommerce_pages as $key => $page_slug ) { $value = get_option( "woocommerce_{$key}_page_id" ); $result = delete_option( "woocommerce_{$key}_page_id" ); if ( $result ) { @@ -314,22 +310,18 @@ public function woocommerce_create_pages_callback() { } } + /* + * Deleting the hardcoded pages created by Headstart. + * + * @see https://github.com/Automattic/theme-tsubaki/blob/trunk/inc/headstart/en.json + */ $this->write_to_log( $operation, 'DELETING HEADSTART PAGES '); - // See https://github.com/Automattic/theme-tsubaki/blob/trunk/inc/headstart/en.json - $headstart_slugs = array( 'shop', 'cart', 'checkout', 'my-account', 'refund_returns' ); + $headstart_slugs = array( 'shop', 'cart', 'checkout', 'my-account', 'refund_returns' ); foreach ( $headstart_slugs as $page_slug ) { $slugs = array( $page_slug, $page_slug . '-2' ); foreach ( $slugs as $slug ) { - $page = get_page_by_path( $slug, ARRAY_A ); - if ( is_array( $page ) && isset( $page['ID'] ) ) { - $result = wp_delete_post( $page['ID'], true ); - if ( $result ) { - $this->write_to_log( $operation, 'deleted headstart page ' . $slug ); - } else { - $this->write_to_log( $operation, 'failed to delete headstart page ' . $slug ); - } - } + $this->delete_page_by_slug( $slug, $operation ); } } @@ -686,6 +678,30 @@ public function prevent_redirects_on_activation( $location, $status ) { private function write_to_log( $operation, $message ) { error_log( 'WooExpress: Operation: (' . microtime( true ) . ') ' . $operation . ': ' . print_r( $message, 1 ) ); } + + /** + * Delete page by slug + * + * @param string $slug Slug. + * @param string $operation Operation. + * + * @since x.x.x + * + * @return void + */ + private function delete_page_by_slug( $slug, $operation ) { + + $page = get_page_by_path( $slug, ARRAY_A ); + if ( is_array( $page ) && isset( $page['ID'] ) ) { + $result = wp_delete_post( $page['ID'], true ); + if ( $result ) { + $this->write_to_log( $operation, 'deleted page ' . $slug ); + } else { + $this->write_to_log( $operation, 'failed to delete page ' . $slug ); + } + } + + } } WC_Calypso_Bridge_Setup::get_instance(); From c11b6198254d21afcfb0b3c157dbd046f18d6311 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 20 Sep 2023 17:47:20 +0300 Subject: [PATCH 50/81] Do not delete pages that are older than 10 minutes and recreate all Woo --- includes/class-wc-calypso-bridge-setup.php | 30 +++++++++++++++++++--- 1 file changed, 27 insertions(+), 3 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index 21f4c274..432ba113 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -223,10 +223,10 @@ public function woocommerce_create_pages_callback() { $this->write_to_log( $operation, 'INITIALIZED' ); - // Set the operation as completed if the store is active for more than 5 minutes. - if ( WCAdminHelper::is_wc_admin_active_for( 5 * MINUTE_IN_SECONDS ) ) { + // Set the operation as completed if the store is active for more than 10 minutes. + if ( WCAdminHelper::is_wc_admin_active_for( 10 * MINUTE_IN_SECONDS ) ) { update_option( $this->option_prefix . $operation, 'completed', 'no' ); - $this->write_to_log( $operation, 'completed (5 minutes)' ); + $this->write_to_log( $operation, 'completed (10 minutes)' ); return; } @@ -447,6 +447,14 @@ class_exists( 'Automattic\WooCommerce\Blocks\Package' ) }, PHP_INT_MAX ); + // Force WooCommerce to recreate pages. + add_filter( 'woocommerce_create_page_id', function ( $valid_page_found, $slug, $page_content ) { + $operation = 'woocommerce_create_pages'; + $this->write_to_log( $operation, 'woocommerce_create_page_id force create slug: ' . $slug ); + return false; + }, PHP_INT_MAX, 3 ); + + // Log which pages have been created. add_action( 'woocommerce_page_created', function ( $page_id, $page_data ) { $operation = 'woocommerce_create_pages'; @@ -692,7 +700,23 @@ private function write_to_log( $operation, $message ) { private function delete_page_by_slug( $slug, $operation ) { $page = get_page_by_path( $slug, ARRAY_A ); + if ( is_array( $page ) && isset( $page['ID'] ) ) { + + $page_gmt_ts = get_post_time( 'U', true, $page['ID'] ); + // draft pages don't have a post_date_gmt, so we need to calculate it. + if ( false === $page_gmt_ts ) { + $page_gmt_ts = get_gmt_from_date( $page['post_date'], 'U' ); + } + $current_time_gmt_ts = current_time( 'U', true ); + $diff_ts = $current_time_gmt_ts - $page_gmt_ts; + + if ( $diff_ts > 10 * MINUTE_IN_SECONDS ) { + $this->write_to_log( $operation, 'ignored page deletion (too old) ' . $slug . ' diff: ' . $diff_ts ); + + return; + } + $result = wp_delete_post( $page['ID'], true ); if ( $result ) { $this->write_to_log( $operation, 'deleted page ' . $slug ); From dac76a829abb70cf0031e4a9f5b379c71c78c3df Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:40:47 +0300 Subject: [PATCH 51/81] Identify old sites/pages by 10 minutes --- includes/class-wc-calypso-bridge-setup.php | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index 432ba113..aa59324c 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -224,7 +224,7 @@ public function woocommerce_create_pages_callback() { $this->write_to_log( $operation, 'INITIALIZED' ); // Set the operation as completed if the store is active for more than 10 minutes. - if ( WCAdminHelper::is_wc_admin_active_for( 10 * MINUTE_IN_SECONDS ) ) { + if ( WCAdminHelper::is_wc_admin_active_for( 5 * MINUTE_IN_SECONDS ) ) { update_option( $this->option_prefix . $operation, 'completed', 'no' ); $this->write_to_log( $operation, 'completed (10 minutes)' ); @@ -286,7 +286,7 @@ public function woocommerce_create_pages_callback() { foreach ( $woocommerce_pages as $key => $page_slug ) { $slugs = array( $page_slug, $page_slug . '-2' ); foreach ( $slugs as $slug ) { - $this->delete_page_by_slug( $slug, $operation ); + $this->maybe_delete_page_by_slug( $slug, $operation ); } } @@ -321,7 +321,7 @@ public function woocommerce_create_pages_callback() { foreach ( $headstart_slugs as $page_slug ) { $slugs = array( $page_slug, $page_slug . '-2' ); foreach ( $slugs as $slug ) { - $this->delete_page_by_slug( $slug, $operation ); + $this->maybe_delete_page_by_slug( $slug, $operation ); } } @@ -688,16 +688,17 @@ private function write_to_log( $operation, $message ) { } /** - * Delete page by slug - * - * @param string $slug Slug. - * @param string $operation Operation. + * Maybe delete page by slug. + * If the page is older than 10 minutes, it will be ignored. * * @since x.x.x * + * @param string $operation Operation. + * + * @param string $slug Slug. * @return void */ - private function delete_page_by_slug( $slug, $operation ) { + private function maybe_delete_page_by_slug( $slug, $operation ) { $page = get_page_by_path( $slug, ARRAY_A ); @@ -712,7 +713,7 @@ private function delete_page_by_slug( $slug, $operation ) { $diff_ts = $current_time_gmt_ts - $page_gmt_ts; if ( $diff_ts > 10 * MINUTE_IN_SECONDS ) { - $this->write_to_log( $operation, 'ignored page deletion (too old) ' . $slug . ' diff: ' . $diff_ts ); + $this->write_to_log( $operation, 'ignored page deletion ' . $slug . ' diff: ' . $diff_ts / 60 . ' minutes (older than 10 minutes) ' ); return; } From 3d14a6b74dac1b3415ebc29ff22cfcaff2defa42 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Fri, 22 Sep 2023 08:37:27 +0300 Subject: [PATCH 52/81] Applied review - bail out early --- includes/class-wc-calypso-bridge-setup.php | 38 ++++++++++++---------- 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index aa59324c..8b462a6c 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -702,30 +702,32 @@ private function maybe_delete_page_by_slug( $slug, $operation ) { $page = get_page_by_path( $slug, ARRAY_A ); - if ( is_array( $page ) && isset( $page['ID'] ) ) { + if ( ! is_array( $page ) || ! isset( $page['ID'] ) ) { + return; + } - $page_gmt_ts = get_post_time( 'U', true, $page['ID'] ); - // draft pages don't have a post_date_gmt, so we need to calculate it. - if ( false === $page_gmt_ts ) { - $page_gmt_ts = get_gmt_from_date( $page['post_date'], 'U' ); - } - $current_time_gmt_ts = current_time( 'U', true ); - $diff_ts = $current_time_gmt_ts - $page_gmt_ts; + $page_gmt_ts = get_post_time( 'U', true, $page['ID'] ); + // draft pages don't have a post_date_gmt, so we need to calculate it. + if ( false === $page_gmt_ts ) { + $page_gmt_ts = get_gmt_from_date( $page['post_date'], 'U' ); + } + $current_time_gmt_ts = current_time( 'U', true ); + $diff_ts = $current_time_gmt_ts - $page_gmt_ts; - if ( $diff_ts > 10 * MINUTE_IN_SECONDS ) { - $this->write_to_log( $operation, 'ignored page deletion ' . $slug . ' diff: ' . $diff_ts / 60 . ' minutes (older than 10 minutes) ' ); + if ( $diff_ts > 10 * MINUTE_IN_SECONDS ) { + $this->write_to_log( $operation, 'ignored page deletion ' . $slug . ' diff: ' . $diff_ts / 60 . ' minutes (older than 10 minutes) ' ); - return; - } + return; + } - $result = wp_delete_post( $page['ID'], true ); - if ( $result ) { - $this->write_to_log( $operation, 'deleted page ' . $slug ); - } else { - $this->write_to_log( $operation, 'failed to delete page ' . $slug ); - } + $result = wp_delete_post( $page['ID'], true ); + if ( $result ) { + $this->write_to_log( $operation, 'deleted page ' . $slug ); + } else { + $this->write_to_log( $operation, 'failed to delete page ' . $slug ); } + } } From e2c554cc90ff4c576396afe8ce52c7eeb7bbe438 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis Synetos)" <2484390+PanosSynetos@users.noreply.github.com> Date: Fri, 22 Sep 2023 08:39:06 +0300 Subject: [PATCH 53/81] Update logging order Co-authored-by: daledupreez --- includes/class-wc-calypso-bridge-setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index 8b462a6c..8614fbe3 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -684,7 +684,7 @@ public function prevent_redirects_on_activation( $location, $status ) { * @return void */ private function write_to_log( $operation, $message ) { - error_log( 'WooExpress: Operation: (' . microtime( true ) . ') ' . $operation . ': ' . print_r( $message, 1 ) ); + error_log( 'WooExpress: Operation: ' . $operation . ': (' . microtime( true ) . ') ' . print_r( $message, 1 ) ); } /** From 85d89bd170c776a50446f03dfb1c5761d166b79d Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:22:20 +0300 Subject: [PATCH 54/81] Set as complete if the store is active for more than 10 minutes --- includes/class-wc-calypso-bridge-setup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index 8614fbe3..5da9ae33 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -224,7 +224,7 @@ public function woocommerce_create_pages_callback() { $this->write_to_log( $operation, 'INITIALIZED' ); // Set the operation as completed if the store is active for more than 10 minutes. - if ( WCAdminHelper::is_wc_admin_active_for( 5 * MINUTE_IN_SECONDS ) ) { + if ( WCAdminHelper::is_wc_admin_active_for( 10 * MINUTE_IN_SECONDS ) ) { update_option( $this->option_prefix . $operation, 'completed', 'no' ); $this->write_to_log( $operation, 'completed (10 minutes)' ); From 907b04beb3f21a0e7d7b8b23f131253940203197 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:43:53 +0300 Subject: [PATCH 55/81] Bump version to 2.2.15 --- composer.json | 2 +- wc-calypso-bridge.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index bcdbf2a4..36a6a35c 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "automattic/wc-calypso-bridge", - "version": "v2.2.14", + "version": "v2.2.15", "autoload": { "files": [ "wc-calypso-bridge.php" diff --git a/wc-calypso-bridge.php b/wc-calypso-bridge.php index 25098238..d3b7a971 100644 --- a/wc-calypso-bridge.php +++ b/wc-calypso-bridge.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Calypso Bridge * Plugin URI: https://wordpress.com/ * Description: A feature plugin to provide ux enhancements for users of Store on WordPress.com. - * Version: 2.2.14 + * Version: 2.2.15 * Author: Automattic * Author URI: https://wordpress.com/ * Requires at least: 4.4 @@ -47,7 +47,7 @@ define( 'WC_CALYPSO_BRIDGE_PLUGIN_PATH', dirname( __FILE__ ) ); } if ( ! defined( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION' ) ) { - define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.14' ); + define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.15' ); } if ( ! defined( 'WC_MIN_VERSION' ) ) { define( 'WC_MIN_VERSION', '7.3' ); From fa2f1d382ee801c22350df36ca207e8280e3d15a Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:44:08 +0300 Subject: [PATCH 56/81] Added version 2.2.15 to the changelog --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index 5de26500..9a11c104 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += 2.2.15 = +* _Enter your changes here_ + = unreleased = * Revert all page deletion and delete only WooCommerce related pages #xxx * Purge cache before creating WooCommerce related pages #xxx From c949ecd32be9e2373f18a893bd8a65768fec122c Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:44:24 +0300 Subject: [PATCH 57/81] Add new translation files --- languages/wc-calypso-bridge-ar.mo | Bin 43045 -> 43331 bytes languages/wc-calypso-bridge-ar.po | 49 +- languages/wc-calypso-bridge-de_DE.mo | Bin 37911 -> 37971 bytes languages/wc-calypso-bridge-de_DE.po | 49 +- languages/wc-calypso-bridge-es_CL.mo | Bin 22605 -> 36834 bytes languages/wc-calypso-bridge-es_CL.po | 667 ++++++++++++++++++++++----- languages/wc-calypso-bridge-es_ES.mo | Bin 22661 -> 36887 bytes languages/wc-calypso-bridge-es_ES.po | 667 ++++++++++++++++++++++----- languages/wc-calypso-bridge-es_MX.mo | Bin 22638 -> 36887 bytes languages/wc-calypso-bridge-es_MX.po | 667 ++++++++++++++++++++++----- languages/wc-calypso-bridge-fr_BE.mo | Bin 38142 -> 38361 bytes languages/wc-calypso-bridge-fr_BE.po | 47 +- languages/wc-calypso-bridge-fr_CA.mo | Bin 38123 -> 38342 bytes languages/wc-calypso-bridge-fr_CA.po | 47 +- languages/wc-calypso-bridge-fr_FR.mo | Bin 38109 -> 38328 bytes languages/wc-calypso-bridge-fr_FR.po | 49 +- languages/wc-calypso-bridge-he_IL.mo | Bin 25394 -> 42192 bytes languages/wc-calypso-bridge-he_IL.po | 667 ++++++++++++++++++++++----- languages/wc-calypso-bridge-id_ID.mo | Bin 35151 -> 35280 bytes languages/wc-calypso-bridge-id_ID.po | 49 +- languages/wc-calypso-bridge-it_IT.mo | Bin 37089 -> 37280 bytes languages/wc-calypso-bridge-it_IT.po | 49 +- languages/wc-calypso-bridge-ja.mo | Bin 39486 -> 39641 bytes languages/wc-calypso-bridge-ja.po | 51 +- languages/wc-calypso-bridge-ko_KR.mo | Bin 36968 -> 37105 bytes languages/wc-calypso-bridge-ko_KR.po | 49 +- languages/wc-calypso-bridge-pt_BR.mo | Bin 36496 -> 36528 bytes languages/wc-calypso-bridge-pt_BR.po | 121 ++--- languages/wc-calypso-bridge-ru_RU.mo | Bin 48014 -> 48289 bytes languages/wc-calypso-bridge-ru_RU.po | 87 ++-- languages/wc-calypso-bridge-sv_SE.mo | Bin 35862 -> 35945 bytes languages/wc-calypso-bridge-sv_SE.po | 53 ++- languages/wc-calypso-bridge-tr_TR.mo | Bin 36991 -> 37117 bytes languages/wc-calypso-bridge-tr_TR.po | 49 +- languages/wc-calypso-bridge-zh_CN.mo | Bin 33059 -> 33225 bytes languages/wc-calypso-bridge-zh_CN.po | 59 +-- languages/wc-calypso-bridge-zh_SG.mo | Bin 33059 -> 33225 bytes languages/wc-calypso-bridge-zh_SG.po | 59 +-- languages/wc-calypso-bridge-zh_TW.mo | Bin 33030 -> 33159 bytes languages/wc-calypso-bridge-zh_TW.po | 97 ++-- languages/wc-calypso-bridge.pot | 43 +- 41 files changed, 2787 insertions(+), 888 deletions(-) diff --git a/languages/wc-calypso-bridge-ar.mo b/languages/wc-calypso-bridge-ar.mo index afdc5e67d1fadb11045c78c41ec61b5b9069371a..e8e9f7edcc89824f43c9b9724754d54f3d99598b 100644 GIT binary patch delta 7735 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 A>Hq)$ delta 7597 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 diff --git a/languages/wc-calypso-bridge-ar.po b/languages/wc-calypso-bridge-ar.po index f2a918d3..3b6dd52e 100644 --- a/languages/wc-calypso-bridge-ar.po +++ b/languages/wc-calypso-bridge-ar.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-13 15:54:05+0000\n" +"PO-Revision-Date: 2023-09-19 15:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "هل يتعذر العثور على الإضافة المناسبة لاحتياجاتك؟ بدءًا من عمليات تكامل الخدمات ووصولاً إلى التخصيصات الغريبة، يمكن لفريق الخبراء لدينا مساعدتك على إنجاز المهمة بشكل سليم." +msgid "Hire an expert" +msgstr "استعن بخبير" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "القيام بذلك بطريقتك" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "ألا تستطيع إيجاد ما تبحث عنه؟ يمكنك اللجوء إلى إحدى الوكالات الخبيرة لدينا! بدءًا من الامتدادات الجديدة وحتى عمليات الإنشاء في المتجر بالكامل، يمكن لـ Woo Expertsthey لدينا مساعدتك على إنشاء المتجر الذي تحلم به." #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "اكتشاف الامتدادات" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "هل تسعى إلى توسيع وظائف التجارة الإلكترونية في متجرك؟ يحتوي Woo Marketplace على مئات من الامتدادات الموثوق بها المصممة خصوصًا لمتجرك." #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "هل تبحث عن مزيد من طرق الدفع والشحن؟ هل تريد إنشاء موقع عضوية أو قبول التبرعات؟ اختر من ضمن مئات الامتدادات التي اختارها فريقنا بعناية." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "بدءًا من أدوات تحسين محركات البحث وحتى الوظائف متعددة اللغات، باستخدام إضافات ووردبريس، يمكنك تخصيص موقعك على الويب للقيام بأي شيء تحتاج إليه." #: build/plugins.js:1 -msgid "Extend your store" -msgstr "توسيع متجرك" +msgid "Customize your website" +msgstr "خصّص موقعك الإلكتروني" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "اجعل ووردبريس يفعل أي شيء. أنشئ متجرًا أو استضف حلقة بودكاست أو اعرض متجرك. تتحكم في أكثر من 550000 إضافة." +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "أضف الوظائف والميزات الإضافية إلى موقعك على الويب بنقرة زر. قم بالترقية إلى خطة مدفوعة وتمتع بالوصول إلى آلاف من إضافات ووردبريس المجانية والمدفوعة. هل تشعر بالفضول لمعرفة ما يُعد ممكنًا؟" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "تحويل ووردبريس" +msgid "Do it your way" +msgstr "القيام بذلك بطريقتك" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "تصفُّح الإضافات" +msgid "Discover Extensions" +msgstr "اكتشاف الامتدادات" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "حوّل موقعك على ووردبريس إلى أي شيء تضعه في ذهنك. قم بالترقية إلى خطة مدفوعة وتمتع بالوصول إلى آلاف من الإضافات المجانية والمدفوعة. هل تشعر بالفضول لمعرفة ما يُعد ممكنًا؟" +msgid "Extend your store" +msgstr "توسيع متجرك" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "تصفُّح الإضافات" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -766,7 +770,6 @@ msgstr "التلميحات والحيل وعمليات إلهام التجارة #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "الحصول على الإلهام" @@ -885,15 +888,15 @@ msgstr "في أثناء الفترة التجريبية، يمكنك تقديم msgid "Start selling to everyone" msgstr "بدء البيع للجميع" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "حسابي" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "جهة الاتصال" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "الصفحة الرئيسية" diff --git a/languages/wc-calypso-bridge-de_DE.mo b/languages/wc-calypso-bridge-de_DE.mo index 7b3648e38fd7ce4a595d1c464a565f9d700372a0..b9b0cab34e998e42e97b3e3abe7f6e4e3bef572d 100644 GIT binary patch delta 7529 zcmZwL349b~n#b`M$iZz05Kg5)IVH#;pvX-U4QLYY!2lV#R&+m z;-G`B7l*XCDBvK6&WZ=Kj<_c%!IQ`KI5jpt@mzdKL^dI`I8fAb!NomlS*Mu*SgG;GtsnAsS? zJ@^J*jms^r!ChE_WlU#0zJ|(Ft4_wWz&>~<7NO1`MP;=0mF_@0V={w=ffUs7V9duL z_QLy7GdzNt(OYQY$5@IPS8)!5sMPlA>^cCo7lxu{JQ}lbI_BVP)IgoiAS+SVZ%k5PUzshaj`m|Cd>%IthpCgP~2PcEatqiR-SHa_CjpY$#`h`F@Cit6YDD#d4T6aIuG&1~YK zR%Q;OGW7_b$Ct@+T6 z$D=x2fVp_5SKo*aQGX2C_-5p_yyVbE?SW<3UyHPw0vp;KKy~nmSN{ezfOh@e%yhvP z)O(@YN1;+W5w#REQSXnF-uZ9wY3lV@heNmnRgVpH2h@StX#bg!6j)YMjvCnmsE)Rv z_QoF6jo(2wzBz*yHoM*(SYOmY2H_ekKrPiV)WlArmNsLM`=)G+H&E|{$vY^_p`cy< zJ|4y_&hpkYM^T&dQ`Dx+9_)719Qn_*dlcgKhCNDpPevxSO#DUPZkWyW&c` z6L+Ep+Mh?D7Y2|fvjNrLyI78y$x+4(r%;7!aTnf#!wcNCdk8D3A3#0NeR#Nw>+s4& z?S&VL+zg#Wb^HZ(z$-?(-ye!vx)L0Y4*GBhDznLEH@cgwBWBYu6uV-Pr-MzX-;W(} zD{5x1U=DtRxRX(~Xaeg^7>Rj5oXK^}ypIYc3khVQXE=8iRn4QmFY zmSO?6#Ffaq#5|1a@feOnn-8VaW=O0n2JBjV_JkG(K$*e5{i=a|`?-chvuoYQOa|G4iWGb`8PN+BD z>!_tYgL-Pd!oJv=bR;!{aTHqMG*l+$doDo@U=udP-Kc>cz$W-Ql5KMWwYFWRyL(^& zYRzx*EXU^5??Szh9>DIne>(X;P2p1-?!h-_@Yf8^p6RaP5qz8afLXk5vEj|EJ5I#4 z*nvl79&W?d*z{J{uDFf*aP;Bln1jWOByjP5uW_sG&idZZ{6WbEp~SlXpG$ zH(*Dcjxk(_%~*=Fs0{u%*G+N#d2Xh1@Cw@7p;A8x)!#@|KgHM*qe%+wDXc_|=rPR0 zr*RfHIOx^eml*SR+WTQw>{068crxnMdn;-Q@6LD#W>GK36*vP=VDdu> z$0@vMyED5l;LaeEb>MFglY{Db2xZXVWtWT@Kw}{ zrE%0fKLa(h`FI&F!`)bm+Pq_8?iDh^%NwZr*IvGy{H@i4K>ro%iRCPx*Xe3pMZMI%5Xex#R2#w zUXR`GLQI z5e-97Ga2K#44YBkkLvg>?1NvU9<#3ZxZfLyZK;n!Woiy;(=PPtYf#reh7)i%Y6A7{ z<$CUKMo{REx8P8`3)R74?1=B8p4We%Qa5rPS-?}MJu&V++HeKZWL`rJ_!gecDqMmA zJdcHVbFKRnY{8@+i*ppTrdjKGBv73#AT*dJG<=So2&HW*5hQfHMZ8BeRfQv)Yt`S3 zbnW7Yp0G@!9_O=k1CApuNwdK%q(498vppC54uA66`+5p(z+pr)LTmao@hjp5VhquX z=tnfBj|iS8juD3m?WH8a9MdnSeK;@OLP5tT#8pI@DwiDXyb=F_wm%WkOU}JhH+yXnE~RJlXT<_d#4E(jO9YQA?nA!F=N1iP^-3Bb&llLhIR?$R!>kwEhDL z9p4aN68}l?kfi_U9FF=K*1`5kukZ74is(%w|C z_1XsDX`({Vi>m6OVi6#2v(^ z#MP>B{Kh5yc{86p*6BYk)i6#U9E}M*l81=Z#D$}X!u`beTL0TAH0Q=ky|W!WyL#%G zy~!(Qcz%I;jke``oA5=VJ)z?=;=hRJRN=_unuf#!l-m*isz#2Mw59i7OMHqbAl4Aq z6BmwLE_#s4GsIe=74^S+C;NMfZ;7vnYT}Q?S)wDMHr$ax5 zZNyIE!to}BzYxDC_7IZ^9e*auiED|!5$lMLiABT?;x(cH@dPo7$RhrOND(@Ui7+vR zSgiRsqM+khqLSFH3dcW*&xpH-5yXDtVd6fb9`P>mD)AEWGI8PPM&W%TMl|#qYdkM- zk5@RT{7p2__QH77X9W^YX*?8heBn@hk>zvz zR>1bf6Hz;6#Us|DNFr)g+ahQC0$z9=5)`j z^%wPMFe4K67xVR4?b@O~sfxCN%w%@I4AQByB-58=J;t&B# z_p%pO+EMOPW;>-JJJ!)Eibg6d$FAl~+;(D&G(E6DA{@?-#Up&XBoPYxV?EPfpAm^z zh3PJ0@u0oPD)l*5u&W)e)a|X(C{wd7&RFhOxoLWaeoj=xQgf}vnR%lUoT~`c*uR*3 z>VwW>GLq@ROevg1Y9itEI4Tn1cql*YbIKBo`Ip)3X;p{fLF?y)Se4;KS;%3i>A^6x z(*O5fO1wY9S}ckOl_*{9*tWk{s!NYu8BLTizUyWxb-dTr^^$ynsunNeq^D<>Mk*@o zXzBkNk+PhgaC-W~tf^!|DVyMnmfP{lu#YbUeK9MTa7c+irt9NT25I{*&A;D{g~}Y- zVwHAjC=hB<>I;V#X+baPJ=M0~qq()m3J0fND!MK^vu|&!Pruan6Ix`d_5tU{;E zR~E8Kar)YX6Qj%^qXAzqYHJW9*qVAioQ~FXvhCOj8VjSGDZvSm%Ge-lTDni=J>T7`oD16F0Qf^u%kL|(Lp_&8mo-@ zN`oPd^2$Idny%Ednt6{#`~C#Cs7)_;NJfm@}JY|EP>wT`2b#r z%~*n)QO5iRuEXQVe`;aAZm$XHP%X#axC2w^Umc;q1q( zb(9$$MFUS^EndOHSaX9;Z4vpDB`ZPM10zvpJQkC2CT8M1l!5wC+FjY3{4*J~g&Wf0 zev}y;lzM_vC-4CE&-y5JBW~@hJ9r1BffFdtpT|nPf-;e5{qz8uF`4>0v~e>&iHSw@ ziQ9|F|6LSrVnO7=Ey!nT8_Jr#g|haaU}yXsWx(H}%rt9&PHi6Ur{2%4pGL{R1(fH0 zK$cszC*AUW1Jkfv@*kuy4Oij;T!&?YSQb2rYfz@O7S^IHQ5HWcupH&N)tG^=Vk*9i ziTE*c^3+L8!AoxaU+(9zuH-eF5AsnOC`L)?7#lbp+G#gj@dt<$HfcX+N>lX)mU7DaeDpQI6A4lm;76I^K@b;4zeee&W_I;125F zBde&k4pEAIsS5Zq2T7HoEa^fVj$UNHswYs|dCjTw%?~KZ%r2p%NDb2??0|CrdX$tF zp)AD^l=sEU?&lxkGt^IEE3TtAsaLWtGNA8K_Ef=5dUIBw49v!EGV*2$lDda62cN~h zcnA%=fHJU7q(=slgB!3AGjI>e%w9%$?lj7q@k_h~f5dxniQW&%eHWiPaF*t_7% zD5-xBrGwMB4?9iJOZXbzAoo$0vfV`8aXNaa&p`S9J}ki48x&F~oW_3mrEB^motY8X zll!-!%(MLkkAbe*C%NfC0y)fjvPLpT+a_)(0v<1k!~lEL4iY{I_$>Z`-aI0v6Y$!u~Z-@(z? zRo)yAQsBs{r!j++pTvXIFHYCHeeVpNs>7Ji{j->gSFi(in5i?8g>t_aGDbBB{n&^! zsm|a)ypi5J;Q~yff8~<`Mo?0>9A#}Jx;6A zOL{ln2mqHB>Wt2#`7q9t@oYepLd74>rOqxt(ZrB z56Z4Tj5eObEcV8Ng*t@+)+L4ejVPIlVIi(}@9##**glkYUdQY33>M&JlmX?$exg&K zhx6&66u;wx4U6<~TC=zJNLS4mRN#lo?gm=$Sr>$<%k@8hjQ%#hYrC`Xgq0 z^@Pr&Gw_8bJCzT7C=EY~GV(nrDSQbF@hHlx`YY^?m&F90;f%@5`m>HQz%tCjdDsj6 zC~N-!%J=uBx4{UTle+*?}TQNt@|6Zq{)SD>qC<99m>ZR&~bLd}6Xs*8JcpBTHV(&aC`)l1hv0YE3H!6NW0@32P{_uKD4U|% z)x?LXhfvnMeMG+x3h*rTBK!f=0$D?$(45gj5C>j1`Bl(w( zk8z_EPhnroXwt`P1j-l3;43&4yJ5;w-9ZnO-98naHOJ}H{kR5S!U0&`%r7rC>tgIj zed{uvkweSKzohIOHzX6^VmY?^nSKF{M>!R1P&Uz4l-+&+<$E9EP&|p>VCFq~(_KOK zr|NXCo^cb(_a8!;z&0vv(6a1?%qvgvZ~)4zN^ z!gA^btMorc7vgy82XO}`-mib_{R$6Kzl1cQ_OI3x9L4&O?3gks+{_1O@YMtwT&vIb zr|a}gy06!pb1=$oF2~Eb1pA=1LGPJIFrE4<$QaZyWck&M2lVkfiZ@U{g=v_uQ6@$j zJ39qth4SWFfzogb%BK7s%JI8^^2L8*9;R&4nd^nJiEnl5Gfa(-V$NoDe8rA*w7vPUu=(*N|DiriA0PzKzCv-(r4z&d;p zE3mLdp9(L^DT$*j@iB~%apyYYn&JAKYa6m#WdpTcpHR4qC?}-zWEz@-w-cWea>-zB zA`TLNA-*KK5L1XJh|gsGzoYON(RTft!qdbr+iqYlLe^BS$wWGx&BYf9SyQ=g)2Ls& z3T!3k8shpr{*Cy6*iK0QY7v|yju7(+FR`E4O33vQag^vG755s8?-9QtcDeV?V`m07 z9{)Y2{~DN3Ar98{*yRCyifnmmB+(Br!j9iwU{jAY{k?j5tKdm8)_7(0qaN0JoluSKRVUM|TZ=LPd_npNS`lS%h4@ zi3LOl1|U}hafeglM7Z}jsm@RO=2MtyTp$i zZmz^X5OSR*-X&fk9wIgqa&^|ISMeR<98pBvNXRve_>p*)SWUb}tRv*QOr#T8!~`OR z2s&qwf@EP0Ay+ohN?b?0Mf?wOn0Sd$4D`2fFR_j2O8ry3nK(dvLC9q|Kd=1=Q_SaC zxqL)1aSO3rdOk(rpTr(wD6xZ(D?+po|3UnM=tKkZS8poiwkxNtfWryftuMu%L>h67 zxJc|HI=X{+gtA=!B{SbbT*n7p(IiF@JBduX@3EIyPcNe5Miqd$(=v;tTU@l44Q~`|EuXBh(PB_gh9? zFl;OhM#F|>nqIrim=F#I4BHGZ@zIxoNd_th{>qJhNrgH3`L|zJ=8K|ye}BEO~Vri(wHx5dBetAZ&O|KPx!aViaC8 z9JT6A%dq^l>?yCuX4!1pVoS0{vbWe1vey=SEX(lHtx;q88B^Gp6JTo1e2vE=?1f0{ zfk<;ae?dY@d}z)6N%0cj=;Zint8-#(oS(UPrQ15^n^nUjWqL^Q5_8!6<5b6v#^aSUob?k z&3qJ_#0F-p`h%Hz8{1AY%c2ca$|jP1 vPXilV@5Zao4W8$wzTRUs>m_xbu-J!svd+G0d1uyrE%U2J#P@92-QoWLQFP8! diff --git a/languages/wc-calypso-bridge-de_DE.po b/languages/wc-calypso-bridge-de_DE.po index fb081ea1..5d44ec40 100644 --- a/languages/wc-calypso-bridge-de_DE.po +++ b/languages/wc-calypso-bridge-de_DE.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-14 12:54:03+0000\n" +"PO-Revision-Date: 2023-09-20 13:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "Du findest für deine Anforderungen nicht das passende Plugin? Von Serviceintegrationen bis hin zu ausgefallenen Anpassungen – unser Expertenteam kann dich bei der Umsetzung unterstützen." +msgid "Hire an expert" +msgstr "Engagiere einen Experten" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "Ganz auf deine Art" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "Deine Suche war nicht erfolgreich? Engagiere eine unserer erfahrenen Agenturen! Von neuen Erweiterungen bis hin zu kompletten Shops: Unsere Woo-Experten helfen dir dabei, den Shop deiner Träume zu gestalten." #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Erweiterungen entdecken" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "Du möchtest die E-Commerce-Funktionen deines Shops erweitern? Der Woo-Marktplatz bietet Hunderte vertrauenswürdiger Erweiterungen, die speziell für deinen Shop entwickelt wurden." #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "Bist du auf der Suche nach weiteren Zahlungs- und Versandarten? Möchtest du eine Mitgliedschaftswebsite erstellen oder Spenden empfangen? Wähle aus Hunderten von Erweiterungen aus, die von unserem Team sorgfältig ausgesucht wurden." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "Von SEO-Tools bis zu mehrsprachigen Funktionen – mit WordPress-Plugins kannst du deine Website individuell anpassen." #: build/plugins.js:1 -msgid "Extend your store" -msgstr "Deinen Shop ausbauen" +msgid "Customize your website" +msgstr "Deine Website anpassen" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "Du kannst WordPress für alles nutzen. Zum Erstellen eines Shops, zum Hosten eines Podcasts und zum Präsentieren deiner Arbeit. Mit über 55.000 Plugins hast du die Zügel in der Hand." +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Füge mit nur einem Button-Klick zusätzliche Funktionen und Features zu deiner Website hinzu. Führe ein Upgrade auf einen kostenpflichtigen Tarif durch und erhalte Zugang zu Tausenden von kostenlosen und kostenpflichtigen WordPress-Plugins. Möchtest du wissen, was alles möglich ist?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "WordPress verändern" +msgid "Do it your way" +msgstr "Ganz auf deine Art" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Plugins durchsuchen" +msgid "Discover Extensions" +msgstr "Erweiterungen entdecken" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "Gestalte deine WordPress-Website ganz nach deinen Vorstellungen. Führe ein Upgrade auf einen kostenpflichtigen Tarif durch und erhalte Zugang zu Tausenden von kostenlosen und kostenpflichtigen Plugins. Möchtest du wissen, was alles möglich ist?" +msgid "Extend your store" +msgstr "Deinen Shop ausbauen" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Plugins durchsuchen" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -766,7 +770,6 @@ msgstr "Tipps, Tricks und E-Commerce-Inspiration aus unserem Blog." #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "Lass dich inspirieren" @@ -885,15 +888,15 @@ msgstr "Während des Gratis-Tests kannst du nur Testbestellungen aufgeben! Um Be msgid "Start selling to everyone" msgstr "Beginne mit dem Verkauf an alle" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Mein Account" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "Kontakt" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Home" diff --git a/languages/wc-calypso-bridge-es_CL.mo b/languages/wc-calypso-bridge-es_CL.mo index 35f1d1a180bd0be059447885cdf8defc27d03a26..f9561a6d2ba5d1937031be5022273e75eb2acfc1 100644 GIT binary patch literal 36834 zcmdU&3%Dd#Rqrd37ZV^PAqgZv>I@ksfjK=hA>lE3Oy-rDfq9XcBt(T+r@PKMJ=5LQ z>FPd{Ga>RwgdoC21p*{M<|=B?5inki0gTQOA4C){qE`$O5rz1;pj-tnsQ33@Ygcu3 zpEDu(Z)CPuf5)T?arT{e*8Nk{+@MQ6g?9>{)tia8b1HsX}TIkUp+gD z?gbwK&j8>1^e8$9{7Asx15e`oE8xlC*Fc(xz7_EMo)JZtbN(c75BO4WEqEt50e%{M z68JUnDd2ZNwRZ|H(e*PxE=4hTHMkCZ5PVDc{`zyH=uFP1!8PEkL3RBI_$KfHkXxhe z3{LGfK)tsGo)5kiRDbUU8DjJaQ2qE^z%PgE-vF0!{gh{MfMLnX9rZfw}T8Vx(n3% zJ`Sq?zoqlzqUg`SvpD~&=kgu+9dI@Ht1JCIkAQ0DA3;5L;ssH(6Fe8xc$%R4aR;b= z{0x|bN5DJ52`1s4;3vRWf%~54_uUI}OLRY|dHqXp8Te1&lR*(p{eB8~GFSse-xqAS<91N@-vPo>(cPfh`2=_h_ysTn9|2zvUe6%j1U>}55S(Um-Uz-I zyd7KtG58q$BDe+o0;v0*gD{*5em^L>?gvGOKB#%W6+}d%+rg8-!{Pj%@cmKnbgut4 zsCGUNioSmXz6<cR>MeqgS@{4?&*Mg#34yqro3+HbG_1ybF zwf|vI?R^r|eV+j(Uta{(-qZO<@7)2ay*co7@V0P%2Y46f9{^$bXye7`HZTP>|F?pd zfIkYt%F(Zbdj8Ad{F|WOe=awPF3$y@2G&4b-vo-DyFksuD?sUuhr{>Z0)L+KCol;M z;DtRs+KYpF-$0vc8a=sk=VenO;`tb$uH^CG65>**J2#O!S0*W6`y3E@- z1LVKxT>jy!=oO&)`*u+8{RL3-^>I-A^&lwve+K**_zh5e|DnrWuiXcV?q^-${kss< z^Xoyiw+qzxUj@QyQ4XRCqMrs)b0NJ3zJfC*T3_giTR&C3qwF7VwwA9{{i1?DKXP*ya4!LCNu2gnG|$=vh#F@T*rj zeI5qY?$<%h*R!|!^H+eHw<+*SumdLGhd|Nwv~A8`6W~dlUjeQJuL{@!pUn9?!3prE zL5=ITz^8)W1l9h@+nqj714Y->pyqQkD7s$<>U}qYqQmPzL?BuK&jP;j{p%Q@c#J{i0bJQ;jVIKLfyBIoY} zAx(5Qn1hdiSAwtPr8W-m49-6To(6syRD1snif+eW?Rx5LQ1f*O_*w7{Q1>6$>+^OC zDEWI2D7ybKco+D$;rrY7xt{s}sD6JK)ck%HR6oBBioPd69O1bE*MgGgt>7~72JjSc zKloH|4un;sH-cw?4}vlHMetlOy4J5h6V&}{K=I`Ua0Qrv4}ot4Zw4FJ@ec4|@Ri_| zuRx~3_kns(^LoAmkAQRFTfg645uJdrNG^X6JQF+!z72c}2nnKR|De;g7x1;V%kbj1Jv{Pf$INnfLo8FKcMbAFNvbx0WStOfd2~W{`FICueSwE zK=Jt@@M7>UK=H|0b??Uo;A=Qv1AZL*F!&2#yMZnN&q=-ATfygX{$rq?{}oX4{=48) zz|Vmi$CtzPC-BmzbABrLe((bD@4?>zMaPfM_&9z86d(LC_$=@%;7afWUas*>g0BN# z2;K?a2i^_tYr4Gt6Zk&PS1}3i1s??0fXxH$f4&D?$N9g3=YcP2x&L)ND7sFACxWjA z_5H2k{HMUvIsYJdJopJv{X7b4{GSE&{9l3hfZqn64}PHSbooP2`t1wg4)B}c72xKM z%fYSSlR1AssP>M4y8i)C^7W_T{2#zmI6o!x{+tcM>e2JS-QaEDTJVp+bHNk4&iBhf zwR<`EbKq`p1^6v+0(|z3&X-q$FX8;9;3eQ~puWE!d?EM{DE>X8=kxWffER)4*Vcf0 z!MixW0Tds62ULH~&7ua0G7d(zJHeAV{}d?s`7F2<{3`ep;F_C!{0rbe zbN(;jh2Yoc-HxAg$j7@L6g^%B?gOs@HNPJOF95#@o)5-1`#f#|)xTGQ;*S*kL-5Bz z^{4*oDEc9=1!`QM2A>0d1C;!neT&b>8c_YY8e9v$8dQ6~7_NUF)ccSBVW-<9c$o98 zpyc}zQ0+E35#PN9RQq>=;{RU;SAib`pACK$6unP+t-t4N@I1~pfos4zxD9+eI0=3M z+zg(Au)Yo416~aN1$ZfV*6W>KSA)9#v*3?{4}rVEnOpH$z+VAj`RK;meBK`he}waY z1Gj^>and?2ihdtl$@!&kbh)U5FW`I*R6jomik_bWHQ!$c^_~-M_ju?U@C?rX9DFAD zkD&C@sc&-no)d5fcrMp}7_5Qs0VOBD8?OI5C^YA9H{3SHb6Ve&$<{6>tOC z2j2#&-4ovG=P`)tjotyS1HS`a3%=;T`Fq|9UdH(cK*(!-oCB}mcrq9MH@KWbG~359 z%b~wN;P_LHr|5*gleky?zRu2u|2&V6CvZH0?@!bV`1_CT_rmAzqm3u?IpugTTzet-*Bte5{yFgbI0oVTv)~km z@-y2&@uPIhBuDZ0>*2%GxaX;%pFhR5XL0;Y_)dWOGXF}vuD|y?*uUS;zlee9H(hv{ z{^9RQ9Fn~S4#cedyNXZmIsTkumrnRQh5Hi!XtCyToWC)gSK(uvoWOU-bNn%%U%_!V$1ic5 z&7r^D4(98w<@3LA{1(SkcxH9@?*D>qj{nZ_T#kR^*vir2(4TVn@9~fJ?@i(Jt-@tb zeBu)~^yB_)8n?4{+Udvh*&t4Osa?uCt@$|Xr18PoEUqV=I8RgE(2Mha)=O*gzASDh z2ddZNWG-p8lBpIgWN|u|_U36|Rorc*NuEBpGnIEQy)21md+GG$D_7(z<7VUXl~YNl zllE?y8ua^FXXO=x?o2OfSOZDiO_~j!PCA#ZPOhlY-)Q;1*=A=ZSNn}D?xZ*Mmq#ns zp5KVGK|ju>;}sY2xt_IoWk0P&D{@Xc)6JPdFKxv6pk7b&e0tDo%}38=&-L-N z<{@4&ok5?p)uNL%o}NyVKCfmBgPCSWz3%q1xhCTq+!Uvs*@RX^`P?2H{)4;m&Ayqz>VBPVgQ)q+4hql|sS zjP#OX+Gl`wIYVkEo@|LwV!^q;q*h8}fjRrY=x7iR+ z*iFWc<&=a;&1>$Vy_;Tv_YqN;{fh0n_1j&aitdToy`tHiD`dfaa|Ju!_76338z8Y zk9%p-nAbq^e$wj~tQ>#owLcjrMUO)R%;I#mDsHxunKWNzEi}@+-fJQZS;yzD>GNK4 zp9F>P)NOG!h?3|x^PokBUF*bKvuvgXM|OD69IS)*rv1Lyo3jC&lR(=f&(j7}==7VD zd%Hxhdtn#c6-^)Mlie^bVwYQ*m3rS&ueu-xRNo_a1Cc z_oI!PGLx5$N#3j*A$qhf?ZAIhs0EEoL+C;;ool8Cr7Ym_TC~w+miGm@_m@W`OqYKZ3{7D9DhmTk(~?X*`gY^4o& z!B}1`&nC>c6iR5W+iT7x^?9es9zTiqWa#O6C^GVG9Bsla$og@e=aE{>Ak55#(wm6; zJuxY2yQX_#H>5|(SBf_2zpE2#@qt+}JB*74tV=vsCV-kSw;V1=a*f_!!oSSG<)@r5Z>==(3*Y-1nJ2$Da zb7Z|gQ0GSOEe%F_H}itfFMW5gCc~z256!(B-X6SOUK2jWnjTYrm1{PD6&LiI{Z@J* zTG5?B-5~$0P>!-{WA0^DpBM)b5GWc*idX`lAoG z?u8Asm)2AHPKDcG7dc@Zka$sK960s{EbC(lkE6|)w|YOefTGlAA+nGHgqKDl;LXjv zj#Jj-LH|&p*6`Ypz4GBjkyfU#KZ!(?{xY_bpiLH&@z-Z9zzzYl0$VA8DU1kVMbg3v z=e6x-u4$K7tRSmzgq05#+-a!j`GH!r87U6-;9xS(sRg5(aU&2hwdd`d``gOqlU5(+ zaJH8XW@h6gxciMtU)xNTtb}tN(MUI=fArl%!^8fx=ONsnSDz(=VQwxx8FE6U*Uk=l z+E}<=s$CZ~>!CDoh+>#Eh_f?2qu;-gmj z=ENN9mSuHJ24cKmJZYIEJRe?IaHn5lLhywOGVtD|^`{Y?5w1jk;y{*a89Ou#A8XN; zq=yZLzU`zV)y2C8J(DLaSt>25FJ}lq!&DJfH40fITM%ZYBVBAt(U?3~E1H*opGI4h zakA`)6n^3Q5y&L{Rq=r|?TUj2-HFJwLU6rI3HlWeu_`KKMIK${Nrr~UxuzPW0)n}& z@qOBu!u^e|YId6WY|!@RNbcRTdngg@L5mobRMyNu1Q^SSSWvbov*1yM6r#^VskjTr z1-f9|2!njk;=K<2sYP3%WQe)QzZ7{A(Rez^6&Fr734`U6$SO-?jYfBh=i<3$GUPT3 z^Ux}Fxzi=Xx$xxV7cj7StUN>2NXYCeK#zBk_=3-r12Q4f{8(e?B&8vg?<%_8$-5}B zhK)ffx}YsIBqd<%ddX)>*$@yG8g=x`8N%mLLuTI_Z-y82n_X8N#9+;tSu{Vcj!Ufi zKEltPmGVM$F3I!)5|587Qc6b{3XNy}+e&W_RMvr`!c-6zGG4$Ncjga_f6@-{Ar zSqeUUReS8(Us)rmtOmJ zP3R0V`UsvSil(leTtMs-}qtr37QANV2KATxy3iE=tH=Dv7Gk~QYBPW~W zM1#BwwTnI>JBw$KSR#wZCJ4MG_;!b>y_|e^5d~_L_DwFOq;3*C14>f{t}Xa04%yTH zXg@^u3wVL(IdS2CtRstf+$Xf^YNf+$(KZXm(UY=t=F5bjptMUdDZG>jjPJ*6*f4(B z7ScKv4KJB&S}KPVZBydg++lN`{an_cPY@nG=Mj0djp^YZA~ceG#w7NICEeFY+dT^c z!oMrApQtcYsyhL6GTOdz!>(xi=E6ZPb@ldkH^V9w;unSU5t&@_;`b_rib_@o!ib0; zB+{WfaNDD&Q@3{%+~S240)vHfH^(Hn5;<)5d{T`0+8%PJotww1G ztnQFWWzgnpvb3hjLQM~+lZR6#HJGMVrRQX=+q;Oi{2qI~?3byVotB?=@5rWev2}}f z&c_=wX)aNC4F|dB+t}ii4ZeXV&q|DRExJ8 z?^#TJEXQq8xKTvI%U9&fA8k?iKT}`JHSNb6x&J4i_jp)|j8)d(ONSr!5pQUP_n^o3 zeR5&0+I+ordLr6wdCns90P77*O|W=m+P1J?wB-p=*~FxeA|xWl4an49<^^{kQd>0lx2p`*$%;%B4qaROQ_V?Yv;CzG}u zVXLCG_*ybb)AOz(iqsnvu%%%sJrAm7I;9mX#Z#o0tnsQ79|laG+4_QNff!UusF(E3 z&x=V97Pp+`Xpd4^gh-$*SC1~HzI?z`!v%`hLonr|lgh-0wg|nn8c?K6VAdjh1TsVF zw(>Sbe3R6BER%;dUvDcIKJyeAt}CE~++n%CWPvdXCFGakGmM4|YNANaHHxX*N(|<& zx3IEcLt6H?hk&V#icLa4$8SWFE)FV(V_zaACgocR!I(zXH5{uHfk_StXpyq3nPTy& zlC`qOJ?3+6Ph~GkdNUP_+c+DDl6s$#Ae#E%y zafn-d-FP@%Na8S?jlePkWXVV-VEiE}#SB4u!s`@_%PEQ1zTlEdTTURBKX@#>wr~#g8p*nz)D3Ff zE{SL=p^$@NT3%PV*h_C5SQf`mWh6Z2vsx6~ZhNqLk!*;sXSg%YNXhR@juoXA$^bHv zF{L+IuZOn-Kg$VG64m@7#gg&`5gsM^7vH5doAL$`Z&5qOXN%hjdVOy-t!XZiPoWrO z@e+>D#xbI{RjdR{2bzirSx^^jCeYNbEtCZZR!Jb{b|}E~eWWjFccoA0N1&B#An{G8 z?-_kI4y#VqTzP*ngP^g(mX{Do$#Z+&QoZmn_bGY8(ILw^R_0f(UxkIv zHck?;lP0s*gF%QIWodFUGqpH4IwA`O+Uj=Pb5~NCXXd@UK`y_zz$j~uR?!KiYw#L- z8QJ(Y37NU_wxVB*R~%&Yr^m;Bz(-!{8Xx4??V%nFRWe-QF>O>1rBWoaR12eZ6dr}C zuydq)1*ss5R(drg=4mNAviP-hn5=J|%Ed@VM6Ip0ay{K50DGhNe*z{^*7{A~w~Nw~p+w%k;Q=Vdh>)y%-4C9~LiP+7`o8p<=ieRy*C z0-|dxvRppQ4lmbmD!rK{lV^+7E{uF*^*L>M%JLvAw6xWCl^4@XlNcQNX0Ny-C_P-o z(6+?Mk`+aL%9Qez?&9FA*!z9dyiT?Oxpg-v*jwXStt6{_R*T3Zt1+Ua8(6J{Tj?0w zuQhQP#LPo?&|{exqerTkob*1{5GY&e;S_^1+QTFa%L=S!n7wp0DruXdUWLb4yh&S_ z0Ai0gZ)a4&dbFY*4fCBtwI7^iG^2(u_j!Oe^XzAJF{|Q_s={WH6bCb<#CT6DT$4rJ z9oh0gfFa|035NxDRuyelCk)$?=AOb#(3+KHTB(sOMUvT67$XkOp{a54jWR8pv??eH zm89Q@h#z1s5KnSMGu3qichJj4FPl=hba5M@+6RIvB3U%sp3g7jC)$UXS=4_b#ddB{ zm|FoBj?L3VJ?;J7#8w}Os+V`Z!Y|j zYlcg=QSli`uf*G$^biP`^o=axx%7sW;piH42hH=Z=2fKzJc|!xzM9^<*im1~$1ZDI zs)|h+u3B`h3Rg|HSfkN(*pDuN4- z#DrDgH7GT1_8Cc~bhh#t{%g&5sTA7SYf|o5y)DMsb?a8W-@TyG`vz0PLg|rj_OX0X zeVB98*oA=$^H5e3R3bKKOUO|hX#xM3H4!WL*lalJ#3Y&*-+Jha`a;nKid4F`hYRG*j0twY- zXCk^DW93yVHpOB0fvzg>Pg=Gvhy+r9$zV|0q^=P+7AuQsuw5h8j-?8$;L>mH%g@AR zR@7hyoqjGSw@y+9f^SQE*>Wb+N_T7-T*O*#i4#@gE*~zI1rKjiQCMXjmGM|gAs26C z5m&2TW%?Z_GKJE`FhbJ8`d?@p_L-y%4y96fOX_M_->lYsM+3BPWe2S-UkNj-fK5N858^~yUS-wldQt?CCnerR&MVS9i`^AbwT6_k$*`D_kSKvyi2!@`z~9 z?#Zk1k<8853>&YDFIsca3ntgRWOB_V@!A)!TYJ&EwQHWghQDPyx9{9Cd9Ax7>*BSw zHOn@6I5xR&zRQCW(bY_4vvaAf@IuJTui1Ci zC$G|8qIGeHB_~ev%P+bV&d|rpJMqNj@!Ct5y<&1J)WJK;dh6n?t*pOC24wX`wTo+O zCX-foHd(eK6zr^v)BJ`_JC^O~W&6+#1L=<#!yLUN|jZ* zffK=B)=2fGgOm(TV7Lx3-^$8P~DpL7r`Ig zL*kDxocztg{p@(CXRD6hU96;(s}o*PSC$mEQ?gGyIWQxD7cwA@qziaeS-J1-=+D1= z!0Toyo|L-^1HhjH;=qM_J4Zj}Tkv?My8SL8?P@#l5QkZN#P;DObg)j^1uBxGBLI(B zm>N*;5w{l(^FY{-muWxV(YsfWZ^akOi#>T+j)#>D-D6@QUWexhyKq2GB+|cg-x?vOgs=VUHx?-paT302E^ios@Xg1f<31g#BCi zU}zyDBXc?&l9-7tfIS9|xc3t|2Ygntq1Q{=s^t+Qg*Vtdg~p)_E=}57I6_*g&NHYC zTDG<^b<7Wia@Ks#jsdfvMsPBVeORRy?|c;2rvox%kd2b|CI(UzbbiT=DF+0v>ZUG> z{NQl1W`6&G0KDF#M@2@_nft zMnbJotx>fpb(8)aX+hE#HWBVsFY|?a5jO1}Bp{<_iR#=eX*RcT82-$v`v|Mtj*zSJ zh()0gHlj^P?uO>6JVXmO(enFWlcqI`9dSV-hyH4^hcyGXkA>ucA~hft;^M585%>+YAcL z9Sjl&Xs2Sq(q$vhq}U+IAkWIROJzaPDAS6-RRF2D!um2lXe2%9r(v%&ysAP;N^7BE zj$4_koiE%cOtb8@ltb>}6>CwrWHjV62NR;)Tdamax?umA7`8^5DV0|*Mm_rTct36* zdq+QpgMf8cS1n@eKrM72os~cpe22)_VO(}FX5>$H>h_S5@i!N=N>DvVO7bl6ZUUbf z*EHSUAe~Cs&FH2?E=mr~VRGNJM;~1VZNNli2 zpdy9Mq>s|R-@uwfGamF=c05GSs;w6jGHh6j^F8S&_!t(KN_*Uc5sfu3W|5>^74f#x zg(J*JXcPL3Y+YnSGo}zj`oy_qs z%R&qHU<=&_o1LyjM<1XS7+q#vR&k_{r4~ zjF6z}o#4WjOw%=q!DWG{ zQo+V8m`l5?(tz*YLg9vuwqaT@y@|C?7nH};R$+(Dxf$yc=1op50R$V-O0{44Xm4Ds z@rQS4p51ZRq?h|Qi4JBl#Zzblq8;c^4IrFpxxJz`Ybb`z5D13BH45fQjN^5|J=jGW zu+0R^{34g=C%mv^B074w^0J9|*orBC_eX}!z;J{(Oo=qpJ?JT@nXL{XS+$og_p7AH zEI4+3rmN@-*T4!vIVoHV>pGExg>e$4TD*nEv6$!#G$s_vS#jZ6nSUd#Vx(?w;aPeW|{>He%a()e3F$AbpSWw#;1JWmDZyAj1VR4 z`GkLM)2Cj$pEW-fEXffrD~wJJ6$2iGmN9K5D-XXlSP4A9w))7ibdz)nmS8ta^rE{ z9^>v&7a2{L$;;wYPejsAvSF#DkX|#TXAvkGE2w=$#EbpF<4C@Dz`A)VOVtaF(Lu#}OjCM8|N7;QUhg{|0I{ zPWGu1jIdv|()lr&SVf<(17QsA;T2YXTyRQp2wni+7bIF0OvTcC&t$;|MP%4zdwxjk zjgL;d=QQy=z_wv4uY+sYU79mTNRkjS^o0ijShDD)!O&eNFz z>1J6p33@d#vC6v%A=(~|629Ntwiu8fQ5yBi2=QhPXJj3c zgc_OH)GcYsxVVW1k-BZaB z@e#x=nWjjsABuw=7|jD({`44wmeH+}dUb;f52@N^ z>Bkf{yOGp1*{$*P!r^+8-(_*8*P0e=>gt4x?gPQ_Gb}!tiS!{!SjLw*ATJJWhupR@ zAB6}MM3qcS2-#2Yz3QIU!!9^_*cYhSuFIIdC%wa^P;@;iQ8Lw4mw3c+YT`ArG^}~j z6ry}2RO-;sq8r;Tjvam4XgnktnS4b)<4MJ6spKuMutX4&PUt71S9p}QN!wb(#vD?S z7*dPvtW)LNJQ^y#$LM$vW$7pj-$I@VEv6JdNuN!o8d)~PcUQ`y+5y&0w9=I+fmSC4 z%$ib>6D_y?j@mO^H1-%lu_C|^yL_co6bTlqFU5T$SHD*aB6QL^QI+AxvmycsECqpy z<7X!d|I&w0xH`r?V}Yei1AM~7$nbB5TZ*KJd^=zJz~|VapKm}(!A!%jeH~5)i5g~1 zdJ6&$-J``p`vf;{?2)Uq7^=!Qdu{1XnpXx^3zKMd zJf4(zG7DRY=^O-w)%P21cq^7gf*^-JLg2OcHP52wRTH z3faEl$J??r2QA8{gCt9|XH*>Roz`QO{?P-T!C=v@13PRY(6kI@nGh*@N`6A$LBFNG z%J}_X2CK}b?Ib~#i-k~xoD`6!k<3B#R35Zbtc^{#4R)kuPy#lkZ>Yl?+Nn{t&+womRk!hKN6225G?UD^Td`SL)ITVE}BHrhwv*d4!499R8pkXld>a7h<1ZA07x%7n6U@K@aKdsaS zRc)uo8VmPO|KmyPg?lLNWBug2?2Qh!Cvr0+qnAaHZtGo3^a(OFk*4Dy_p3~-?Kvz@0o(y*rGt47F1^F_g z30-O4rQGQdy~zF51lrbZ6ucb&ep>IKZDvU8OUesQ37%2O6sn9-0aI^;n5DB@gzh17 z3RbaV2vkP~IkiMl$ zajjZ(s%2Q3e;kdf+oKko>HtK$o3v0^xbLB$HT0=i!j+qP0ne_1o|jyRmqo^Kv9qcQ zpHN+f`&_z2jG%gbD`lc&(k&qbjm?^4;K`nwTr8ysN{13Uq0_Z0Q?3RbOL-tK3DF#H z@G=WFwI99vd`(q-K!J(&z8ypDko9-DE1U^>W)+#9RS{c=Qv%uG!y?+OxLQi+XjMw@ zGhw0)ZCh_NnRpcusEkZs@IfP2L6$AHse;LNUny1!>s;QCVLLCl~>=#Mk`5_g8oFx4tmzH!~UaIY;L1_h4E>nKtrQ_LXb>f*$Oxnt9ne!HqL zuc*rbdE%w-wN80}9qxl{YL!L_T2RKrc2#PF%qhgR76}uBDb-Nm4125l{98&L6c&e6 zPpblD4B)X=zFqND*6hMMTA?SHoI;zkNqq`U7#In@2@5f1qK!lZnhJv|&zPzz!hR%v zsWq&!3T9}SLWN4tn_ChaF5j2F4n+u&loQ) zco@PDuZSooU;D>qUG zNeQoZ+K)dl%|mhwSSVQH5iYUM9^D6hY{?o@*gCy6G%B2-dx1viGp)0EvRdU@@?5P> zfl)l#gSj>-OvB)^s;rJ^Eefuc3fiSaKh}0Uw5*f{sA5IlsO{qj1VPawXuMV_9owt# z-iB(oyb{GMBGQ>tJkM02Gr}4e8rmxKT%6o|LIU@)mFS>DQ<@sjKVdS$*G`QP95A&5SzUdziTD>c&p2${C?O{m5;~lP+8{Z15pY=vA41h z{5T0i*PJ4*fdEch#XA@k75bQ7Q7(UgpwUrcnnt?%>yWgRMusfZa_Ip3) zz_7@A;C0|9ctIGJXyLF8hF`SESQar0EWfg^C0Xo*mz&uYMqN_HURP9bl1)MNh$B2{ zjLV9{K#^FWAeIkv$GKZ>o0YwM6+KKD7}|sW=(^d2){DmQ)a7s+G`}PH3&?*P87*f;B>#4k7j9!lBI2WSl$ zA5|7kUCF!b&0)ZmmC|Be-O3Nl;|&F{)Xnm{<>lkj&m~##C_IAd!BnHXVzyMmXA76y zXN68-J4uSNDK3Rfochg7jps~I(#4MxXnB+0BA^2;{ceZ!7JaEYjVxJ&A0beBzgLt~ zTE}>(bm4;2z%aZhOjfhViIf*%oiat}W2;7|ruK$4A5_$oYQ>$u=o+utmrO8CO00+x z3OzUCq)TMSrq#sHY!TyBN{gY6MRKm$7U>V&S<&VCF#~q$S!Gr^Z_x%Kum&bu{2s&r z=huo>_&+G&S}_QOB--x(ue(wND=BhnXZ1S=yltwuKjGI69`6$uMf(DVAsu~+f<;0d?nQrmp@v7(Wul5k!%C{6`kRYXorF2`<$%zL@4^Tnp!R1g_O#zn;N|cuzia2R zG5%8uWu+81(c?;Ntf5waSiz~kXITA(=CUw=C(&G3faW17Is8;TD*Y6yAe6zes+*!X z&wa{@^JPPaYW?v;QyqLj^X9)Du3!$;F>q$LT5NXCV zETE2gd7+fpDyN8#EvmE$s`zz}UK7dB6IkY`7@o6~J4Hc;1$_)hL<_0;m%0KS4iBg58O;^c$iVX@cPn=)|ncZbt#KY9-c0FW81UApbr&QiEH9DHML{?Ji{jb#}ln#^&A0z ddJ`TeDQCiUuf}h=QW{2NV?)dE+Y-^M!(fB4+90ANZ%E!wk+te2;{M=Cf{L zW~)71D=foCJ#DpH9cz1RW$Ed3>U4beu(q~!ZMBE(?)Nt{SoiRo&%OWo&;8%W@BR-L z_IG-(-R3_N8}Xo`93uu0uXj=EGCI2PLCNZ=)T5Y<{qYn=;&&K@SFs$`&D;YO*d3d( z2kyd~aDVvvlh}{;QJkZcU%gMI4;PYq@h~hzdC*cEjLj$ydJ3cQd6cpJC4BvD98LQ) z@~67ThD<`~Ckuz;Ol(IV&cn3cO1;4I)jBE}T*!}8ss>Fg#n(|r+KbUiI|JpuRX7q4 zU?!eI18seks>KwP8Q&9j2g-`IVprUcJW?IRK|Ei*NJVD&De_G9IY!%*`Uwxvjz~~y z6h4j8(I+VPT|gPgHB84Lj8+~{j;%O9-2NxZ%KZmpP?lv7^gzFKm`O$UtT60klLs8kCc#mzXLAIbGMFaocmtcY!3s2zpug6c7l^_P()b3yiQ z1Wv*t%*7^@0USda`6-m7Iu~w#kMg@;QC6g9QfQ`wQSKXsqp=93zebc?IE2#QM@g)| zjO1eY!d0X%6~X$*Ql?-&4#!liM!CN^+-^mgz>6p|d;?`5@1bnz1&qgU@eoEBA=|?) z^d~Ddj4vWnLVKBw^5ANeAKrE|SJ zQq@-|D{~EHYy4d~WAvfA;Y*l_viIMh9LFm-1PAlMSk(-awu29u;r-Zzk0AM_k{DeV z9E~#IqHudI=Fnb%vh>@K^zo~QsmKZ(L)oh{xC!Hjh6eBm$}xKnN8)u{j_LepBDUgo z{21>*iw$OS>NRY@FHn-PiX&3asoIV_LY>Kw{``z~MCdr=qWo|!%F;EWELk(&gc@(g zz2WblL1v&{K$+=jl-#(4vJ$^wA@*U^eX$J3U>!=*?!!JjU$s-o#=qeM_#@85?Mz!{ z{s|wlMUlJ&?!*j~8QqT+_%_M|64|dk;>y# zO z;+j0xzc-b?azQ+WoD}sXl258DXYVr{fz=qrwBJEHN(XtY?@C;SRro#1mP{p)=Awzk zcnoDlui*^5m3=U9#~9Xs8I|X_AWPJLY{*oU8H_;L`vQ!^A~bL=%KcvC^{>|B0vkDk z?X(a{#)s}ZhY7U5M&_nE-4e=$LO&IGzzTc@SEF>CRuo#YQP_j_ION@=W`wWX zQ9AUYEb$JMrQL%Au??l4x3CF6#7A-Ngi!AMfct3sGbSqaM=I|igI7x#c2|5NY#T<< zK7#Uq<0yOiCQ6o{#!~zad4?K0Df9wbjgmtTqU6*QDEA-3csv%7ZM-zsRd}e5+yeQuvMCtbwN`Kc; z1~`QMlIKnkQ>nZ{MfU0W`$$${uHP5|~onMn~2!daMwPMnVWaTi`f$?ny&Lhpsc zDD7|XUL3@J%9ghA@n`&bHsf$oIa(fCveXKt?xtOgOkTZ-4jTiQ6MC_1;85ps{UFLf zK1EsDpHYsdQ5kxV&QDooeAFt$MAYZAoDE$@qZzJ=maC(A! zO*6Pu5G+sg`53W~s3!7>^@JQn>4^7TOK6897Ay}FAiBxDoG(%?Vv5d1e+lroe!BzHefWt&`~jQ8%@o2bx4@!n~l+je4A)>+;N@cVU5l;|gPw+nhP>TskMJWpi zIbaVH9EsrnNf0cVd`fDXL_5Jt<3^FUMDK8G3{Jc8O(>0HX#3;%kk?Nx!K+aDh-5;F zMFfZq#6048LP{1PZ<0>Lc48|rhmax%bZM{_I{f3P7ZGysr94Q)6H5r*LVi_GrH<$* z`>2$K8&9Do8i)f#6ETyp6I+O7L@&ZY>>x%Ft;9h>%0yxvF^rJ1h=?S-L^t9|S)V~v zHWLPsO(^|E{M~wef}!6{NQ})k>g`US*HSs*ibt39YtjGiw_h(yoT^I)^wT>BjM9te z_0=f@t9rOyjULOeR(UO_$LuzfJY)>>&ve z4R)(ew+w0RWLSD=nme+_=dn92k4Hb0mLK2IjniY)o9^Y7x4~i7TABKnv@NkkzJ?`k zv(7TSF2gh$OuJJb9$FS%>vA}(TCd&Z)JultX4bphmeFYUE;UxWd~Ul7mVPa(f8a#+1)H|=&PKWn?^4sb+@sItC+Z^w zTl9{CcGh=*K3uR#UoA}6w~jukr;ORw)$OXacvkY*iTeF9F*xi>LSh zZQl(x`$k4so=lxTk=*%RcdE`sqT5~CQFl19SboN!^jp^A=n`_^#ItVGYw3@cWa*Jhw+1Th zeLCslsyH3%7#dUJwAb2Qs<_r_@VfNNj)cIe`t_XxNh{KA(Jq4|t+lf%`WLsMzxM9a zA9+4u)UW9l-zfc=@0`B8@}bCb+4(xlt-oq4(f?YV-ffO0yT(vin5%16+Vr~hf47zE z?8-R(-wogNEH{_9JhC1QZl6_S>PZ{-2FjZfZGl(sYKze8TQ(cI?vEcRc-nWrQy0 diff --git a/languages/wc-calypso-bridge-es_CL.po b/languages/wc-calypso-bridge-es_CL.po index 72ff0a3a..127521a9 100644 --- a/languages/wc-calypso-bridge-es_CL.po +++ b/languages/wc-calypso-bridge-es_CL.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-07-24 11:47:14+0000\n" +"PO-Revision-Date: 2023-09-05 18:12:10+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,439 @@ msgstr "" "Language: es_CL\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Hire an expert" +msgstr "Contrata a un experto" + +#: build/plugins.js:1 +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "¿No encuentras lo que estás buscando? ¡Contrata una de nuestras agencias expertas! Nuestros expertos de Woo pueden ayudarte a crear la tienda de tus sueños, desde nuevas extensiones hasta la creación total de la tienda." + +#: build/plugins.js:1 +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "¿Quieres expandir la función de comercio electrónico de tu tienda? El mercado de Woo tiene cientos de extensiones fiables designadas específicamente para tu tienda." + +#: build/plugins.js:1 +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "Desde herramientas de SEO a funciones con varios idiomas, con los plugin de WordPress puedes personalizar tu sitio web para cualquier cosa que necesites hacer." + +#: build/plugins.js:1 +msgid "Customize your website" +msgstr "Personaliza tu sitio" + +#: build/plugins.js:1 +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Añade funciones y características extra a tu sitio web con solo clicar un botón. Mejora tu plan a uno de pago y accede a miles de plugins gratuitos y de pago de WordPress. ¿Quieres saber qué se puede hacer?" + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "Hazlo a tu manera" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "Descubre las extensiones" + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "Amplía tu tienda" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Explorar plugins" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "Haz que todo funcione con los plugins" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "Consigue características mejoradas y correcciones más rápidas compartiendo datos no sensibles mediante el {{link}}seguimiento de uso{{/link}}, que nos muestra cómo se usa WooCommerce. No se almacena ni registra ningún dato personal." + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "Crea tarjetas regalo digitales" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "Empieza a vender y aceptar tarjetas regalo digitales para aumentar la fidelidad de los clientes, obtener más ingresos e introducir nuevos clientes en tu tienda." + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "Fideliza a tus clientes con tarjetas regalo" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "Haz llegar tus productos a millones de compradores comprometidos que navegan por las plataformas TikTok, Pinterest y Meta con publicidad en redes sociales." + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "Llega a más clientes a través de las redes sociales" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "Llega a compradores activos a través de Google con listas de productos y anuncios, que puedes crear y gestionar directamente desde tu escritorio." + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "Promociona tus productos en Google" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "Prueba AutomateWoo" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "Impulsa las ventas y fideliza mediante mensajes de marketing automatizados que responden a los datos de compra de tus clientes." + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "Automatiza tu marketing" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "Prueba nuestras herramientas de marketing integradas para llegar a más clientes y aumentar las ventas" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "Haz crecer tu negocio con cientos de extensiones" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "Llega a más clientes y haz crecer tu negocio con nuestras herramientas integradas de marketing y publicidad. Mejora tu plan a uno de pago para desbloquear nuestras potentes herramientas de marketing y empieza a hacer crecer tu negocio hoy mismo." + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "Prepárate para hacer crecer tu negocio" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "Ejemplo de apariencia" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "Ejemplo de productos" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "Todo tiene muy buen aspecto. ¡Sigue así!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "¡Bravo! Hemos llegado al último paso. ¡Bien hecho!" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "Solo quedan algunas tareas por hacer." + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "Te damos la bienvenida a tu tienda Woo Express" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "Te damos la bienvenida a %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "%1$d de %2$d completadas." + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "¡Ya casi estás listo/a para empezar a vender! Sigue estos pasos para configurar tu tienda de prueba." + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "Ocultar lista de configuración" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "El proceso de configuración de la tienda satisface mis necesidades." + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "La configuración de la tienda es muy fácil." + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "Agradecemos tus comentarios." + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "¿Cómo ha sido tu experiencia?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "Ocultar esto" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "Mostrar lista de tareas de configuración" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "Opciones de la lista de tareas" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "¡Enhorabuena! Dedica un instante a celebrarlo. Cuando estés listo/a para publicar tu tienda, lo único que tienes que hacer es mejorar a un plan de pago. Esto también desbloqueará las dos próximas tareas en la lista de tareas." + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "¡Estupendo! Se ha creado tu tienda de prueba." + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "¡Estás haciendo un gran trabajo! Un elemento menos en tu lista de tareas ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "Ha habido un problema al configurar los impuestos automáticos. Inténtalo de nuevo." + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "Durante el periodo de prueba puedes configurar los ajustes del impuesto sobre las ventas, pero no recaudarlo. {{br/}}Para empezar a vender productos, {{link}}mejora tu plan ahora{{/link}}." + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "No cobro impuestos" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "Configura los impuestos manualmente" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "Elige un socio fiscal" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "WooCommerce Tax puede calcular por ti los impuestos de tus ventas." + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "Automatizar impuestos" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "Automatizar impuestos" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "Dirígete a la pantalla de ajustes de las tasas de impuestos para configurar tus tasas de impuestos" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "Configurar las tasas de impuestos" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "La dirección desde la que opera tu negocio" + +#: build/index.js:1 +msgid "Set store location" +msgstr "Establecer la ubicación de la tienda" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "Selecciona un país o región" + +#: build/index.js:1 +msgid "Post code" +msgstr "Código postal" + +#: build/index.js:1 +msgid "Address" +msgstr "Dirección" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "País / Región" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "Al hacer clic en «Configurar», estás activando tasas de impuestos y cálculos. Más información {{link}}aquí{{/link}}." + +#: build/index.js:1 +msgid "Configure" +msgstr "Configurar" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "Continuar con la configuración" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "Al instalar WooCommerce Tax y Jetpack, aceptas las {{link}}Condiciones del servicio{{/link}}." + +#: build/index.js:1 +msgid "100% free" +msgstr "100 % gratis" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "Con la tecnología de {{link}}Jetpack{{/link}}" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "Cumplimiento del nexo económico {{strong}}único{{/strong}}" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "Cálculo de impuestos en tiempo real" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "Lo mejor para las nuevas tiendas" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "WooCommerce Tax" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "Consigue más ventas" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "Mejora tu plan a uno de pago para desbloquear más funciones y empezar a vender" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "Estás utilizando una versión de prueba gratuita. Para acceder a todas las funciones, mejora tu plan a uno de pago." + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "Ilustración de navegación modal de bienvenida 1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "Ilustración de navegación modal de bienvenida 2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "Configuración necesaria" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "Genera y gestiona ingresos recurrentes y obtén depósitos automáticos en tu cuenta bancaria designada." + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "Vende a mercados internacionales y acepta más de 135 monedas con los métodos de pago locales." + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "Ofrece a tus clientes el método de pago que prefieran, incluidos los pagos con tarjeta de débito y crédito, Apple Pay, Sofort, SEPA, iDeal y muchos más." + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "Entre los métodos de pago aceptados se incluyen:" + +#: build/index.js:1 +msgid "& more." +msgstr "y mucho más." + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "Navegar por las extensiones" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "Añade tus productos. Muestra tus productos o servicios y prepárate para empezar a vender: añade información, imágenes y descripciones de tus productos." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "Importa tus productos. Muestra tus productos o servicios y prepárate para empezar a vender: importa información, imágenes y descripciones de tus productos existentes." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "Añadir productos" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "Importa productos" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "Añade tus productos" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "Importa tus productos" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "Elige un tema" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "Elige el tema que mejor se adapte al aspecto de tu marca y, a continuación, hazlo tuyo. Cambia los colores, añade tu logotipo y crea páginas." + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "Elige un tema" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "Plugins" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "Restaurar" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "«Qué hacer a continuación»" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "Lista de tareas de configuración" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "Restablece la visibilidad de la lista de tareas «Cosas que hacer a continuación»." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "Restablece la visibilidad de la lista de tareas de incorporación principal." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "Utiliza estas opciones para restablecer la visibilidad de las listas de tareas de incorporación en la página de inicio de WooCommerce." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "Incorporación de empleados" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "Una experiencia de navegación personalizada y optimizada para la venta." + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Ahora es más rápido hacer operaciones con WooCommerce. Obtén más información sobre nuestra nueva navegación o anímate a descubrirla por tu cuenta." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Desplázate más rápido con nuestra nueva navegación" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtén consejos e información detallada sobre el rendimiento de tu tienda cada vez que accedas a tu escritorio de WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Conoce tu nueva página de inicio" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Elige una nueva dirección de sitio web para tu tienda o transfiere una que ya tengas." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ejemplo de añadir un dominio" @@ -79,43 +491,53 @@ msgstr "Datos para transferencia bancaria directa añadidos correctamente" msgid "Please enter an account number or IBAN" msgstr "Introduce un número de cuenta o IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, {{link}}mejora tu plan a uno de pago{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Métodos de pago sin conexión" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Ver más" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Prueba uno de los proveedores de pago alternativos." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Otros proveedores de pago" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Ofrece a tus clientes opciones adicionales para pagar." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Opciones de pago adicionales" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Prepararse para aceptar pagos en línea" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Elige un proveedor de pago" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Se ha producido un error al conectar con WooCommerce Payments. Inténtalo de nuevo o conéctate más tarde desde los ajustes de la tienda." @@ -132,245 +554,257 @@ msgstr "Si aceptas compartir {{link}}datos sobre el uso{{/link}} no confidencial msgid "Help us build a better WooCommerce Payments experience" msgstr "Ayúdanos a mejorar la experiencia en WooCommerce Payments" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Si utilizas WooCommerce Payments, aceptas regirte por nuestras {{tosLink}}Condiciones del servicio{{/tosLink}} y confirmas que has leído nuestra {{privacyLink}}Política de privacidad{{/privacyLink}}. " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Prepárate para aceptar pagos" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "¡Sí, cuenta conmigo!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Ayúdanos a mejorar WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Ha habido un problema al actualizar tus preferencias" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configura tu cuenta de %(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Instalar %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Puedes gestionar los ajustes de esta pasarela de pago haciendo clic en el siguiente botón." +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Conectar" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Proceder" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ha habido un problema al guardar tus ajustes de pago" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s se ha configurado correctamente" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recomendado" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Colaborador local" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Finalizar configuración" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activado" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Publicar de todas maneras" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Hay que comprobar unas cuantas cosas antes de publicar tu tienda" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Antes de publicarla" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Elige una dirección para tu nuevo sitio web o transfiere un dominio que ya tengas." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Crea una lista de productos" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Para empezar a vender, añade productos o servicios a tu tienda. Crea tus productos manualmente o impórtalos desde una tienda." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Crea tu lista de productos" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura uno (¡o más!) de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Recibe los pagos" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Puedes revertir esta opción en cualquier momento en Ajustes." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Es hora de celebrarlo: ¡ya estás a punto para publicar tu tienda! ¡Bravo!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "¿Estás preparado para lanzar tu tienda?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "¿Has cambiado de idea? Puedes volver a hacer que tu tienda sea privada si actualizas lo ajustes de Privacidad." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Visualiza tu tienda" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Enhorabuena por publicar tu sitio de WooCommerce. ¡Dedica un momento a celebrarlo y compartir la noticia!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "¡Bravo! Lo has conseguido." -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Publicación de tu tienda" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Copiado" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Descarta este banner informativo de prueba gratuita." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Esta es tu tienda de prueba gratuita en la que puedes empezar a explorar las funciones disponibles. Para obtener más detalles sobre la prueba gratuita, haz clic en \"Más información\"." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Ha habido un problema al guardar la ubicación de tu tienda" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Al hacer clic en \"Pagos de prueba\", aceptas las {{tosLink}}Condiciones del servicio{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Mejora los pagos con una opción sencilla e integral. Verifica los detalles de tu negocio para empezar a probar transacciones con WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Pagos de prueba" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura y prueba algunos de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Es hora de probar los pagos" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ejemplo de pago" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Todo listo para empezar a probar las funciones y las ventajas de WooCommerce Payments." -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Solo unos pasos más y estarás a punto para aceptar pagos" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Los depósitos no están disponibles durante el período de prueba. Para empezar a procesar transacciones reales y recibir pagos, mejora tu plan a uno de pago." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Los depósitos no están disponibles durante el período de prueba. Para empezar a procesar transacciones reales y recibir pagos, mejora tu plan a uno de pago." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, mejora tu plan a uno de pago." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, mejora tu plan a uno de pago." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Consejos, trucos e inspiración de comercio electrónico de nuestro blog." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 msgid "Get inspired" msgstr "Inspírate" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Descubre las colecciones" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Comienza rápidamente con nuestras selectas colecciones de extensiones." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Colecciones selectas" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Añade más funciones y funcionalidades o integra tu tienda con otras plataformas y herramientas." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Personaliza y amplía" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Aumenta la productividad en tu tienda: añade extensiones" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Ver las extensiones" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Personaliza tu tienda con extensiones de WooCommerce para que funcione a la perfección con tu negocio. Mejora tu plan a uno de pago para tener acceso a cientos de herramientas y funciones que te pueden ayudar a alcanzar tus objetivos empresariales. ¿Sientes curiosidad por las funciones disponibles? Explora nuestro marketplace de extensiones." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Personaliza tu tienda con extensiones de WooCommerce para que funcione a la perfección con tu negocio. Mejora tu plan a uno de pago para tener acceso a cientos de herramientas y funciones que te pueden ayudar a alcanzar tus objetivos. ¿Sientes curiosidad por las funciones disponibles? Explora nuestro mercado de extensiones." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Mejora el nivel de tu tienda con extensiones" @@ -384,8 +818,8 @@ msgstr "¡Es hora de celebrarlo! ¿Todo listo para publicar tu tienda?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Pon en marcha tu tienda" @@ -394,6 +828,8 @@ msgid "You've already launched your store" msgstr "Ya has publicado tu tienda" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutos" @@ -406,9 +842,9 @@ msgid "Domain" msgstr "dominio" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Añadir un dominio" @@ -428,18 +864,19 @@ msgstr "Para ofrecer un proceso de pago fluido a tus compradores, hemos potencia msgid "Meet our new, customizable checkout" msgstr "Descubre nuestro nuevo proceso de pago personalizable" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tEn este momento, eres la única persona que puede ver tu tienda. Para que tu tienda esté disponible para todo el público, mejora tu plan a uno de pago.\n" +"\t\t\tEn este momento, eres la única persona que puede ver tu tienda. Para que tu tienda esté disponible para todo el público, .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mejora tu plan ahora" @@ -451,15 +888,15 @@ msgstr "Durante el período de prueba, solo puedes hacer pedidos de prueba. Para msgid "Start selling to everyone" msgstr "Empieza a vender a todo el público" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Mi cuenta" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "contacto" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Inicio" @@ -471,7 +908,8 @@ msgstr "Este sitio ya se ha publicado" msgid "You don't have permissions to launch this site" msgstr "No tienes permisos para publicar este sitio" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, mejora tu plan a uno de pago." @@ -492,61 +930,61 @@ msgstr "No se ha podido hacer el pedido. La funcionalidad de pago está activada msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Está tienda no está lista para aceptar pedidos. La funcionalidad de pago está activada actualmente solo con fines de vista previa." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack Stats" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Estado de Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-Spam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Discover" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gestionar" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Extensiones" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Clientes" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Informes heredados" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "Estado de WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "Ajustes de WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Pedidos" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Mi página de inicio" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Comentarios" @@ -554,18 +992,26 @@ msgstr "Comentarios" msgid "Save big with WooCommerce Payments" msgstr "Ahorra a lo grande con WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "No gracias " +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Comienza" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navegación" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1053,7 @@ msgstr "Detalles del pedido enviados manualmente al cliente." msgid "Invalid order ID." msgstr "ID del pedido no válida." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1188,21 @@ msgstr "No se puede desactivar WooCommerce en el plan eCommerce." msgid "Store" msgstr "Tienda" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Estadísticas" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Ciudad" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuar" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Saber más." @@ -765,6 +1215,11 @@ msgstr "Extensiones de WooCommerce" msgid "Extensions %s" msgstr "Extensiones %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Ofrecido por %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Creado con Storefront y WordPress.com" diff --git a/languages/wc-calypso-bridge-es_ES.mo b/languages/wc-calypso-bridge-es_ES.mo index 34d426126c5aca0b422204f10c654275a5a8958e..7ad1e64c14ecba7412c04b7fe2098f17675991e1 100644 GIT binary patch literal 36887 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 I3PkjO0d>j(p8x;= delta 4934 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 apdS3tX5D`CoYLearn more about our new navigation — or go ahead and explore on your own." msgstr "Ahora es más rápido hacer operaciones con WooCommerce. Obtén más información sobre nuestra nueva navegación o anímate a descubrirla por tu cuenta." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Desplázate más rápido con nuestra nueva navegación" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtén consejos e información detallada sobre el rendimiento de tu tienda cada vez que accedas a tu escritorio de WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Conoce tu nueva página de inicio" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Elige una nueva dirección de sitio web para tu tienda o transfiere una que ya tengas." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ejemplo de añadir un dominio" @@ -79,43 +491,53 @@ msgstr "Datos para transferencia bancaria directa añadidos correctamente" msgid "Please enter an account number or IBAN" msgstr "Introduce un número de cuenta o IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, {{link}}mejora tu plan a uno de pago{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Métodos de pago sin conexión" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Ver más" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Prueba uno de los proveedores de pago alternativos." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Otros proveedores de pago" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Ofrece a tus clientes opciones adicionales para pagar." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Opciones de pago adicionales" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Prepararse para aceptar pagos en línea" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Elige un proveedor de pago" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Se ha producido un error al conectar con WooCommerce Payments. Inténtalo de nuevo o conéctate más tarde desde los ajustes de la tienda." @@ -132,245 +554,257 @@ msgstr "Si aceptas compartir {{link}}datos sobre el uso{{/link}} no confidencial msgid "Help us build a better WooCommerce Payments experience" msgstr "Ayúdanos a mejorar la experiencia en WooCommerce Payments" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Si utilizas WooCommerce Payments, aceptas regirte por nuestras {{tosLink}}Condiciones del servicio{{/tosLink}} y confirmas que has leído nuestra {{privacyLink}}Política de privacidad{{/privacyLink}}. " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Prepárate para aceptar pagos" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "¡Sí, cuenta conmigo!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Ayúdanos a mejorar WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Ha habido un problema al actualizar tus preferencias" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configura tu cuenta de %(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Instalar %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Puedes gestionar los ajustes de esta pasarela de pago haciendo clic en el siguiente botón." +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Conectar" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Ejecutar" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ha habido un problema al guardar tus ajustes de pago" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s se ha configurado correctamente" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recomendado" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Colaborador local" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Finalizar configuración" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activar" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Publicar de todas maneras" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Hay que comprobar unas cuantas cosas antes de publicar tu tienda" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Antes de publicarla" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Elige una dirección para tu nuevo sitio web o transfiere un dominio que ya tengas." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Crea una lista de productos" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Para empezar a vender, añade productos o servicios a tu tienda. Crea tus productos manualmente o impórtalos desde una tienda." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Crea tu lista de productos" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura uno (¡o más!) de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Recibe los pagos" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Puedes revertir esta opción en cualquier momento en Ajustes." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Es hora de celebrarlo: ¡ya estás a punto para publicar tu tienda! ¡Bravo!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "¿Estás preparado para lanzar tu tienda?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "¿Has cambiado de idea? Puedes volver a hacer que tu tienda sea privada si actualizas lo ajustes de Privacidad." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Visualiza tu tienda" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Enhorabuena por publicar tu sitio de WooCommerce. ¡Dedica un momento a celebrarlo y compartir la noticia!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "¡Bravo! Lo has conseguido." -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Publicación de tu tienda" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Copiado" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Descarta este banner informativo de prueba gratuita." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Esta es tu tienda de prueba gratuita en la que puedes empezar a explorar las funciones disponibles. Para obtener más detalles sobre la prueba gratuita, haz clic en \"Más información\"." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Ha habido un problema al guardar la ubicación de tu tienda" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Al hacer clic en \"Pagos de prueba\", aceptas las {{tosLink}}Condiciones del servicio{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Mejora los pagos con una opción sencilla e integral. Verifica los detalles de tu negocio para empezar a probar transacciones con WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Pagos de prueba" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura y prueba algunos de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Es hora de probar los pagos" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ejemplo de pago" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Todo listo para empezar a probar las funciones y las ventajas de WooCommerce Payments." -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Solo unos pasos más y estarás a punto para aceptar pagos" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Los depósitos no están disponibles durante el período de prueba. Para empezar a procesar transacciones reales y recibir pagos, mejora tu plan a uno de pago." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Los depósitos no están disponibles durante el período de prueba. Para empezar a procesar transacciones reales y recibir pagos, mejora tu plan a uno de pago." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, mejora tu plan a uno de pago." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, mejora tu plan a uno de pago." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Consejos, trucos e inspiración de comercio electrónico de nuestro blog." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 msgid "Get inspired" msgstr "Inspírate" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Descubre las colecciones" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Comienza rápidamente con nuestras selectas colecciones de extensiones." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Colecciones selectas" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Añade más funciones y funcionalidades o integra tu tienda con otras plataformas y herramientas." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Personaliza y amplía" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Aumenta la productividad en tu tienda: añade extensiones" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Ver las extensiones" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Personaliza tu tienda con extensiones de WooCommerce para que funcione a la perfección con tu negocio. Mejora tu plan a uno de pago para tener acceso a cientos de herramientas y funciones que te pueden ayudar a alcanzar tus objetivos empresariales. ¿Sientes curiosidad por las funciones disponibles? Explora nuestro marketplace de extensiones." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Personaliza tu tienda con extensiones de WooCommerce para que funcione a la perfección con tu negocio. Mejora tu plan a uno de pago para tener acceso a cientos de herramientas y funciones que te pueden ayudar a alcanzar tus objetivos. ¿Sientes curiosidad por las funciones disponibles? Explora nuestro mercado de extensiones." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Mejora el nivel de tu tienda con extensiones" @@ -384,8 +818,8 @@ msgstr "¡Es hora de celebrarlo! ¿Todo listo para publicar tu tienda?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Pon en marcha tu tienda" @@ -394,6 +828,8 @@ msgid "You've already launched your store" msgstr "Ya has publicado tu tienda" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutos" @@ -406,9 +842,9 @@ msgid "Domain" msgstr "Dominio" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Añadir un dominio" @@ -428,18 +864,19 @@ msgstr "Para ofrecer un proceso de pago fluido a tus compradores, hemos potencia msgid "Meet our new, customizable checkout" msgstr "Descubre nuestro nuevo proceso de pago personalizable" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tEn este momento, eres la única persona que puede ver tu tienda. Para que tu tienda esté disponible para todo el público, mejora tu plan a uno de pago.\n" +"\t\t\tEn este momento, eres la única persona que puede ver tu tienda. Para que tu tienda esté disponible para todo el público, .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mejora tu plan ahora" @@ -451,15 +888,15 @@ msgstr "Durante el período de prueba, solo puedes hacer pedidos de prueba. Para msgid "Start selling to everyone" msgstr "Empieza a vender a todo el público" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Mi cuenta" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "contacto" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Inicio" @@ -471,7 +908,8 @@ msgstr "Este sitio ya se ha publicado" msgid "You don't have permissions to launch this site" msgstr "No tienes permisos para publicar este sitio" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, mejora tu plan a uno de pago." @@ -492,61 +930,61 @@ msgstr "No se ha podido hacer el pedido. La funcionalidad de pago está activada msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Está tienda no está lista para aceptar pedidos. La funcionalidad de pago está activada actualmente solo con fines de vista previa." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack Stats" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Estado de Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-Spam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Descubre" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gestionar" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Extensiones" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Clientes" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Informes heredados" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "Estado de WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "Ajustes de WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Pedidos" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Mi página de inicio" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Mensajes" @@ -554,18 +992,26 @@ msgstr "Mensajes" msgid "Save big with WooCommerce Payments" msgstr "Ahorra a lo grande con WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "No, gracias" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Primeros pasos" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navegación" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1053,7 @@ msgstr "Información del pedido enviada manualmente al cliente." msgid "Invalid order ID." msgstr "El ID de oferta no es válido." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1188,21 @@ msgstr "No se puede desactivar WooCommerce en el plan eCommerce." msgid "Store" msgstr "Tienda" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Estadísticas" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Ciudad" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuar" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Saber más." @@ -765,6 +1215,11 @@ msgstr "Extensiones de WooCommerce" msgid "Extensions %s" msgstr "%s Extensiones" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Ofrecido por %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Creado con Storefront y WordPress.com" diff --git a/languages/wc-calypso-bridge-es_MX.mo b/languages/wc-calypso-bridge-es_MX.mo index 75cc609d62ac964892fb535ae6973cff3e2dea52..f488db3d058341f24e8e6e3a149fdeb6135279a5 100644 GIT binary patch literal 36887 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 delta 4961 zcmYk;3vd)g8o=>h43Gc`5*`5p$s~aQNeC>DBp?LBJ3JEt0Td1<*%1~tyI~&$dAJ}b z@xRl_egi=Xof_aR+*O<^8{%iQ1KKf8DdQ)7@Wp zPi61H7T-3xqMxQFJgO)sh#ti0mP*|~Ut2yX1KTTg5Z%}vFJdBogGqP`D^T6ZJy415 za08~`E^Lhloa@hFH`>Q>rczOLj!I`PWObl3EJo>Q3HHJbC>=eIZSYl;vHj7xeiln; zUqb#=yHwi@l;;e@emDi2FoLr&x1&-g>0hm(lFx;qos_CU6Q|;7l#zB|bkfd8xo;)* z$HQ2N7tugh7o}=38)e21IqpEoSR=N=14x(ZScKIZpdql+67HlTp%=2`Lzr2NqJ1H7j-;hjP6V zWl!9VlJW)&;0D}`H?auUrYp4xkK@BQf*;BCGnjxsqGZI?({3jrtDsVPl7AUl78hjg z3UCaT;$U2lGJq2(Bfp5UsXlYs*HM1=Ka`BL&#-6O3+286Sc0V}&uc*03ooEN?=KnT zUq*7(xo``4mP#N$lFDoxiv2JL7oyz1!D%<5OyG5t8Jw8!&M`Q3MzDBqKRS+ZUj!a|IWrgDgi zypgVA2fU5Rn8cY$#Wa*tk%uNuLfMo@Q8wMXPWz4_O0hc1KdB70zy8>5YHC{(qk_l|2Dm1YS zPoQM6&hLQiJR9@zSq^SFF+Z>b`6rikq5q82-G_VTg{xI_TS8H*ei#>u( zw7(%O(((Qg_I;mWSK9wT=B8SVwD&@Bl!|n)9ACuyoOW)how7nq;rejo-K5H$>q}4` z7)D9)c9hia!=88qWq|MEdc1%Kapov{@7%=ww4-^Wm3oTGS!D2PF~e?!ha8V!0_`T0 z4o;w~!FaQg%2xTUE)*qEwh*{AD3)O*5V< zh?gULK26Lg77{~=wS*i+c@XatwTh6kk*FcM5;7R(5MQ<+HW$e*$yOVj3t611_&<*? z;W1(l5h5NTq@?P~w2pdFT0(RuEm>{ZG0i2H%6Q@x=Ry}8>C{^~3hRg>sZfp*gNT=< zLD@v~kJotpA#1J<5G#r0L;}HijH=^QvWa%YZwM)}y7Kyxa)Nk_xI-G0CkfeIykO$z z;BJ(%g4j*4_UZwmn2<$ex5od0hxos_qLeYChQlZQvB$^0b8b23#TgbVQGK`oQuh}2nA(@DF;zM3Pg9%=RDniKNlVTAu z;(lT_@hTx@AR%v(7Q}X9D>0LhA_sIyyk;N%yQr5Ea`2@*N~95s3Eo0cRY%1`G?)EU zra6u0Q4{sVVPZWoh42!aiKRpb!bj{N1`v(JvxJn<#2TV6A!PxPNQ8;D#B-9LOezl( z2H_@@{vz!`y|$~N-|w29>Ne`U{z%wTgPcl8mv`Hw|JCh)UYb5ZPwml7@9Z%^FPhy& zXZNg52?iQMmSL?7TmFzY5PPF%E0@mAoT@KmUe!yoKGc`8C+LwmkLYVTQSI*CHKE>X zdGw~tlVUwW$sGd{%AP8}RGJeFqoT1%j5*;0-S^?h8bMMkp-pE9D+Z4J4c7%;+1O#iZwzC1Ktzf!bW z?DNYGZEJ(X1M?$m*4d-aIvU6V`t4{{ssLBrj}!`<$fIeoQDU!Reyr&r`OFMXhS=>sAC zRmE%iLghKVv1+D%cveq+Y1SaUaQ3>?YAa~?%+N0>wPK^Hi(LA~oEfqGb33^7uDh@6 z-1$>=&Vn3$a{gQT@PZAx{lbiv^$aKs3ENv1j6 zFi*WA`{q}VQ=R~u+#68i^jx!t-tF1dx=em-2K9MsQJZo$!Ks&mX4ul7EFP$bEZG{n z$J@DuF01aOyZQR$l>5E4{J5;vst*TL`Ixfls(c(H_B9V9P#C*hx1~j_WO=EpO`yPF zu diff --git a/languages/wc-calypso-bridge-es_MX.po b/languages/wc-calypso-bridge-es_MX.po index fb0c742d..7adc7ce7 100644 --- a/languages/wc-calypso-bridge-es_MX.po +++ b/languages/wc-calypso-bridge-es_MX.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-08-21 12:17:11+0000\n" +"PO-Revision-Date: 2023-09-05 18:12:13+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,27 +11,439 @@ msgstr "" "Language: es_MX\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: build/plugins.js:1 +msgid "Hire an expert" +msgstr "Contrata a un experto" + +#: build/plugins.js:1 +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "¿No encuentras lo que estás buscando? ¡Contrata una de nuestras agencias expertas! Nuestros expertos de Woo pueden ayudarte a crear la tienda de tus sueños, desde nuevas extensiones hasta la creación total de la tienda." + +#: build/plugins.js:1 +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "¿Quieres expandir la función de comercio electrónico de tu tienda? El mercado de Woo tiene cientos de extensiones fiables designadas específicamente para tu tienda." + +#: build/plugins.js:1 +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "Desde herramientas de SEO a funciones con varios idiomas, con los plugin de WordPress puedes personalizar tu sitio web para cualquier cosa que necesites hacer." + +#: build/plugins.js:1 +msgid "Customize your website" +msgstr "Personaliza tu sitio" + +#: build/plugins.js:1 +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Añade funciones y características extra a tu sitio web con solo clicar un botón. Mejora tu plan a uno de pago y accede a miles de plugins gratuitos y de pago de WordPress. ¿Quieres saber qué se puede hacer?" + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "Hazlo a tu manera" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "Descubre las extensiones" + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "Amplía tu tienda" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Explorar plugins" + +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "Haz que todo funcione con los plugins" + +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "Consigue características mejoradas y correcciones más rápidas compartiendo datos no sensibles mediante el {{link}}seguimiento de uso{{/link}}, que nos muestra cómo se usa WooCommerce. No se almacena ni registra ningún dato personal." + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "Crea tarjetas regalo digitales" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "Empieza a vender y aceptar tarjetas regalo digitales para aumentar la fidelidad de los clientes, obtener más ingresos e introducir nuevos clientes en tu tienda." + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "Fideliza a tus clientes con tarjetas regalo" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "Haz llegar tus productos a millones de compradores comprometidos que navegan por las plataformas TikTok, Pinterest y Meta con publicidad en redes sociales." + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "Llega a más clientes a través de las redes sociales" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "Llega a compradores activos a través de Google con listas de productos y anuncios, que puedes crear y gestionar directamente desde tu escritorio." + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "Promociona tus productos en Google" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "Prueba AutomateWoo" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "Impulsa las ventas y genera lealtad a través de mensajes de marketing automatizados que respondan a los datos de compra de tus clientes." + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "Automatiza tu marketing" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "Prueba nuestras herramientas de marketing integradas para llegar a más clientes y aumentar las ventas" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "Haz crecer tu negocio con cientos de extensiones" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "Llega a más clientes y haz crecer tu negocio con nuestras herramientas integradas de marketing y publicidad. Mejora tu plan a uno de pago para desbloquear nuestras potentes herramientas de marketing y empieza a hacer crecer tu negocio hoy mismo." + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "Prepárate para hacer crecer tu negocio" + +#: build/index.js:3 src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "Ejemplo de apariencia" + +#: build/index.js:3 src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "Ejemplo de productos" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "Todo tiene muy buen aspecto. ¡Sigue así!" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "¡Bravo! Hemos llegado al último paso. ¡Bien hecho!" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "Solo quedan algunas tareas por hacer." + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "Te damos la bienvenida a tu tienda Woo Express" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "Te damos la bienvenida a %s" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "%1$d de %2$d completadas." + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "¡Ya casi estás listo/a para empezar a vender! Sigue estos pasos para configurar tu tienda de prueba." + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "Ocultar la lista de configuración" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "El proceso de configuración de la tienda satisface mis necesidades." + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "La configuración de la tienda es muy fácil." + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "Agradecemos tus comentarios." + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "¿Cómo ha sido tu experiencia?" + +#: build/index.js:1 +msgid "Hide this" +msgstr "Ocultar esto" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "Mostrar lista de tareas de configuración" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "Opciones de la lista de tareas" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "¡Enhorabuena! Dedica un instante a celebrarlo. Cuando estés listo/a para publicar tu tienda, lo único que tienes que hacer es mejorar a un plan de pago. Esto también desbloqueará las dos próximas tareas en la lista de tareas." + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "¡Estupendo! Se ha creado tu tienda de prueba." + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "¡Estás haciendo un gran trabajo! Un elemento menos en tu lista de tareas ✅" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "Ha habido un problema al configurar los impuestos automáticos. Inténtalo de nuevo." + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "Durante el periodo de prueba puedes configurar los ajustes del impuesto sobre las ventas, pero no recaudarlo. {{br/}}Para empezar a vender productos, {{link}}mejora tu plan ahora{{/link}}." + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "No cobro impuestos" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "Configura los impuestos manualmente" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "Elige un socio fiscal" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "WooCommerce Tax puede calcular por ti los impuestos de tus ventas." + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "Automatizar impuestos" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "Automatizar impuestos" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "Dirígete a la pantalla de ajustes de las tasas de impuestos para configurar tus tasas de impuestos" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "Configurar las tasas de impuestos" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "La dirección desde la que opera tu negocio" + +#: build/index.js:1 +msgid "Set store location" +msgstr "Establecer la ubicación de la tienda" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "Por favor, selecciona un país / región" + +#: build/index.js:1 +msgid "Post code" +msgstr "Código postal" + +#: build/index.js:1 +msgid "Address" +msgstr "Dirección" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "País/Región" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "Al hacer clic en «Configurar», estás activando tasas de impuestos y cálculos. Más información {{link}}aquí{{/link}}." + +#: build/index.js:1 +msgid "Configure" +msgstr "Configurar" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "Continuar con la configuración" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "Al instalar WooCommerce Tax y Jetpack, aceptas las {{link}}Condiciones del servicio{{/link}}." + +#: build/index.js:1 +msgid "100% free" +msgstr "100 % gratis" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "Con la tecnología de {{link}}Jetpack{{/link}}" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "Cumplimiento del nexo económico {{strong}}único{{/strong}}" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "Cálculo de impuestos en tiempo real" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "Lo mejor para las nuevas tiendas" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "Impuesto de WooCommerce" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "Consigue más ventas" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "Mejora tu plan a uno de pago para desbloquear más funciones y empezar a vender" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "Estás utilizando una versión de prueba gratuita. Para acceder a todas las funciones, mejora tu plan a uno de pago." + +#: build/index.js:1 src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "Ilustración de navegación modal de bienvenida 1" + +#: build/index.js:1 src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "Ilustración de navegación modal de bienvenida 2" + +#: build/index.js:1 +msgid "Setup required" +msgstr "Configuración necesaria" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +msgstr "Genera y gestiona ingresos recurrentes y obtén depósitos automáticos en tu cuenta bancaria designada." + +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "Vende a mercados internacionales y acepta más de 135 monedas con los métodos de pago locales." + +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +msgstr "Ofrece a tus clientes el método de pago que prefieran, incluidos los pagos con tarjeta de débito y crédito, Apple Pay, Sofort, SEPA, iDeal y muchos más." + +#: build/index.js:1 +msgid "Accepted payment methods include:" +msgstr "Entre los métodos de pago aceptados se incluyen:" + +#: build/index.js:1 +msgid "& more." +msgstr "y mucho más." + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "Navegar por las extensiones" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "Añade tus productos. Muestra tus productos o servicios y prepárate para empezar a vender: añade información, imágenes y descripciones de tus productos." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "Importa tus productos. Muestra tus productos o servicios y prepárate para empezar a vender: importa información, imágenes y descripciones de tus productos existentes." + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "Añadir productos" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "Importar los productos" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "Añade tus productos" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "Importa tus productos" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "Elige un tema" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "Elige el tema que mejor se adapte al aspecto de tu marca y, a continuación, hazlo tuyo. Cambia los colores, añade tu logotipo y crea páginas." + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "Elige un tema" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: build/index.js:3 src/index.js:189 +msgid "Plugins" +msgstr "Plugins" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "Restablecer" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "«Qué hacer a continuación»" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "Lista de tareas de configuración" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "Restablece la visibilidad de la lista de tareas «Cosas que hacer a continuación»." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "Restablece la visibilidad de la lista de tareas de incorporación principal." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "Utiliza estas opciones para restablecer la visibilidad de las listas de tareas de incorporación en la página de inicio de WooCommerce." + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "Inducción" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "Una experiencia de navegación personalizada y optimizada para la venta." + +#: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Ahora es más rápido hacer operaciones con WooCommerce. Obtén más información sobre nuestra nueva navegación o anímate a descubrirla por tu cuenta." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Desplázate más rápido con nuestra nueva navegación" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtén consejos e información detallada sobre el rendimiento de tu tienda cada vez que accedas a tu escritorio de WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Conoce tu nueva página de inicio" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Elige una nueva dirección de sitio web para tu tienda o transfiere una que ya tengas." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ejemplo de añadir un dominio" @@ -79,43 +491,53 @@ msgstr "Datos para transferencia bancaria directa añadidos correctamente" msgid "Please enter an account number or IBAN" msgstr "Introduce un número de cuenta o IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, {{link}}mejora tu plan a uno de pago{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Métodos de pago sin conexión" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Ver más" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Prueba uno de los proveedores de pago alternativos." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Otros proveedores de pago" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Ofrece a tus clientes opciones adicionales para pagar." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Opciones de pago adicionales" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Prepararse para aceptar pagos en línea" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Elige un proveedor de pago" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Se ha producido un error al conectar con WooCommerce Payments. Inténtalo de nuevo o conéctate más tarde desde los ajustes de la tienda." @@ -132,245 +554,257 @@ msgstr "Si aceptas compartir {{link}}datos sobre el uso{{/link}} no confidencial msgid "Help us build a better WooCommerce Payments experience" msgstr "Ayúdanos a mejorar la experiencia en WooCommerce Payments" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Si utilizas WooCommerce Payments, aceptas regirte por nuestras {{tosLink}}Condiciones del servicio{{/tosLink}} y confirmas que has leído nuestra {{privacyLink}}Política de privacidad{{/privacyLink}}. " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Prepárate para aceptar pagos" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "¡Sí, cuenta conmigo!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Ayúdanos a mejorar WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Ha habido un problema al actualizar tus preferencias" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configura tu cuenta de %(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Instalar %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Puedes gestionar los ajustes de esta pasarela de pago haciendo clic en el siguiente botón." +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Conectar" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Ejecutar" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ha habido un problema al guardar tus ajustes de pago" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s se ha configurado correctamente" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recomendado(s)" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Colaborador local" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Finalizar configuración" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activar" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Publicar de todas maneras" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Hay que comprobar unas cuantas cosas antes de publicar tu tienda" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "Antes de publicarla" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Elige una dirección para tu nuevo sitio web o transfiere un dominio que ya tengas." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "Crea una lista de productos" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Para empezar a vender, añade productos o servicios a tu tienda. Crea tus productos manualmente o impórtalos desde una tienda." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "Crea tu lista de productos" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura uno (¡o más!) de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Recibe los pagos" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Puedes revertir esta opción en cualquier momento en Ajustes." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Es hora de celebrarlo: ¡ya estás a punto para publicar tu tienda! ¡Bravo!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "¿Estás preparado para lanzar tu tienda?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "¿Has cambiado de idea? Puedes volver a hacer que tu tienda sea privada si actualizas lo ajustes de Privacidad." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "Visualiza tu tienda" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Enhorabuena por publicar tu sitio de WooCommerce. ¡Dedica un momento a celebrarlo y compartir la noticia!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "¡Bravo! Lo has conseguido." -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "Publicación de tu tienda" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "Copiado" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Descarta este banner informativo de prueba gratuita." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Esta es tu tienda de prueba gratuita en la que puedes empezar a explorar las funciones disponibles. Para obtener más detalles sobre la prueba gratuita, haz clic en \"Más información\"." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Ha habido un problema al guardar la ubicación de tu tienda" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Al hacer clic en \"Pagos de prueba\", aceptas las {{tosLink}}Condiciones del servicio{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Mejora los pagos con una opción sencilla e integral. Verifica los detalles de tu negocio para empezar a probar transacciones con WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Pagos de prueba" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura y prueba algunos de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Es hora de probar los pagos" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ejemplo de pago" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Todo listo para empezar a probar las funciones y las ventajas de WooCommerce Payments." -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Solo unos pasos más y estarás a punto para aceptar pagos" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Los depósitos no están disponibles durante el período de prueba. Para empezar a procesar transacciones reales y recibir pagos, mejora tu plan a uno de pago." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "Los depósitos no están disponibles durante el período de prueba. Para empezar a procesar transacciones reales y recibir pagos, mejora tu plan a uno de pago." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, mejora tu plan a uno de pago." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, mejora tu plan a uno de pago." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Consejos, trucos e inspiración de comercio electrónico de nuestro blog." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 msgid "Get inspired" msgstr "Inspírate" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Descubre las colecciones" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Comienza rápidamente con nuestras selectas colecciones de extensiones." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Colecciones selectas" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Añade más funciones y funcionalidades o integra tu tienda con otras plataformas y herramientas." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Personaliza y amplía" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Aumenta la productividad en tu tienda: añade extensiones" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Ver las extensiones" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Personaliza tu tienda con extensiones de WooCommerce para que funcione a la perfección con tu negocio. Mejora tu plan a uno de pago para tener acceso a cientos de herramientas y funciones que te pueden ayudar a alcanzar tus objetivos empresariales. ¿Sientes curiosidad por las funciones disponibles? Explora nuestro marketplace de extensiones." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "Personaliza tu tienda con extensiones de WooCommerce para que funcione a la perfección con tu negocio. Mejora tu plan a uno de pago para tener acceso a cientos de herramientas y funciones que te pueden ayudar a alcanzar tus objetivos. ¿Sientes curiosidad por las funciones disponibles? Explora nuestro mercado de extensiones." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Mejora el nivel de tu tienda con extensiones" @@ -384,8 +818,8 @@ msgstr "¡Es hora de celebrarlo! ¿Todo listo para publicar tu tienda?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Pon en marcha tu tienda" @@ -394,6 +828,8 @@ msgid "You've already launched your store" msgstr "Ya has publicado tu tienda" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutos" @@ -406,9 +842,9 @@ msgid "Domain" msgstr "dominio" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Añadir un dominio" @@ -428,18 +864,19 @@ msgstr "Para ofrecer un proceso de pago fluido a tus compradores, hemos potencia msgid "Meet our new, customizable checkout" msgstr "Descubre nuestro nuevo proceso de pago personalizable" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tEn este momento, eres la única persona que puede ver tu tienda. Para que tu tienda esté disponible para todo el público, mejora tu plan a uno de pago.\n" +"\t\t\tEn este momento, eres la única persona que puede ver tu tienda. Para que tu tienda esté disponible para todo el público, .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mejora tu plan ahora" @@ -451,15 +888,15 @@ msgstr "Durante el período de prueba, solo puedes hacer pedidos de prueba. Para msgid "Start selling to everyone" msgstr "Empieza a vender a todo el público" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Mi Cuenta" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "Contacto" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Inicio" @@ -471,7 +908,8 @@ msgstr "Este sitio ya se ha publicado" msgid "You don't have permissions to launch this site" msgstr "No tienes permisos para publicar este sitio" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, mejora tu plan a uno de pago." @@ -492,61 +930,61 @@ msgstr "No se ha podido hacer el pedido. La funcionalidad de pago está activada msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Está tienda no está lista para aceptar pedidos. La funcionalidad de pago está activada actualmente solo con fines de vista previa." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack Stats" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Estado de Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-Spam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Discover" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gestionar" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Extensiones" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Clientes" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Informes heredados" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "Estado de WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "Ajustes de WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Pedidos" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Mi página de inicio" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Sugerencias" @@ -554,18 +992,26 @@ msgstr "Sugerencias" msgid "Save big with WooCommerce Payments" msgstr "Ahorra a lo grande con WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "No, gracias" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Comienza" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navegación" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1053,7 @@ msgstr "Detalles del pedido enviados manualmente al cliente." msgid "Invalid order ID." msgstr "ID del pedido no válida." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1188,21 @@ msgstr "No se puede desactivar WooCommerce en el plan eCommerce." msgid "Store" msgstr "Tienda" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Estadísticas" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "Ciudad" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuar" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Aprende más" @@ -765,6 +1215,11 @@ msgstr "Extensiones de WooCommerce" msgid "Extensions %s" msgstr "Extensiones %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "Ofrecido por %1$s" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Creado con Storefront y WordPress.com" diff --git a/languages/wc-calypso-bridge-fr_BE.mo b/languages/wc-calypso-bridge-fr_BE.mo index e81e99f075f9125ea3afa306f848b7d93450d77d..2ac937f2f147b67330f586d16f7d1cd046b4fc67 100644 GIT binary patch delta 7538 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 delta 7397 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 R&K=sAHSd~a_C0T9{11Ql#&7@t diff --git a/languages/wc-calypso-bridge-fr_BE.po b/languages/wc-calypso-bridge-fr_BE.po index 399fbcc1..e565e46d 100644 --- a/languages/wc-calypso-bridge-fr_BE.po +++ b/languages/wc-calypso-bridge-fr_BE.po @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "Vous ne trouvez pas l’extension qui répond à vos besoins ? Des intégrations de services aux personnalisations exotiques, notre équipe d’experts vous aide à matérialiser correctement votre travail." +msgid "Hire an expert" +msgstr "Faire appel à un expert" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "Faites-le à votre manière" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "Vous ne trouvez pas ce que vous cherchez ? Faites appel aux services de l’une de nos agences spécialisées ! Que vous recherchiez de nouvelles extensions ou souhaitiez créer une boutique de A à Z, nos experts Woo peuvent vous aider à créer la boutique de vos rêves." #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Découvrir les extensions" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "Vous souhaitez développer les fonctionnalités eCommerce de votre boutique ? Le Woo Marketplace propose des centaines d’extensions de confiance conçues spécifiquement pour votre boutique." #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "Vous recherchez d’autres moyens de paiement et modes de livraison ? Vous souhaitez créer un site d’adhésion ou accepter des dons ? Choisissez parmi les centaines d’extensions sélectionnées par notre équipe." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "Des outils d’optimisation des moteurs de recherche aux fonctionnalités multilingues, les extensions WordPress facilitent la personnalisation de votre site Web pour qu’il réponde à tous vos besoins." #: build/plugins.js:1 -msgid "Extend your store" -msgstr "Développer votre boutique" +msgid "Customize your website" +msgstr "Personnaliser votre site Web" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "WordPress peut faire ce que vous voulez. Créez une boutique, hébergez un podcast ou présentez votre travail. Vous êtes le maître de la situation grâce à plus de 55 000 extensions." +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Ajoutez des fonctionnalités supplémentaires à votre site Web en un clic. Passez à un plan payant et accédez à des milliers d’extensions WordPress gratuites et payantes. Votre curiosité vous pousse à découvrir tous les possibles ?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "Transformer WordPress" +msgid "Do it your way" +msgstr "Faites-le à votre manière" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Parcourir les extensions" +msgid "Discover Extensions" +msgstr "Découvrir les extensions" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "Créez le site WordPress que vous avez à l’esprit. Passez à un plan payant et accédez à des milliers d’extensions gratuites et payantes. Votre curiosité vous pousse à découvrir tous les possibles ?" +msgid "Extend your store" +msgstr "Développer votre boutique" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Parcourir les extensions" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -766,7 +770,6 @@ msgstr "Conseils, astuces et inspiration eCommerce de notre blog." #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "Trouver l’inspiration" @@ -885,15 +888,15 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Mon compte :" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "contact" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Accueil" diff --git a/languages/wc-calypso-bridge-fr_CA.mo b/languages/wc-calypso-bridge-fr_CA.mo index 7133c5ad1d4d60f9b7c74936246075809ebd6c32..c4d5018cd0a4ba60aef072786852c623ee908594 100644 GIT binary patch delta 7537 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 D(V+1= delta 7405 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 diff --git a/languages/wc-calypso-bridge-fr_CA.po b/languages/wc-calypso-bridge-fr_CA.po index f552d951..d0629fe2 100644 --- a/languages/wc-calypso-bridge-fr_CA.po +++ b/languages/wc-calypso-bridge-fr_CA.po @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "Vous ne trouvez pas l’extension qui répond à vos besoins ? Des intégrations de services aux personnalisations exotiques, notre équipe d’experts vous aide à matérialiser correctement votre travail." +msgid "Hire an expert" +msgstr "Faire appel à un expert" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "Faites-le à votre manière" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "Vous ne trouvez pas ce que vous cherchez ? Faites appel aux services de l’une de nos agences spécialisées ! Que vous recherchiez de nouvelles extensions ou souhaitiez créer une boutique de A à Z, nos experts Woo peuvent vous aider à créer la boutique de vos rêves." #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Découvrir les extensions" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "Vous souhaitez développer les fonctionnalités eCommerce de votre boutique ? Le Woo Marketplace propose des centaines d’extensions de confiance conçues spécifiquement pour votre boutique." #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "Vous recherchez d’autres moyens de paiement et modes de livraison ? Vous souhaitez créer un site d’adhésion ou accepter des dons ? Choisissez parmi les centaines d’extensions sélectionnées par notre équipe." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "Des outils d’optimisation des moteurs de recherche aux fonctionnalités multilingues, les extensions WordPress facilitent la personnalisation de votre site Web pour qu’il réponde à tous vos besoins." #: build/plugins.js:1 -msgid "Extend your store" -msgstr "Développer votre boutique" +msgid "Customize your website" +msgstr "Personnaliser votre site Web" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "WordPress peut faire ce que vous voulez. Créez une boutique, hébergez un podcast ou présentez votre travail. Vous êtes le maître de la situation grâce à plus de 55 000 extensions." +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Ajoutez des fonctionnalités supplémentaires à votre site Web en un clic. Passez à un plan payant et accédez à des milliers d’extensions WordPress gratuites et payantes. Votre curiosité vous pousse à découvrir tous les possibles ?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "Transformer WordPress" +msgid "Do it your way" +msgstr "Faites-le à votre manière" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Parcourir les extensions" +msgid "Discover Extensions" +msgstr "Découvrir les extensions" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "Créez le site WordPress que vous avez à l’esprit. Passez à un plan payant et accédez à des milliers d’extensions gratuites et payantes. Votre curiosité vous pousse à découvrir tous les possibles ?" +msgid "Extend your store" +msgstr "Développer votre boutique" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Parcourir les extensions" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -766,7 +770,6 @@ msgstr "Conseils, astuces et inspiration eCommerce de notre blog." #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "Trouver l’inspiration" @@ -885,15 +888,15 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Mon compte" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "contact" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Accueil " diff --git a/languages/wc-calypso-bridge-fr_FR.mo b/languages/wc-calypso-bridge-fr_FR.mo index 9c84dc0d552d7f45ee432c5d1712c1bb2ee1d0ec..0bb4f6bc0f4a135865e4ec50f610b3f99551ea64 100644 GIT binary patch delta 7562 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 delta 7398 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 diff --git a/languages/wc-calypso-bridge-fr_FR.po b/languages/wc-calypso-bridge-fr_FR.po index cbf44c03..18e1ee74 100644 --- a/languages/wc-calypso-bridge-fr_FR.po +++ b/languages/wc-calypso-bridge-fr_FR.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-14 12:54:03+0000\n" +"PO-Revision-Date: 2023-09-21 14:54:26+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "Vous ne trouvez pas l’extension qui répond à vos besoins ? Des intégrations de services aux personnalisations exotiques, notre équipe d’experts vous aide à matérialiser correctement votre travail." +msgid "Hire an expert" +msgstr "Faire appel à un expert" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "Faites-le à votre manière" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "Vous ne trouvez pas ce que vous cherchez ? Faites appel aux services de l’une de nos agences spécialisées ! Que vous recherchiez de nouvelles extensions ou souhaitiez créer une boutique de A à Z, nos experts Woo peuvent vous aider à créer la boutique de vos rêves." #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Découvrir les extensions" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "Vous souhaitez développer les fonctionnalités eCommerce de votre boutique ? Le Woo Marketplace propose des centaines d’extensions de confiance conçues spécifiquement pour votre boutique." #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "Vous recherchez d’autres moyens de paiement et modes de livraison ? Vous souhaitez créer un site d’adhésion ou accepter des dons ? Choisissez parmi les centaines d’extensions sélectionnées par notre équipe." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "Des outils d’optimisation des moteurs de recherche aux fonctionnalités multilingues, les extensions WordPress facilitent la personnalisation de votre site Web pour qu’il réponde à tous vos besoins." #: build/plugins.js:1 -msgid "Extend your store" -msgstr "Développer votre boutique" +msgid "Customize your website" +msgstr "Personnaliser votre site Web" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "WordPress peut faire ce que vous voulez. Créez une boutique, hébergez un podcast ou présentez votre travail. Vous êtes le maître de la situation grâce à plus de 55 000 extensions." +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Ajoutez des fonctionnalités supplémentaires à votre site Web en un clic. Passez à un plan payant et accédez à des milliers d’extensions WordPress gratuites et payantes. Votre curiosité vous pousse à découvrir tous les possibles ?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "Transformer WordPress" +msgid "Do it your way" +msgstr "Faites-le à votre manière" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Parcourir les extensions" +msgid "Discover Extensions" +msgstr "Découvrir les extensions" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "Créez le site WordPress que vous avez à l’esprit. Passez à un plan payant et accédez à des milliers d’extensions gratuites et payantes. Votre curiosité vous pousse à découvrir tous les possibles ?" +msgid "Extend your store" +msgstr "Développer votre boutique" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Parcourir les extensions" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -766,7 +770,6 @@ msgstr "Conseils, astuces et inspiration eCommerce de notre blog." #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "Trouver l’inspiration" @@ -885,15 +888,15 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Mon compte :" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "contact" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Accueil" diff --git a/languages/wc-calypso-bridge-he_IL.mo b/languages/wc-calypso-bridge-he_IL.mo index d95f50871e67ac973e4441830e2c551ba8d28919..14b9f21c0a79ef7394d8176811761ccc7b4ca96a 100644 GIT binary patch literal 42192 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 TOSL>FVP{7gyGhDltIhs5m+a`( delta 5034 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 m$lZa|9^i+8Learn more about our new navigation — or go ahead and explore on your own." msgstr "עכשיו אפשר לבצע פעולות עם WooCommerce מהר יותר. אפשר לעיין במידע נוסף לגבי הניווט החדש שלנו – או להמשיך ולבדוק אותו בעצמך." -#: src/welcome-modal/index.js:93 +#: build/index.js:1 src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "לנוע מהר יותר עם הניווט החדש שלנו" -#: src/welcome-modal/index.js:73 +#: build/index.js:1 src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "לקבל טיפים ותובנות לגבי ביצועי החנות שלך בכל ביקור בלוח הבקרה של WordPress.com." -#: src/welcome-modal/index.js:70 +#: build/index.js:1 src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "היכרות עם דף הבית החדש שלך" -#: src/task-headers/add-domain.js:34 +#: build/index.js:3 src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "יש לבחור כתובת חדשה של אתר אינטרנט לחנות שלך או להעביר כתובת שכבר בבעלותך." -#: src/task-headers/add-domain.js:22 +#: build/index.js:3 src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "הוספת אילוסטרציה של דומיין" @@ -79,43 +491,53 @@ msgstr "הפרטים לביצוע העברה בנקאית ישירה נוספו msgid "Please enter an account number or IBAN" msgstr "יש להזין מספר חשבון או מספר IBAN" -#: src/payment-gateway-suggestions/index.js:279 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "מנהלי המערכות ומנהלי החנויות שלנו יכולים לבצע הזמנות במהלך תקופת הניסיון. אם הכול מוכן לקבל תשלומים מלקוחות, אפשר {{link}}לשדרג לתוכנית בתשלום{{/link}}." +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "אמצעי תשלום לא מקוונים" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "עוד" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "רוצה לנסות את אחד מספקי התשלום החלופיים?" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "ספקי תשלום אחרים" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "רוצה לתת ללקוחות אפשרויות נוספות לביצוע התשלום?" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "אפשרויות תשלום נוספות" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "להתכונן לקבל תשלומים מקוונים" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "לבחור ספק תשלום" +#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "אירעה שגיאה במהלך ההתחברות אל WooCommerce Payments. ניתן לנסות שוב או להתחבר מאוחר יותר בהגדרות החנות." @@ -132,245 +554,257 @@ msgstr "על ידי הסכמה לשיתוף של {{link}}נתוני שימוש{{ msgid "Help us build a better WooCommerce Payments experience" msgstr "יש לך הזדמנות לעזור לנו ליצור חוויית שימוש טובה יותר ב-WooCommerce Payments" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "השימוש ב-WooCommerce Payments מהווה את הסכמתך לפעול בכפוף {{tosLink}}לתנאי השימוש{{/tosLink}}, ומאשר שקראת את {{privacyLink}}מדיניות הפרטיות{{/privacyLink}} שלנו " +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "להתכונן לקבל תשלומים" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "כן, אני רוצה להצטרף!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "לבנות אתר WooCommerce טוב יותר" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "אירעה בעיה בעדכון ההעדפות שלך" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "הגדרת החשבון שלך ב-%(title)s" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "התקן %s" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "ניתן לנהל את ההגדרות של אמצעי תשלום זה על ידי לחיצה על הלחצן שלהלן" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "להתחבר" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "המשך" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "אירעה בעיה בשמירת הגדרות התשלומים" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s הוגדר בהצלחה" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "מומלץ" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "שותף מקומי" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "להשלים את ההגדרה" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "אפשר" -#: src/launch-store/index.js:387 +#: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" msgstr "להשיק בכל זאת" -#: src/launch-store/index.js:377 +#: build/index.js:1 src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "מספר דברים שעליך לבדוק לפני השקת החנות שלך" -#: src/launch-store/index.js:374 +#: build/index.js:1 src/launch-store/index.js:379 msgid "Before you launch" msgstr "לפני ההשקה" -#: src/launch-store/index.js:313 +#: build/index.js:1 src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "עליך לבחור כתובת לאתר האינטרנט החדש או להעביר דומיין שכבר בבעלותך." -#: src/launch-store/index.js:309 +#: build/index.js:1 src/launch-store/index.js:314 msgid "List products" msgstr "לציין מוצרים" -#: src/launch-store/index.js:305 +#: build/index.js:1 src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "להתחיל למכור על ידי הוספת מוצרים ושירותים לחנות שלך. ניתן ליצור את המוצרים באופן ידני או לייבא אותם מחנות קיימת." -#: src/launch-store/index.js:304 +#: build/index.js:1 src/launch-store/index.js:309 msgid "List your products" msgstr "לציין את המוצרים שלך" -#: src/launch-store/index.js:296 +#: build/index.js:1 src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "כדאי לאפשר ללקוחות שלך דרך נוספת לשלם בבטחה ובנוחות! להגדיר אחד (או יותר!) מאמצעי התשלום המהירים והמאובטחים שלנו באינטרנט או באופן אישי." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "לקבל תשלום" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "אפשר תמיד לחזור למצב הקודם במקטע הגדרות." -#: src/launch-store/index.js:243 +#: build/index.js:1 src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "זה הזמן לחגוג – הכול מוכן להשקת החנות שלך! WooCommerce!" -#: src/launch-store/index.js:237 +#: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "רוצה להשיק חנות משלך?" -#: src/launch-store/index.js:203 +#: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "שינית את דעתך? אפשר להגדיר שוב את החנות שלך כפרטית על ידי עדכון של הגדרות הפרטיות שלך." -#: src/launch-store/index.js:197 +#: build/index.js:1 src/launch-store/index.js:206 msgid "View your store" msgstr "הצגת החנות שלך" -#: src/launch-store/index.js:177 +#: build/index.js:1 src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "ברכותינו על השקת החנות שלך של WooCommerce. כדאי לעצור לרגע כדי לחגוג ולשתף את החדשות!" -#: src/launch-store/index.js:173 +#: build/index.js:1 src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "WooCommerce! הצלחת!" -#: src/launch-store/index.js:137 +#: build/index.js:1 src/launch-store/index.js:142 msgid "Launching your store" msgstr "השקת החנות שלך" -#: src/launch-store/index.js:67 +#: build/index.js:1 src/launch-store/index.js:71 msgid "Copied" msgstr "הועתק" -#: src/homescreen-banner/index.js:61 +#: build/index.js:3 src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "לבטל את הבאנר עם המידע לגבי תקופת הניסיון." -#: src/homescreen-banner/index.js:45 +#: build/index.js:3 src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "זוהי חנות הבדיקה שלך לתקופת הניסיון שבה באפשרותך להתחיל לגלות אילו אפשרויות זמינות! כדי לגלות עוד על תקופת הניסיון, ניתן ללחוץ על 'מידע נוסף'." -#: src/free-trial/tax/components/location.js:53 +#: build/index.js:1 src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "אירעה בעיה בשמירת המיקום של החנות שלך" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "בלחיצה על 'בדיקת תשלומים', אנחנו מקבלים את הסכמתך {{tosLink}}לתנאי השירות שלנו{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "לחזק את התשלומים שלך עם אפשרות פשוטה ומקיפה. עליך לאמת את פרטי העסק כדי להתחיל לבדוק עסקאות עם WooCommerce Payments." -#: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "בדיקת תשלומים" -#: src/free-trial/fills/task-headers/payments.js:40 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "כדאי לאפשר ללקוחות שלך דרך נוספת לשלם בבטחה ובנוחות! להגדיר ולבדוק חלק מאמצעי התשלום המהירים והמאובטחים שלנו באינטרנט או באופן אישי." -#: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "זה הזמן לבדוק את התשלומים" -#: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "אילוסטרציית תשלום" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "באפשרותך להתחיל לבדוק את האפשרויות והיתרונות של WooCommerce Payments" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "נותרו עוד מספר שלבים בלבד כדי לקבל תשלומים" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "" +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "בתקופת הניסיון פיקדונות אינם זמינים. כדי להתחיל בעיבוד של עסקאות אמיתיות ולקבל תשלומים, יש לשדרג לתוכנית בתשלום." -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "מנהלי המערכות ומנהלי החנויות שלנו יכולים לבצע הזמנות במהלך תקופת הניסיון. אם הכול מוכן לקבל תשלומים מלקוחות, אפשר לשדרג לתוכנית בתשלום." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "בתקופת ההתנסות חינם רק מנהלי מערכות ומנהלי חנויות יוכלו לבצע הזמנות. אם הכול מוכן לקבלת תשלומים מלקוחות, אפשר לשדרג לתוכנית בתשלום." -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "טיפים, טריקים והשראה למסחר אלקטרוני מהבלוג שלנו." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 msgid "Get inspired" msgstr "לקבל השראה" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "לגלות אוספים" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "לצאת לדרך במהירות עם אוספי הרחבות שנבחרו בקפידה." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "אוספים שנבחרו בקפידה" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "להוסיף אפשרויות ופונקציונליות נוספות או לשלב פלטפורמות וכלים אחרים." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "להתאים אישית ולהרחיב" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "להפיק יותר מהחנות שלך – להוסיף הרחבות" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "לעיין בהרחבות" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "כדאי להתאים אישית את החנות שלך כדי שתעבוד באופן מושלם עם העסק שלך באמצעות ההרחבות של WooCommerce. ניתן לשדרג לתוכנית בתשלום כדי לקבל גישה למאות כלים ואפשרויות שיכולים לעזור לך להגשים את היעדים העסקיים שלך. רוצה לגלות אילו אפשרויות זמינות לך? לעיין בשוק ההרחבות שלנו." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "כדאי להתאים אישית את החנות לעבודה מושלמת עם העסק שלך באמצעות הרחבות WooCommerce. משדרגים לתוכנית בתשלום כדי לקבל גישה למאות כלים ואפשרויות שיכולים לעזור לך להגשים את יעדיך. רוצה לברר מה זמין? אנו מזמינים אותך לעיין בשוק ההרחבות שלנו." + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "לשדרג את החנות שלך לרמה הבאה באמצעות הרחבות" @@ -384,8 +818,8 @@ msgstr "הגיע הזמן לחגוג! רוצה להשיק חנות משלך?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "להשיק את החנות שלך" @@ -394,6 +828,8 @@ msgid "You've already launched your store" msgstr "כבר השקת את החנות שלך" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "שתי דקות" @@ -406,9 +842,9 @@ msgid "Domain" msgstr "דומיין" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 -#: src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 +#: build/index.js:3 src/launch-store/index.js:322 +#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "הוספת דומיין" @@ -428,18 +864,19 @@ msgstr "כדי לספק לקונים באתר שלך חוויה חלקה של ת msgid "Meet our new, customizable checkout" msgstr "זה הזמן להכיר את האפשרות החדשה שלנו שניתנת להתאמה אישית לתשלום בקופה" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" msgstr "" "\n" -"\t\t\tנכון לעכשיו, רק לך יש אפשרות לראות את החנות שלך. כדי שהחנות שלך תהיה זמינה לכולם, עליך לשדרג לתוכנית בתשלום.\n" +"\t\t\tכרגע, רק לך יש אפשרות לראות את החנות. כדי שהחנות תהיה זמינה לכולם, עליך .\n" "\t\t" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "זה הזמן לשדרג" @@ -451,15 +888,15 @@ msgstr "במהלך תקופת הניסיון אפשר לבצע הזמנות ני msgid "Start selling to everyone" msgstr "להתחיל למכור לכולם" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "החשבון שלי" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "טופס יצירת קשר" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "דף הבית" @@ -471,7 +908,8 @@ msgstr "האתר הזה כבר הושק" msgid "You don't have permissions to launch this site" msgstr "אין לך הרשאה להשיק את האתר הזה" -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "מנהלי המערכות ומנהלי החנויות שלנו יכולים לבצע הזמנות במהלך תקופת הניסיון. אם הכול מוכן לקבל תשלומים מלקוחות, אפשר לשדרג לתוכנית בתשלום." @@ -492,61 +930,61 @@ msgstr "לא ניתן היה לבצע את ההזמנה שלך. נכון לעכ msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "החנות הזו לא מוכנה לקבלת הזמנות. נכון לעכשיו, פונקציונליות התשלום בקופה מופעלת לצורכי תצוגה מקדימה בלבד." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "נתונים סטטיסטיים של Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "סטטוס Jetpack" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "מניעת תגובות זבל" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "היכרות" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "לנהל" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "הרחבות" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "לקוחות" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "דוחות מדור קודם" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "מצב WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "הגדרות WooCommerce" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "הזמנות" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "הבית שלי" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "משוב" @@ -554,18 +992,26 @@ msgstr "משוב" msgid "Save big with WooCommerce Payments" msgstr "לחסוך בגדול עם WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "לא תודה" +#: build/index.js:1 build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "מתחילים כאן" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "ניווט" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +1053,7 @@ msgstr "פרטי ההזמנה נשלחו ידנית ללקוח." msgid "Invalid order ID." msgstr "המזהה של ההזמנה לא חוקי." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,17 +1188,21 @@ msgstr "אין אפשרות להשבית את הפעילות של Woocommerce ב msgid "Store" msgstr "חנות" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "נתונים סטטיסטיים" -#: src/free-trial/tax/components/location.js:23 +#: build/index.js:1 +msgid "City" +msgstr "עיר" + +#: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "המשך" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: src/homescreen-banner/index.js:57 +#: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "מידע נוסף." @@ -765,6 +1215,11 @@ msgstr "הרחבות של WooCommerce" msgid "Extensions %s" msgstr "הרחבות %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "מופעל באמצעות ⁦%1$s⁩" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "לבנות חנות עם Storefront ו-WordPress.com" diff --git a/languages/wc-calypso-bridge-id_ID.mo b/languages/wc-calypso-bridge-id_ID.mo index d250a4e8d12920ed5b168106bc0e3e51f97d3208..b0c3ea734c00e709772ea05cbd1755c162b75666 100644 GIT binary patch delta 7476 zcmZwL349ghxySJr$N~g3kPvnlwkQz7B8#jE5F#KT%BmD_k~7IUdisMxA#!F{=UZ}0DaX0WNf^Wiz)_kCy1JMa6v z?@SV2y07`E#^%X4+h=Sv9Nn84(+x9P8Iz>^K|8e?^KM6DQurR`;kHi3bipS)e}mc7 z-@%r65$VEw>Dj!qG2^MX!Pz(+hvEa+i(8qK6xz^m5ii4UP#xxQ7q#ahO~%3-a15Tn zyS?)_b~UC0^(q{KKR}KBFWA=!xlXl9sUC6VdtL4 zEXD{Pz>_!-@36QA_hSWCGo2ZD9F?h#y^YDop|}RiQRh#fGTNz+JJ5cZ%%EWu1$8_Q z2caK}@qW|{pGVE;CA9DyR$@k9&Y>Tb+Twn$BT;){0&2$BU>45DTwIJAXt*EwSH}%B zFgddob;Cob8N8r+Gh_aQ1=Rmi$T|E52jf#$xHoza)z8PM?`2(S%uMWxnos~WkWHw8 z?8F#8c4d;CNTFAMW{Zb$3CCCF6puo>Hf8uL zJm$53zsMa(1M2!sNeb*M^B}6D!%${)Io^cI>@rj);;5xhuBO1FY8o&bAM)zEy$hbj_O!o<>gbQC6rab<_;(~} zW-|}9GV?4dQzvl}p24fI_b_*&^HG_LAp=R8RbIn-)EBp-Zm z;zKu{f$DHMw#PMIeG_h_{&QsGn@PiY$)SVV1FLa_7U?buY-n=?)xq0d{R`9px{h!& zQ;7N0i&5>9Q7N5;T8f3J_s3c9{Fk_gdJER!Ioyk?$40pW>d9=h|I8!`EUT$Ojcg05 zqX$uY;{fW$uOS=XoJR}Wjdlk%3^kB3xDLxuOLYo0v9qY9%^2gpDcj&!>b)^}8-*nl zw9DVXW0=KR-kRnFYE!<0+LYPj+>Y{)f2J!RoH7eh1KxnT@uR3EJA~R~Cs0dp3ZKSL zP`iKcc=E3|+=20K>I){gBkYgrpaj+7EK~-TAp6b4kXM4)fxPt0aj*UXDiiHX+)Q-C zRn&K3XB<#!OeU70`kP*wbQ_k^z`imLY7=foZK_95OLG9b;9pUhYBtf`j03PQ^-8<~ z8*mNoLk)BUk3cb2Ax&l@s=wc34Q3`M8&gW*7Q7qx<033AbJuPw)>1!$dY*^!aL;bW zD;KpFo+@`UbQaa|hu9N)T;qO!0&3|huoS~+<6cx|lkKLuo2(aR(=Y+Az;e$pwxxbQ z_QD;gnZ1Cy_yy_)EvLB|%15PkFzRV4L#2KJ>V~(VGO-GI5R&FO3I#NLjs3CxbYs}C zW*llMmSYEOK;9*0J8r;Jcr7}7D8*0Ua6F63Sce(zrn>{HsPD#km^;&ZgW~mi{v{SnHY83F`NtHr-a7gHPfsm~(@h`ZK8WA0jU~lfy;IR0*!ddDs=t zU>1Ijy|MXRcZvI9vK0+8DQK-0pa!zcvmSMW25gNFqh|Ox>U#%KGdYHx@B-@kZ1UU= zdwUK?t$jIKI3EkKZXWqRO<_9?KgJdF-5RO*JK z9~aq6T`>tDnbw>Yw8d%<=KN0q#TXt$nO#Pkav5-#P4| z=l?SbN_~En`zkI$n#>ejjeBqd4z6~8p*V({sAsbdTkxki7)J;AMH2&9hEJdd_&I98 zdCT0VqbFulAAw!;{Ew%g3l?G_`Y;36VQXBEZSVoq$amp7JcwF~@)~#P>QPI%8n4C& zPQ*=R>)255Y&w) zV-7CDby$rSeuBL)KkQCyBx-5LVsa>jItqPoHx9&;*b2YGHrOKKnv2>4-BANB#CvfJ zYF8geeeZ2Nf*0@HG-yp;#IE=fYS+Gx+ElG#?f`qB z)^rkP;ZoFqs_=e{V0+ApyGz*_HK0<|(=i>jG>h>2xFJsdHGo{U{wr958bIE1w}Zjh zn)-ZC8%I$OdhWn3)L+NT@e8~Rv+LXe7T{p&-SK^#i5lSO6$~C{Bq?ZQkD_jT81wNo z7T^W6FtgrGSs@Oiz8Ht#dejY$q6Y90?#5=fat`+(kC_?Abd`xk*cKhsCQrsF^rf%@ zb>nTQ8SF>R?5J0N9d+INn9kS_+~0&su!wd)?!=8a0>}N(-Ahp%Lw!5yy3-iJtlQFm zs3gsD3VUfdg!FBKEJ;^<7kSi8#!C06TM&KC_^lZAm}cJYX08a8f$^vThtR?X@BD6D zK>Z;4ustsoWvUJ>J^y!7(2RFse|*yO&!~*#tZ{$%Sg0FM#XO9l9=Fw~8{dmsvPV#B zd=xw5tEl(J1=I`5{K$R$reZ$#H)|;L#Vx2*J%bw1SJ)j}-r>Ia3Xy*%z=vk^Ar8l> zce?%%!_@bqGT5uZ{r`dSIEVU!I1xWZ4P@k6)?XvOje>5x5y^1+?>08FnLxCq;R5z1 zH0!y9pV09VahlLzb!2m``qSW=9s{Uk5-m8Nr5kWO?~*hd-9q~F44>V&;Me$fuU)(S z(lL%g388e7&GesB>?iXSF^woDt|HpdM+841P7%il?X4uSfq08JMBJQip`hb!Ld#IC zN|U3jH{zFR`x6mua_(f4vWh=%QddSV=ev)i<+ZQ!)H42!(EG=<aSsQf|qFec!kdjLjQ#`74?+#AO;cM zku*oVQa%^u5;`6xwDWhW;vKvm%sa$Dul`d{aTD=lqK_&Z*Se&CcaZN`H{H$sPAE`KI|p$bO<*R&?K zP}XDl?`q`eKwEnMb-+i6GGZMunz(ed=b{IwJWAY6bfo^dcXEWM_>%aTs3Tq_J|KD# zI-Vph5+n&@rBPlbEFnM-JE7ZZZ9bXfx_}a{qrho~9*}lluMtca#?r4-)%{ zj)acuT+B8cN_<7UKs&gu0fw*JYam%(UgMrE# zD^f+VA`y>A!o}9S##MzK8gu(+Hu}m3v|12}`eyU>SmWL0LsOwHRhh{;KVPM*w^nY6 zI#w_esR@Lut*S`0#F`qQB@!m8EZxglQR_sxPqh=S3^=h~R(UiMvcgUsXW~vc#z@lx zt4aiegJSUr->ygmg1%T$`s)iK5o=1ii&)(6)LWHy*z#ZD1Z#DBt1`;e9E&rS`&Dk5 zo}rHup;&6EwKB6{a)NWAz^%?dO+NKzziAoC^kC*pxsKFCg6VOD62W+2P|yxnCm8cT zXS2wv3&j1_w+XRogNf=un4zWz!_X@K-+L+Xz6fhkANMO!x;pGQzT#Bjfc+V5l`+2S zW-9f&;(;xae1WPKFA`2q=rLQb^uJ0nt-(-Tflzr>nLCX}+7cC^Nc*9L9A;J0Iz zKM^J+zL>6$M;WB!Ynp$b6AM&_X^Yi5m4T{2ex)4@)@wnV^q%T+)z8{Do|-Z)^-THI z*{z2Sv4)HuGh+CdA^T_jvc)8}U9}cd+m0Lhm{3)KZD+;pP=)QMTEimI60;_TeYWLu z!qqg!oEpAi)dT}Ijp0?LO*Y$Ot4dOPuKzeQSrLfYR>%oEp+pVesAp;1E-LM4pv1Z+ z5w_L7%;vI~9kl&?#uMos7YkUnU)|fGKrgF|>n*2-$+PXO3Okyxv>es8RqKQ*5_X(k z;*pvNgQ9EO3NpkRdwgw?H8&8lCaNRlR-IYipqN^idxf03#Il4>!$@}!2-OBCGtt!O zg=;hO=Qy#19nk52WFU2P@wtp7BjWjB)VjGgqBo-Nq%*xMmByG|i1ii&GC()Mj>=Akc|5S! delta 7375 zcmYM&349b~n#b{%90Uji5)ep&Pyys7gd^OLaC;#NGI%jiNf+rR>8{uZ5EyAh1_WdU z;-G`NGAOR&v4|~<%iztSGoyGc3yv7naUEIE9cIK)7j=LCt_swLC*SvdtNT5k_pM6w zoyLr#TQibP1zEo`T-{m_c%hXsD=44LSF15^bTKA{Z(>KhqpLARxW)Hr%%Oe+`KmdJ zt?`8Kr#ON7S-c(x6dE%WS73=TN%IVawlo~YJUof&@QmO759D8Z)Y*d3_4zPfhRd-G zH>2kKDz3-(k$+}>vDe=+WI(eDd*e=Q&G_aB1r}%CMNQze@3($?4rysadk@UT0jL#@ z#L-xZ8n^+Kp^bk15#K$ieqTpT=soO@U*fZjZ@OG=OaR}&xj48xv&Osd1^fgD;`SZ{ z9>yxPEn}|5gQyJUv%F3?5Z7QO>i!{A#tM3R6YYUn)Q4hH9gn0i7^|=pH=|bgGHOL{ zqJI1N;fq!7!;%YpA>#<@G+k$W6I@Gf6hPzQ)l+TZ8Sc&@FT5OLmVrzU0v+y|b zrKprn#0PK=vRHE#+hAv&HD#s*C*yD&j!RH0d=izZ zBbbNB{Q768@BJOsf7Z}+e@RnFK_BdmdYp!%I;=wtyaUzYA5arL;n&aLPU_zwyJ#L7 zW(?=jbmPlBNTvd{rSq{I1IT$b+fn_zl&S!20x?lt~@LJT?Z9^TlU8og5iND9UP^W)Ao#=(O6_xtGp(dC)ft^za zg%i9E`=K&08aXFsCi3W;mB>rXJm%LAqcU+8m5FcgPFy|Fd%j_UuC>dnT*W`=v1f`%$P+T+hq@A`kD2F$<8%S;J!o=r7&)|2}nh5j@=ha5fV`{Banxg!JKOu6QG&(#9Ja(Gs7$<#+S+s2 z8Vl*P0DECl1COL2r=bSE5!;}PTG?{c7uTXzuo=7Je$?mR$9(+C*WBpsc>!9q_ryLp z1wX*Wcn?mUOaAri_gyx~!Lpx`9^8hSu{)1v9`DCEj=#wmcE#*LZH2kn8@LF!QXPb3 z*Sw5cK!;nri4rk1m$zc$}{Q#Fttb@((Y z#m}S8!eOk&<2VS%E%1Kp1yOsy7M0>ncmRtQ@><5@n84Mx_i9dlOJN)hEvmc$CSWV- zvrv0~6KaA1zkVlnqP_`#!kwtYw3FHNz`dx69>ebVS5&H72E14DP}EkB!n^eRKTP31 z8cJxLjQj9@{0@JOTX=|v;J_MVX5g(j6(2=S>dZWgTJb5=_kTj|dH!PW&{?Q6QHFX< zr=rflEvU!*b{x$3CP`rgK7;-7Q&dXZ)_Mc?K&@mHzJ^n9Betyb9t_#$dgKS7=1A5jy^jJb-8LEEeF2C7c&LgPPbiOTB?_LoIk2cE(Lf3KoUOa3mhWVR!+{ zaL6)mfQ6_DY{uW>4&01aH+YZPhp0?^kL@sPxpx){us8KCsDa0$7H|U=VRE70umbhL z4Ooi1u^%?!Aj~13kK+g|#}845DgPJ7jKvA4&n-iagV}}C@UlDT3vWffVsck{nOKKB zxk>XVh2grvRs>q`s}i-hkFE0l_WL6$h39YxX57hZ8i!#Ko<$3DR(qf8hx4e9!2oW- z_V^82*pj!7GSC-is2I4P-E}q`>)AS1djrg2UCa)&86Q{KQ-%z-pXuf`;@Hp|C<_7FZkiGPE6+iW7 z+RyNJM6YzK_d7wwr~SHMq3KIcl&>1`1^-TDP;P}oiSfiUgsumOM~P#^QN~YSMSS>QDd~~Y=}r(K z;z}Zyd%9+Nq~CD-iZBJV|2O_XWDy&Q{X{*%8(V*cng1np<@^V}!Dl)UzomZ0Zxgo> z|D!z^>^D~U{>oSA8P}!%LHRw_5Pu}TC29#>uM&%hUl0cgU3wIC{R{CtF+dfrmc)izvT(cW*LK)Kp)FZA2| zYMPh%Il1`^sAW0v2GNyB5z~mR#9c%-9q9e=KGA&LL!l3`fv|~8ViR#4aSgGAm_alV z*+d&6lYaD`c#W7(B+v7s6OF6!9YWWq#9PGgi7mutLRUKv^CJF<_$$$m7((dM3+e)~ zn^;S{M64%t{gcQe@`>q04&gTEUs+g3=qeyyCoUrn6JHUBh!+UMMEAl<;$fmQ^*`fS z;sEg(q037Dy!0bVv6#>53KFHnIAWFF0UuHLKjKMZII)w^6(<^rUlWfIZRwyZ(VBAe z)v39F;JgvaS!b@@>Rr+~|xBF@|`I=s>(jd`+|^<`8!h zBMDu%5O<_Y#{3c|63d7ce%mgbM`RGs5&CZo{hw9SrgiJqlj2r9=vb+*yF8qcnqOR% zom4d%stLxe`np6-C}J&gqgI2Ph*}ZH3B)R_=}|Xq#hmDpP_<))B5|iCYR5xvBxc23 z%UR~eL)BJwA{KYUq2=ChOs*jwWMZY( zl&E9J>DeMTQHBq?G3IX7yMbyu7Eezn7Ic?ValC{tb)&VV*3G2HX0>cZwHt{?i`_bF zX(%4F+$B!bDlZ>YR#xWkRV-CGVrM}II}#&D;fwQVY?@vP zn-OC((mNgwky$s=Sk|Yo@mx`9WB=l^RQDO9bJ`3YZk3H0TRvj!u++lq_GYF|&;BAi z$zC|&L@nFupPUAp6vmub!VXyhCsMZ3T8onkJ4TYOW zuXCzGL5rhg*Vy3->niR>(gP>#xDHk##wzKy#*N!{WRPXY?SzJK)JOWH#X=R<^`W{@ zGU%zrVE@mhDOnZrbaN_vdsbJ%P~ zueSsC#odpUT9Y-kxLfObhfa@)PTj2Zu}jad-VQra^-^m`=|Y=R>LoFqai(A6&{h}H zXS@ugH?6$9^wRN5oePiabj6(XUg>jl(#g1V+;peb>%4K`>M0Ye?4X~pOP|rm%GP2# p5VGugc0b|odioAi4@Ky^)SBD4rM_!pboLdEznMKT6<%GP^Z(uykAVOH diff --git a/languages/wc-calypso-bridge-id_ID.po b/languages/wc-calypso-bridge-id_ID.po index 1e4969bc..efb45318 100644 --- a/languages/wc-calypso-bridge-id_ID.po +++ b/languages/wc-calypso-bridge-id_ID.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-13 09:54:24+0000\n" +"PO-Revision-Date: 2023-09-20 09:54:04+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "Tidak menemukan plugin yang sesuai dengan kebutuhan Anda? Mulai dari integrasi layanan hingga penyesuaian yang unik, tim ahli kami siap membantu Anda mewujudkannya." +msgid "Hire an expert" +msgstr "Sewa jasa profesional" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "Lakukan sesuai keinginan Anda" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "Tidak bisa menemukan yang Anda cari? Gunakan jasa salah satu agensi ahli kami! Dari ekstensi baru hingga pembuatan toko secara lengkap, Tim Ahli Woo kami bisa membantu mewujudkan toko impian Anda." #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Jelajahi Ekstensi" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "Ingin menambah fungsionalitas e-commerce toko Anda? Woo Marketplace punya ratusan ekstensi tepercaya yang dirancang khusus untuk toko Anda." #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "Sedang mencari metode pembayaran dan pengiriman yang lebih beragam? Ingin membuat situs keanggotaan, atau menerima donasi? Pilih dari ratusan Ekstensi yang diseleksi dengan cermat oleh tim kami." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "Dari peralatan SEO hingga fungsionalitas multibahasa, Anda bisa sesuaikan situs agar mampu melakukan apa pun yang Anda perlukan menggunakan plugin-plugin WordPress." #: build/plugins.js:1 -msgid "Extend your store" -msgstr "Perluas toko Anda" +msgid "Customize your website" +msgstr "Sesuaikan situs Anda" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "Serahkan semuanya kepada WordPress. Buat toko, hosting podcast, atau pamerkan karya Anda. Anda yang mengendalikan lebih dari 55.000 plugin." +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Tambahkan fungsionalitas dan fitur tambahan ke situs Anda dengan sekali klik. Upgrade ke paket berbayar dan dapatkan akses ke ribuan plugin WordPress gratis dan berbayar. Ingin menjadikan situs sesuai keinginan?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "Sesuaikan Situs WordPress Sesuka Anda" +msgid "Do it your way" +msgstr "Lakukan sesuai keinginan Anda" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Telusuri plugin" +msgid "Discover Extensions" +msgstr "Jelajahi Ekstensi" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "Ubah situs WordPress Anda menjadi apa pun yang Anda inginkan. Upgrade ke paket berbayar dan dapatkan akses ke ribuan plugin gratis dan berbayar. Ingin menjadikan situs sesuai keinginan?" +msgid "Extend your store" +msgstr "Perluas toko Anda" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Telusuri plugin" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -766,7 +770,6 @@ msgstr "Tips, trik, dan inspirasi eCommerce dari blog kami." #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "Dapatkan inspirasi" @@ -885,15 +888,15 @@ msgstr "Selama periode percobaan, Anda hanya bisa membuat pesanan uji coba! Untu msgid "Start selling to everyone" msgstr "Mulai berjualan ke semua orang" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Akun Saya" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "kontak" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Beranda" diff --git a/languages/wc-calypso-bridge-it_IT.mo b/languages/wc-calypso-bridge-it_IT.mo index 706d8f1cba4539c4df66d4aefa29b3043d46c525..a58abd104e914e8fe260e1e31ed1742aa4626a51 100644 GIT binary patch delta 7540 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 delta 7371 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 delta 7560 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 a3iYNl13{S!xj^rS(9U49@KehdM*SaYF~)%a diff --git a/languages/wc-calypso-bridge-ja.po b/languages/wc-calypso-bridge-ja.po index 3e804f1d..3b3aa38e 100644 --- a/languages/wc-calypso-bridge-ja.po +++ b/languages/wc-calypso-bridge-ja.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-14 08:54:05+0000\n" +"PO-Revision-Date: 2023-09-22 09:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "ニーズに合う適切なプラグインが見つかりませんか ? サービスの統合から特殊なカスタマイズまで、作業を適切に完了できるよう専門チームがお手伝いいたします。" +msgid "Hire an expert" +msgstr "エキスパートに依頼する" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "自分のやり方で" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "お探しのものが見つかりませんか ? 当社のエキスパートエージェンシーにお任せください。 新しい拡張機能からストア全体の構築まで、理想のストアの作成を当社の Woo エキスパートがお手伝いします。" #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "拡張機能を見る" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "ストアの eコマース機能を拡張したいですか ? Woo のマーケットプレイスには、お客様のストアのために特別に設計された、数百もの信頼できる拡張機能があります。" #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "他のお支払い方法と配送方法をお探しですか ? 会員サイトの作成や寄付の受け付けが必要ですか ? 当社のチームが厳選した何百もの拡張機能の中からお選びください。" +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "SEO ツールから多言語機能まで、WordPress プラグインを使用すると、サイトをカスタマイズして必要なことをすべて実行できます。" #: build/plugins.js:1 -msgid "Extend your store" -msgstr "ストアを拡大する" +msgid "Customize your website" +msgstr "サイトをカスタマイズする" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "WordPress ではさまざまなことが可能です。 ストアを作成したり、ポッドキャストをホストしたり、作品を掲載したりできます。 55,000を超えるプラグインを管理できます。" +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "ボタンをクリックするだけで、サイトに機能を追加できます。 有料プランにアップグレードすると、WordPress の何千もの無料プラグインと有料プラグインを利用できます。 何をできるか、興味が湧きましたか ?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "WordPress を大きく変える" +msgid "Do it your way" +msgstr "自分のやり方で" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "プラグインを表示" +msgid "Discover Extensions" +msgstr "拡張機能を見る" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "WordPress サイトを思いのままに作り変えましょう。 有料プランにアップグレードすると、何千もの無料プラグインと有料プラグインを利用できます。 何ができるかに関心がおありですか ?" +msgid "Extend your store" +msgstr "ストアを拡大する" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "プラグインを表示" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -121,7 +125,7 @@ msgstr "商品のイラスト" #: build/index.js:3 msgid "Everything is looking great, keep it up!" -msgstr "たいへんすてきです。その調子です !" +msgstr "とてもすてきです。その調子です !" #: build/index.js:3 msgid "Woo! We’ve made it to the last step! Great job" @@ -766,7 +770,6 @@ msgstr "当社ブログからのヒント、コツ、eコマースのインス #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "インスピレーションを受ける" @@ -885,15 +888,15 @@ msgstr "無料お試し期間中に行えるのはテスト注文のみです ! msgid "Start selling to everyone" msgstr "すべての人に販売を開始" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "マイアカウント" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "お問い合わせ" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "ホーム" diff --git a/languages/wc-calypso-bridge-ko_KR.mo b/languages/wc-calypso-bridge-ko_KR.mo index a5b98d6a679279d4208b0c0f7036a57a9bf71432..4fed1ed5d0cb73d0a2f39a4cc8fb90fd94559339 100644 GIT binary patch delta 7561 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 Jz5bbY{{yt5m}&q3 delta 7425 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 TiYFK!x2Yf{B^tJ?Z|nPi$D7<6 delta 8125 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 diff --git a/languages/wc-calypso-bridge-pt_BR.po b/languages/wc-calypso-bridge-pt_BR.po index e4656228..80970a54 100644 --- a/languages/wc-calypso-bridge-pt_BR.po +++ b/languages/wc-calypso-bridge-pt_BR.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-14 08:54:05+0000\n" +"PO-Revision-Date: 2023-09-21 09:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,72 +12,76 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "Não consegue encontrar o plugin certo? Desde integrações de serviços até personalizações diferenciadas, nossa equipe de especialistas pode ajudar você nessa." +msgid "Hire an expert" +msgstr "Contrate um especialista" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "Faça do seu jeito" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "Não encontrou o que você está procurando? Contrate uma de nossas agências especializadas. Desde novas extensões à elaboração de lojas completas, nossos especialistas do Woo ajudam você a criar a loja dos seus sonhos." #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Explore extensões" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "Quer expandir a funcionalidade de comércio eletrônico da sua loja? O Woo Marketplace tem centenas de extensões confiáveis desenvolvidas especificamente para sua loja." #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "Procurando por mais métodos de pagamento e envio? Deseja criar um site para assinantes ou aceitar doações? Escolha entre as centenas de extensões selecionadas a dedo pelo nosso time." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "Desde ferramentas de SEO a funcionalidades em vários idiomas, os plugins do WordPress permitem personalizar seu site para fazer o que você precisa." #: build/plugins.js:1 -msgid "Extend your store" -msgstr "Amplie sua loja" +msgid "Customize your website" +msgstr "Personalize o seu site" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "Com o WordPress, você pode fazer qualquer coisa. Crie uma loja, tenha um podcast ou exiba seu trabalho. Você quem manda, com mais de 55.000 plugins." +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Adicione mais funcionalidades ao seu site com apenas um clique. Faça upgrade para um plano pago e acesse milhares de plugins gratuitos e pagos do WordPress. Quer descobrir o que é possível?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "Transformar o WordPress" +msgid "Do it your way" +msgstr "Faça do seu jeito" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Procurar plugins" +msgid "Discover Extensions" +msgstr "Conheça as extensões" + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "Amplie sua loja" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "Transforme seu site WordPress naquilo que deseja. Faça upgrade para um plano pago e obtenha acesso a milhares de plugins gratuitos e pagos. Quer descobrir o que é possível?" +msgid "Browse plugins" +msgstr "Procurar plugins" #: build/plugins.js:1 msgid "Make anything happen, with plugins" -msgstr "Com os plugins, faça o que quiser" +msgstr "Com os plugins, tudo é possível" #: build/payment-gateway-suggestions.js:3 msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Obtenha funcionalidades melhoradas e correções mais rápidas compartilhando dados não pessoais por meio do {{link}}rastreamento de uso{{/link}} que nos mostra como o WooCommerce é usado. Nenhum dado pessoal é rastreado ou armazenado." +msgstr "Obtenha funcionalidades melhoradas e correções mais rápidas compartilhando dados não confidenciais por meio do {{link}}rastreamento de uso{{/link}}, que nos mostra como o WooCommerce é usado. Nenhum dado pessoal é rastreado ou armazenado." #: build/marketing.js:1 msgid "Create digital gift cards" -msgstr "Crie cartões de presente digitais" +msgstr "Crie cartões-presente digitais" #: build/marketing.js:1 msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Comece a vender e aceitar cartões de presente digitais para aumentar a fidelidade dos clientes, gerar mais receita e apresentar sua loja a novos compradores." +msgstr "Comece a vender e aceitar cartões-presente digitais para aumentar a fidelidade dos clientes, gerar mais receita e apresentar sua loja a novos compradores." #: build/marketing.js:1 msgid "Increase customer loyalty with gift cards" -msgstr "Aumente a lealdade dos clientes com cartões de presente" +msgstr "Aumente a fidelidade dos clientes com cartões-presente" #: build/marketing.js:1 msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Exiba seus produtos para milhões de compradores engajados que navegam nas plataformas TikTok, Pinterest e Meta com a publicidade em redes sociais." +msgstr "Exiba seus produtos para milhões de compradores engajados que navegam pelo TikTok, Pinterest e plataformas Meta com a publicidade em redes sociais." #: build/marketing.js:1 msgid "Reach more customers across social media" -msgstr "Alcance mais clientes por meio das redes sociais" +msgstr "Alcance mais clientes usando redes sociais" #: build/marketing.js:1 msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Alcance compradores ativos em todo o Google com listagens de produtos e anúncios que você pode criar e gerenciar diretamente no seu painel." +msgstr "Alcance compradores ativos em todo o Google com catálogos de produtos e anúncios que você pode criar e gerenciar diretamente no seu painel." #: build/marketing.js:1 msgid "Advertise your products on Google" @@ -105,7 +109,7 @@ msgstr "Expanda seu negócio com centenas de extensões" #: build/marketing.js:1 msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Alcance mais clientes e expanda seus negócios com as nossas ferramentas integradas de marketing e de publicidade. Faça upgrade para um plano pago para desbloquear nossas poderosas ferramentas de marketing e comece a expandir seu negócio hoje mesmo!" +msgstr "Alcance mais clientes e expanda seus negócios com as nossas ferramentas integradas de marketing e de publicidade. Faça upgrade para um plano pago para desbloquear nossas eficientes ferramentas de marketing e comece a expandir seu negócio hoje mesmo!" #: build/marketing.js:1 msgid "Get ready to grow your business" @@ -121,11 +125,11 @@ msgstr "Ilustração de produtos" #: build/index.js:3 msgid "Everything is looking great, keep it up!" -msgstr "Está tudo muito bonito, continue assim!" +msgstr "Está tudo muito bom, continue assim!" #: build/index.js:3 msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Oba! Chegamos à última etapa! Bom trabalho" +msgstr "Oba! Chegamos à última etapa. Bom trabalho" #: build/index.js:3 msgid "Only a few more tasks to tick off!" @@ -143,7 +147,7 @@ msgstr "Boas-vindas a %s" #. translators: 1: completed tasks, 2: total tasks #: build/index.js:2 msgid "%1$d out of %2$d complete." -msgstr "%1$d de %2$d concluído." +msgstr "%1$d de %2$d tarefas concluída(s)." #: build/index.js:1 msgid "You’re almost ready to start selling! Follow these steps to set up your test store." @@ -183,11 +187,11 @@ msgstr "Opções da lista de tarefas" #: build/index.js:1 msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "Parabéns! Tire um momento para comemorar. E, quando estiver tudo pronto para lançar sua loja, você só precisa fazer upgrade para um plano pago. Isso também desbloqueará as duas próximas tarefas na lista de tarefas." +msgstr "Parabéns! Tire um momento para comemorar. E, quando quiser lançar sua loja, você só precisa fazer upgrade para um plano pago. Isso também desbloqueará as duas próximas tarefas na lista de tarefas." #: build/index.js:1 msgid "Woohoo! Your trial store has been set up!" -msgstr "Oba! Sua loja de teste foi configurada!" +msgstr "Oba! Sua loja de teste foi configurada." #: build/index.js:1 msgid "You're awesome! One less item on your to-do list ✅" @@ -211,7 +215,7 @@ msgstr "Configurar impostos manualmente" #: build/index.js:1 msgid "Choose a tax partner" -msgstr "Escolher um parceiro para impostos" +msgstr "Escolher um parceiro fiscal" #: build/index.js:1 msgid "WooCommerce Tax can automate your sales tax calculations for you." @@ -227,11 +231,11 @@ msgstr "Automatizar impostos" #: build/index.js:1 msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Vá para a tela de configurações de taxas de impostos para configurar suas taxas de impostos" +msgstr "Vá para a tela de configurações de impostos para configurá-los" #: build/index.js:1 msgid "Configure tax rates" -msgstr "Configurar taxas de impostos" +msgstr "Configurar impostos" #: build/index.js:1 msgid "The address from which your business operates" @@ -259,7 +263,7 @@ msgstr "País" #: build/index.js:1 msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "Ao clicar em \"Configurar\", você ativa as taxas de impostos e os cálculos. Obtenha mais informações {{link}}aqui{{/link}}." +msgstr "Ao clicar em \"Configurar\", você ativa os impostos e os cálculos. Saiba mais {{link}}aqui{{/link}}." #: build/index.js:1 msgid "Configure" @@ -271,11 +275,11 @@ msgstr "Prossiga com a configuração" #: build/index.js:1 msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "Ao instalar o WooCommerce Tax e o Jetpack você concorda com os {{link}}Termos de Serviço{{/link}}." +msgstr "Ao instalar o WooCommerce Tax e o Jetpack, você concorda com os {{link}}Termos de serviço{{/link}}." #: build/index.js:1 msgid "100% free" -msgstr "100% gratuito" +msgstr "100% grátis" #: build/index.js:1 msgid "Powered by {{link}}Jetpack{{/link}}" @@ -283,7 +287,7 @@ msgstr "Com tecnologia {{link}}Jetpack{{/link}}" #: build/index.js:1 msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Conformidade com nexo econômico {{strong}}único{{/strong}}" +msgstr "Conformidade com nexus econômico {{strong}}único{{/strong}}" #: build/index.js:1 msgid "Real-time sales tax calculation" @@ -303,11 +307,11 @@ msgstr "Obtenha mais vendas" #: build/index.js:1 msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Faça upgrade para um plano pago para desbloquear novas funcionalidades e começar a vender" +msgstr "Desbloqueie novas funcionalidades e comece a vender ao fazer upgrade para um plano pago" #: build/index.js:1 msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "No momento, você está usando o teste gratuito. Para ter acesso a toda gama de funcionalidades, faça upgrade para um plano pago." +msgstr "No momento, você está no teste gratuito. Para ter acesso a toda gama de funcionalidades, faça upgrade para um plano pago." #: build/index.js:1 src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" @@ -323,7 +327,7 @@ msgstr "Configuração obrigatória" #: build/index.js:1 msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Receba e gerencie pagamentos recorrentes e receba depósitos automáticos na conta bancária indicada." +msgstr "Obtenha e gerencie pagamentos recorrentes e receba depósitos automáticos na conta bancária indicada." #: build/index.js:1 msgid "Sell to international markets and accept more than 135 currencies with local payment methods." @@ -331,7 +335,7 @@ msgstr "Venda para mercados internacionais e aceite mais de 135 moedas com méto #: build/index.js:1 msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Ofereça aos seus clientes a forma de pagamento preferida deles, incluindo pagamentos com cartão de débito e crédito, Apple Pay, Sofort, SEPA, iDeal e muito mais." +msgstr "Permita que seus clientes paguem como preferirem, incluindo pagamentos com cartão de débito e crédito, Apple Pay, Sofort, SEPA, iDeal e muito mais." #: build/index.js:1 msgid "Accepted payment methods include:" @@ -339,7 +343,7 @@ msgstr "Os métodos de pagamento aceitos incluem:" #: build/index.js:1 msgid "& more." -msgstr "e mais." +msgstr "e muito mais." #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" @@ -347,11 +351,11 @@ msgstr "Navegar pelas extensões" #: includes/tasks/class-wc-calypso-task-headstart-products.php:95 msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." -msgstr "Adicione seus produtos. Exiba seus produtos ou serviços e prepare-se para começar a vender – adicione informações, imagens e descrições dos produtos." +msgstr "Adicione seus produtos. Exiba seus produtos ou serviços e se prepare para começar a vender: adicione informações, imagens e descrições dos produtos." #: includes/tasks/class-wc-calypso-task-headstart-products.php:89 msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." -msgstr "Importe seus produtos. Exiba seus produtos ou serviços e prepare-se para começar a vender – adicione informações, imagens e descrições dos produtos existentes." +msgstr "Importe seus produtos. Exiba seus produtos ou serviços e prepare-se para começar a vender: importe informações, imagens e descrições dos seus produtos existentes." #: includes/tasks/class-wc-calypso-task-headstart-products.php:79 msgid "Add products" @@ -375,7 +379,7 @@ msgstr "Escolher tema" #: includes/tasks/class-wc-calypso-task-appearance.php:38 msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." -msgstr "Escolha um tema que melhor se adapte à aparência da sua marca e, em seguida, personalize-o. Altere as cores, adicione seu logotipo e crie páginas." +msgstr "Escolha um tema que melhor se adapte à aparência da sua marca e personalize-o. Altere as cores, adicione seu logotipo e crie páginas." #: includes/tasks/class-wc-calypso-task-appearance.php:29 msgid "Choose your theme" @@ -393,7 +397,7 @@ msgstr "Restaurar" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 msgid "\"Things to do next\"" -msgstr "\"Coisas a fazer\"" +msgstr "O que fazer a seguir" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 msgid "Setup task list" @@ -401,7 +405,7 @@ msgstr "Configurar lista de tarefas" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 msgid "Restore the visibility of the \"Things to do next\" Task List." -msgstr "Restaure a visibilidade da lista de tarefas \"Coisas a fazer\"." +msgstr "Restaure a visibilidade da lista de tarefas \"O que fazer a seguir\"." #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 msgid "Restore the visibility of the primary onboarding Task List." @@ -409,7 +413,7 @@ msgstr "Restaure a visibilidade da lista de tarefas de integração principal." #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." -msgstr "Use essas opções para restaurar a visibilidade das listas de tarefas de integração na página inicial do WooCommerce." +msgstr "Use estas opções para restaurar a visibilidade das listas de tarefas de integração na página inicial do WooCommerce." #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 msgid "Onboarding" @@ -417,7 +421,7 @@ msgstr "Integração" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 msgid "A custom navigation experience that is optimized for selling." -msgstr "Uma experiência de navegação personalizada otimizada para vendas." +msgstr "Uma experiência de navegação personalizada e otimizada para vendas." #: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." @@ -754,11 +758,11 @@ msgstr "Falta pouco para sua loja estar pronta para receber pagamentos" #: assets/scripts/free-trial-wc-payments.js:49 msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." -msgstr "Os depósitos não estão disponíveis durante o período de teste gratuito. Para começar a processar transações reais e receber pagamentos, faça upgrade para um plano pago." +msgstr "Os depósitos não estão disponíveis durante o teste gratuito. Para começar a processar transações reais e receber pagamentos, faça upgrade para um plano pago." #: assets/scripts/free-trial-wc-payments.js:41 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Somente administradores e gerentes de loja podem fazer pedidos durante o período de teste gratuito. Se sua loja já estiver pronta para aceitar pagamentos de clientes, faça upgrade para um plano pago." +msgstr "Somente administradores e gerentes de loja podem fazer pedidos durante o teste gratuito. Se sua loja já estiver pronta para aceitar pagamentos de clientes, faça upgrade para um plano pago." #: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." @@ -766,7 +770,6 @@ msgstr "Dicas, truques e inspirações de comércio eletrônico do nosso blog." #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "Busque inspiração" @@ -796,7 +799,7 @@ msgstr "Navegar pelas extensões" #: includes/templates/html-admin-page-addons-landing-page.php:19 msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." -msgstr "Personalize sua loja com as extensões WooCommerce para que ela combine perfeitamente com seus negócios. Faça upgrade para um plano pago e obtenha acesso a centenas de ferramentas e funcionalidades que podem ajudar você a alcançar seus objetivos. Quer saber o que está disponível? Navegue pelo nosso marketplace de extensões." +msgstr "Deixe sua loja com a cara dos seus negócios usando as extensões do WooCommerce. Faça upgrade para um plano pago e obtenha acesso a centenas de ferramentas e funcionalidades que podem ajudar você a alcançar seus objetivos. Quer saber o que está disponível? Navegue pelo nosso marketplace de extensões." #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 @@ -885,15 +888,15 @@ msgstr "Durante o período de teste gratuito, você só pode fazer pedidos de te msgid "Start selling to everyone" msgstr "Comece a vender para todo mundo" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Minha conta" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "contato" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Inicial" diff --git a/languages/wc-calypso-bridge-ru_RU.mo b/languages/wc-calypso-bridge-ru_RU.mo index 84a0c779c89664199ca0f83b5637aa293be449b0..f0f91d3254a6fb7ec640cf5e028c58456de232f2 100644 GIT binary patch delta 8212 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 diff --git a/languages/wc-calypso-bridge-ru_RU.po b/languages/wc-calypso-bridge-ru_RU.po index bde293bb..2b0386d8 100644 --- a/languages/wc-calypso-bridge-ru_RU.po +++ b/languages/wc-calypso-bridge-ru_RU.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-14 12:54:05+0000\n" +"PO-Revision-Date: 2023-09-21 17:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "Не можете найти подходящий плагин? Наша команда специалистов поможет справиться с любой задачей, от интеграции служб до создания самых причудливых настроек." +msgid "Hire an expert" +msgstr "Нанять эксперта" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "Делайте всё по-своему" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "Не можете найти то, что вам нужно? Воспользуйтесь услугами одного из наших экспертных агентств! Специалисты из Woo Experts помогут создать магазин вашей мечты: всё — от новых расширений до создания с нуля «под ключ»." #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Знакомьтесь с расширениями" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "Хотите расширить функциональность вашего магазина? На Woo Marketplace вы найдёте сотни проверенных расширений, созданных специально для вашего магазина." #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "Ищете альтернативные способы оплаты и доставки товаров? Хотите создать сайт с подпиской или принимать пожертвования? Мы подберем для вас сотни расширений, и вы сможете выбрать нужное." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "От инструментов поисковой оптимизации до поддержки различных языков: плагины WordPress помогут вам настроить сайт именно так, как вы хотите." #: build/plugins.js:1 -msgid "Extend your store" -msgstr "Развивайте свой магазин" +msgid "Customize your website" +msgstr "Настройка веб-сайта" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "WordPress поможет решить любые задачи. Создать магазин, разместить подкаст или похвастаться работой. В вашем распоряжении 55 000 плагинов." +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Добавляйте дополнительные функции и возможности одним нажатием кнопки. Перейдите на платный тарифный план и получите доступ к тысячам платных и бесплатных плагинов WordPress . Хотите узнать, где границы возможного?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "Преобразуйте WordPress" +msgid "Do it your way" +msgstr "Делайте всё по-своему" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Плагины" +msgid "Discover Extensions" +msgstr "Знакомьтесь с расширениями" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "Превратите ваш веб-сайт WordPress во что угодно. Перейдите на платный тариф и получите доступ к тысячам платных и бесплатных плагинов. Хотите узнать, где границы возможного?" +msgid "Extend your store" +msgstr "Развивайте свой магазин" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Плагины" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -105,7 +109,7 @@ msgstr "Развивайте свой бизнес с помощью сотен #: build/marketing.js:1 msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Встроенные маркетинговые и рекламные инструменты помогут вам охватить больше клиентов и развивать бизнес Перейдите на платный тариф, чтобы получить доступ к мощным маркетинговым инструментам и сразу же приступить к развитию бизнеса!" +msgstr "Встроенные маркетинговые и рекламные инструменты помогут вам охватить больше клиентов и развивать бизнес. Перейдите на платный тариф, чтобы получить доступ к мощным маркетинговым инструментам и сразу же приступить к развитию бизнеса!" #: build/marketing.js:1 msgid "Get ready to grow your business" @@ -167,7 +171,7 @@ msgstr "Ваш отзыв очень важен для нас!" #: build/index.js:1 msgid "How was your experience?" -msgstr "Как вам это понравилось?" +msgstr "Каковы ваши впечатления?" #: build/index.js:1 msgid "Hide this" @@ -183,7 +187,7 @@ msgstr "Параметры списка задач" #: build/index.js:1 msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "Поздравляем! Возьмите паузу, чтобы отпраздновать. И когда вы уже будете готовы к запуску магазина, всё, что вам останется сделать — перейти на платный тариф. Так вы сможете получить доступ ещё к двум задачам из списка." +msgstr "Поздравляем! Возьмите паузу, чтобы отпраздновать. И когда вы уже будете готовы к запуску магазина, всё, что вам останется сделать, — перейти на платный тариф. Так вы сможете получить доступ ещё к двум задачам из списка." #: build/index.js:1 msgid "Woohoo! Your trial store has been set up!" @@ -191,7 +195,7 @@ msgstr "Ура! Пробная версия магазина настроена! #: build/index.js:1 msgid "You're awesome! One less item on your to-do list ✅" -msgstr "Вы отлично справились! В вашем списке задач стало на один пункт меньше✅" +msgstr "Вы отлично справились! В вашем списке задач стало на один пункт меньше ✅" #: build/index.js:1 msgid "There was a problem setting up automated taxes. Please try again." @@ -203,7 +207,7 @@ msgstr "В течение бесплатного пробного периода #: build/index.js:1 msgid "I don't charge sales tax" -msgstr "Я не взимаю налог с продаж" +msgstr "Я не взимаю налога с продаж" #: build/index.js:1 msgid "Set up taxes manually" @@ -215,7 +219,7 @@ msgstr "Выберите налогового партнёра" #: build/index.js:1 msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "Сервис «Налоги» WooCommerce Services может автоматизировать расчёт налогов с продаж." +msgstr "Плагин WooCommerce Tax может автоматизировать расчёт налогов с продаж." #: build/index.js:1 msgid "Automate Taxes" @@ -259,7 +263,7 @@ msgstr "Страна/регион" #: build/index.js:1 msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "Нажав «Настроить», вы включаете налоговые ставки и расчеты. Дополнительные сведения см. {{link}}здесь{{/link}}." +msgstr "Нажав «Настроить», вы включаете налоговые ставки и расчёты. Дополнительные сведения см. {{link}}здесь{{/link}}." #: build/index.js:1 msgid "Configure" @@ -275,7 +279,7 @@ msgstr "Устанавливая плагины WooCommerce Tax и Jetpack, вы #: build/index.js:1 msgid "100% free" -msgstr "100% бесплатно" +msgstr "100 % бесплатно" #: build/index.js:1 msgid "Powered by {{link}}Jetpack{{/link}}" @@ -283,7 +287,7 @@ msgstr "На сайте используется {{link}}Jetpack{{/link}}" #: build/index.js:1 msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Соблюдение {{strong}}единых{{/strong}} налоговых обязательств @@@@@" +msgstr "Соблюдение {{strong}}единых{{/strong}} правил определения экономических связей" #: build/index.js:1 msgid "Real-time sales tax calculation" @@ -291,11 +295,11 @@ msgstr "Расчёт налога с продаж в реальном време #: build/index.js:1 msgid "Best for new stores" -msgstr "Подходит для новых магазинов" +msgstr "Оптимально для новых магазинов" #: build/index.js:1 msgid "WooCommerce Tax" -msgstr "Налоги WooCommerce" +msgstr "WooCommerce Tax" #: build/index.js:1 msgid "Get more sales" @@ -307,15 +311,15 @@ msgstr "Перейдите на платный тариф, чтобы получ #: build/index.js:1 msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Сейчас у вас бесплатный пробный период. Чтобы получить доступ ко всем функциям, перейдите на платный тариф." +msgstr "Сейчас для вас действует бесплатный пробный период! Чтобы получить доступ ко всем функциям, перейдите на платный тариф." #: build/index.js:1 src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" -msgstr "Введение в модальную навигацию, изображение 1 @@@@@" +msgstr "Иллюстрация 1. Введение в модальную навигацию" #: build/index.js:1 src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" -msgstr "Введение в модальную навигацию, изображение 2 @@@@@" +msgstr "Иллюстрация 2. Введение в модальную навигацию" #: build/index.js:1 msgid "Setup required" @@ -347,11 +351,11 @@ msgstr "Просмотр расширений" #: includes/tasks/class-wc-calypso-task-headstart-products.php:95 msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." -msgstr "Добавить товары Демонстрируйте свои товары и услуги и готовьтесь к началу продаж: загрузите сведения о товарах, изображения и описания." +msgstr "Добавьте товары. Демонстрируйте свои товары и услуги и готовьтесь к началу продаж: загрузите сведения о товарах, изображения и описания." #: includes/tasks/class-wc-calypso-task-headstart-products.php:89 msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." -msgstr "Импортировать товары Демонстрируйте свои товары и услуги и готовьтесь к началу продаж: загрузите сведения о товарах, изображения и описания." +msgstr "Импортируйте товары. Демонстрируйте свои товары и услуги и готовьтесь к началу продаж: импортируйте сведения о товарах, изображения и описания." #: includes/tasks/class-wc-calypso-task-headstart-products.php:79 msgid "Add products" @@ -401,11 +405,11 @@ msgstr "Список задач по настройке" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 msgid "Restore the visibility of the \"Things to do next\" Task List." -msgstr "Показывать список задач по настройке «Что дальше»" +msgstr "Показывать список задач по настройке «Что дальше»." #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 msgid "Restore the visibility of the primary onboarding Task List." -msgstr "Показывать список задач по первичной адаптации" +msgstr "Показывать список задач по первичной адаптации." #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." @@ -417,7 +421,7 @@ msgstr "Адаптация" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 msgid "A custom navigation experience that is optimized for selling." -msgstr "Настраиваемая навигация, приспособленная для продаж." +msgstr "Пользовательская навигация, приспособленная для продаж." #: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." @@ -766,7 +770,6 @@ msgstr "Советы, рекомендации и идеи по интернет #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "Вдохновляйтесь" @@ -885,15 +888,15 @@ msgstr "В течение пробного периода вы можете ра msgid "Start selling to everyone" msgstr "Начинайте продажи для всех" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Моя учётная запись" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "Связаться" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Главная страница" diff --git a/languages/wc-calypso-bridge-sv_SE.mo b/languages/wc-calypso-bridge-sv_SE.mo index 9facd04b1ce241bc669177d7ae93f69a4ec6c682..455ef9aedec565bb3e06000751368df11859a043 100644 GIT binary patch delta 7424 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 O{l%$$Vt1{$nDT!>r>m|2 diff --git a/languages/wc-calypso-bridge-sv_SE.po b/languages/wc-calypso-bridge-sv_SE.po index 03a7202f..0fa05742 100644 --- a/languages/wc-calypso-bridge-sv_SE.po +++ b/languages/wc-calypso-bridge-sv_SE.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-14 12:54:03+0000\n" +"PO-Revision-Date: 2023-09-20 13:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "Kan du inte hitta rätt tillägg för dina behov? Vårt team av experter kan hjälpa dig att få jobbet gjort på rätt sätt, från tjänsteintegreringar till exotiska anpassningar." +msgid "Hire an expert" +msgstr "Anlita en expert" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "Gör det på ditt sätt" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "Kan du inte hitta det du letar efter? Anlita en av våra expertbyråer. Från nya utökningar till hela butiksbyggen, våra Woo-experter kan hjälpa dig att skapa din drömbutik." #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Upptäck utökningar" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "Vill du utöka din butiks e-handelsfunktioner? Woo Marketplace har hundratals tillförlitliga utökningar utformade specifikt för din butik." #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "Letar du efter fler betalnings- och fraktmetoder? Vill du bygga en medlemskapswebbplats eller ta emot donationer? Välj bland hundratals olika utökningar, handplockade av vårt team." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "Från SEO-verktyg till flerspråksfunktionalitet, med WordPress-tillägg kan du anpassa din webbplats för att göra allt du behöver." #: build/plugins.js:1 -msgid "Extend your store" -msgstr "Utöka din butik" +msgid "Customize your website" +msgstr "Anpassa din webbplats" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "Få WordPress att göra vad som helst. Skapa en butik, starta en podcast eller visa upp ditt arbete. Med över 55 000 tillägg är det du som har kontrollen." +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Lägg till ytterligare funktioner till din webbplats med en knapptryckning. Uppgradera till ett betalpaket och få tillgång till tusentals gratis- och betaltillägg för WordPress. Är du nyfiken på vad som är möjligt?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "Omvandla WordPress" +msgid "Do it your way" +msgstr "Gör det på ditt sätt" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Bläddra bland tillägg" +msgid "Discover Extensions" +msgstr "Upptäck utökningar" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "Förvandla din WordPress-webbplats till vad du vill. Uppgradera till ett betalpaket och få tillgång till tusentals gratis- och betaltillägg. Är du nyfiken på vad som är möjligt?" +msgid "Extend your store" +msgstr "Utöka din butik" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Bläddra bland tillägg" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -255,7 +259,7 @@ msgstr "Adress" #: build/index.js:1 msgid "Country / Region" -msgstr "Land/Region" +msgstr "Land/region" #: build/index.js:1 msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." @@ -449,7 +453,7 @@ msgstr "Spara" #: src/payment-gateway-suggestions/plugins/Bacs.js:147 msgid "BIC / Swift" -msgstr "BIC / Swift" +msgstr "BIC/Swift" #: src/payment-gateway-suggestions/plugins/Bacs.js:139 msgid "IBAN" @@ -766,7 +770,6 @@ msgstr "Tips, tricks och e-handelsinspiration från vår blogg." #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "Bli inspirerad" @@ -885,15 +888,15 @@ msgstr "Under provperioden kan du bara lägga testbeställningar. För att ta em msgid "Start selling to everyone" msgstr "Börja sälja till alla" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Mitt konto" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "Kontakt" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Hem" diff --git a/languages/wc-calypso-bridge-tr_TR.mo b/languages/wc-calypso-bridge-tr_TR.mo index c86d1aed95c19c4097e214c601489fb51af00d9a..fe38ffc59e041be8beb878b7db9ea7347829ccf1 100644 GIT binary patch delta 7492 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 delta 7391 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 diff --git a/languages/wc-calypso-bridge-tr_TR.po b/languages/wc-calypso-bridge-tr_TR.po index cb76851d..993cd2a3 100644 --- a/languages/wc-calypso-bridge-tr_TR.po +++ b/languages/wc-calypso-bridge-tr_TR.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-13 13:54:04+0000\n" +"PO-Revision-Date: 2023-09-21 11:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "İhtiyaçlarınıza uygun eklentiyi bulamıyor musunuz? Hizmet entegrasyonlarından egzotik özelleştirmelere kadar çeşitli alanlarda uzman ekibimiz işlerinizi doğru yapmanıza yardımcı olabilir." +msgid "Hire an expert" +msgstr "Bir uzmanla çalışın" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "İstediğiniz gibi yapın" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "Aradığınız şeyi bulamıyor musunuz? Uzman ajanslarımızdan birini işe alın! Yeni uzantılardan tam mağaza kurulumlarına kadar çeşitli alanlarda destek veren Woo Uzmanlarımız hayallerinizdeki mağazayı oluşturmanıza yardımcı olabilir." #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Uzantıları Keşfedin" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "Mağazanızın e-ticaret işlevini genişletmek mi istiyorsunuz? Woo Pazar Yeri mağazanız için özel olarak tasarlanmış yüzlerce güvenilir uzantıya sahiptir." #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "Daha fazla ödeme ve gönderim yöntemi mi arıyorsunuz? Üyelik sitesi oluşturmak veya bağış kabul etmek mi istiyorsunuz? Ekibimizin özenle seçtiği yüzlerce Uzantı arasından seçim yapın." +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "SEO araçlarından birden fazla dil işlevine kadar WordPress eklentileriyle web sitenizi dilediğiniz her şeyi yapacak şekilde özelleştirebilirsiniz." #: build/plugins.js:1 -msgid "Extend your store" -msgstr "Mağazanızı genişletin" +msgid "Customize your website" +msgstr "Web sitenizi özelleştirin" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "WordPress'in dilediğiniz her şeyi yapmasını sağlayın. Mağaza oluşturun, podcast barındırın veya işinizi vitrine çıkarın. 55.000'den fazla eklenti ile kontrol sizin elinizde." +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "Bir düğmeye tıklayarak web sitenize ekstra işlev ve özellikler ekleyin. Ücretli bir pakete yükseltip binlerce ücretsiz ve ücretli WordPress eklentisine erişim edinin. Nelerin mümkün olduğunu mu merak ediyorsunuz?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "WordPress'i Dönüştürün" +msgid "Do it your way" +msgstr "İstediğiniz gibi yapın" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Eklentilere göz atın" +msgid "Discover Extensions" +msgstr "Uzantıları Keşfedin" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "WordPress sitenizi aklınıza koyduğunuz şeye dönüştürün. Ücretli bir pakete yükseltip binlerce ücretsiz ve ücretli eklentiye erişim edinin. Nelerin mümkün olduğunu mu merak ediyorsunuz?" +msgid "Extend your store" +msgstr "Mağazanızı genişletin" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "Eklentilere göz atın" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -766,7 +770,6 @@ msgstr "Blogumuzdan ipuçları, püf noktaları ve e-ticaret ilhamı." #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "İlham alma" @@ -885,15 +888,15 @@ msgstr "Ücretsiz deneme süresi boyunca sadece test siparişleri verebilirsiniz msgid "Start selling to everyone" msgstr "Herkese satış yapmaya başlama" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "Hesabım" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "İletişim" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "Başlangıç" diff --git a/languages/wc-calypso-bridge-zh_CN.mo b/languages/wc-calypso-bridge-zh_CN.mo index a102af21808efcd6169595634aca166256cead36..f2eee555a479933745ef72c8086bc314335eb2a0 100644 GIT binary patch delta 7489 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 IeV;e@KPlfRaR2}S diff --git a/languages/wc-calypso-bridge-zh_CN.po b/languages/wc-calypso-bridge-zh_CN.po index d345fe94..343f9417 100644 --- a/languages/wc-calypso-bridge-zh_CN.po +++ b/languages/wc-calypso-bridge-zh_CN.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-14 08:54:42+0000\n" +"PO-Revision-Date: 2023-09-20 15:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "无法找到符合需求的合适插件? 从服务集成到独特的自定义项,我们的专家团队能帮助您做好各项工作。" +msgid "Hire an expert" +msgstr "聘请专家" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "按照自己的方式进行" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "无法找到您要查找的内容? 聘请我们的专家代理机构! 从新扩展功能到全店建设,我们的 Woo Expertsthey 可帮助您打造梦想中的商店。" #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "了解扩展程序" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "希望扩展您商店的电子商务功能? Woo Marketplace 提供数百种值得信赖的扩展程序,专为您的店铺而设计。" #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "寻求更多付款和配送方式? 想要构建会员站点或接受捐赠? 从我们团队精挑细选的数百款扩展程序中进行选择。" +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "从搜索引擎优化工具到多语言功能,WordPress 插件可支持您对网站进行定制,满足您的任何需求。" #: build/plugins.js:1 -msgid "Extend your store" -msgstr "扩展您的商店" +msgid "Customize your website" +msgstr "定制您的网站" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "将一切交给 WordPress 来完成。 创建商店、托管播客或展示您的作品。 超过 55,000 款插件让您尽在掌控。" +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "只需点击按钮,即可为您的网站添加额外的功能和特性。 升级至付费套餐即可获得数千款免费和付费 WordPress 插件的使用权限。 想知道有哪些可能的功能?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "转变 WordPress" +msgid "Do it your way" +msgstr "按照自己的方式进行" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "浏览插件" +msgid "Discover Extensions" +msgstr "了解扩展程序" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "将您的 WordPress 站点变成您想要的任何形式。 升级至付费套餐即可获得数千款免费和付费插件的使用权限。 想知道有哪些可能功能?" +msgid "Extend your store" +msgstr "扩展您的商店" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "浏览插件" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -143,7 +147,7 @@ msgstr "欢迎使用 %s" #. translators: 1: completed tasks, 2: total tasks #: build/index.js:2 msgid "%1$d out of %2$d complete." -msgstr "已完成%1$d 项,共 %2$d 项。" +msgstr "已完成 %1$d 项,共 %2$d 项。" #: build/index.js:1 msgid "You’re almost ready to start selling! Follow these steps to set up your test store." @@ -191,7 +195,7 @@ msgstr "哇哦! 试用版商店已设置完成!" #: build/index.js:1 msgid "You're awesome! One less item on your to-do list ✅" -msgstr "您真棒! 任务清单上又少一项 ✅" +msgstr "您真棒! 任务清单上又少了一项 ✅" #: build/index.js:1 msgid "There was a problem setting up automated taxes. Please try again." @@ -303,7 +307,7 @@ msgstr "提升销售额" #: build/index.js:1 msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "升级至付费套餐,解锁新功能并开始销售。" +msgstr "升级至付费套餐,解锁更多功能并开始销售" #: build/index.js:1 msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." @@ -409,7 +413,7 @@ msgstr "恢复显示主登录任务列表。" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." -msgstr "使用这些选项可在 WooCommerce 主页中恢复显示主登录任务列表。" +msgstr "使用这些选项可在 WooCommerce 主页中恢复显示登录任务列表。" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 msgid "Onboarding" @@ -766,7 +770,6 @@ msgstr "来自我们博客的提示、技巧和电子商务灵感。" #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "受到启发" @@ -796,7 +799,7 @@ msgstr "浏览扩展程序" #: includes/templates/html-admin-page-addons-landing-page.php:19 msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." -msgstr "使用 Woo 扩展程序自定义您的商店,使其完美贴合您的业务。 升级至付费套餐,获得数百种工具和功能的使用权限,借此实现目标。 好奇有哪些可用功能? 浏览我们的扩展程序市场。" +msgstr "使用 WooCommerce 扩展程序自定义您的商店,使其完美贴合您的业务。 升级至付费套餐,获得数百种工具和功能的使用权限,借此实现目标。 好奇有哪些可用功能? 浏览我们的扩展程序市场。" #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 @@ -885,15 +888,15 @@ msgstr "在试用期间,您只能下达测试订单! 要接收来自客户 msgid "Start selling to everyone" msgstr "开始面向所有人销售" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "我的账户" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "联系" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "首页" diff --git a/languages/wc-calypso-bridge-zh_SG.mo b/languages/wc-calypso-bridge-zh_SG.mo index 72b75e0ab95fdd2f78578c31930974c750b681be..35ad65566b5af0a1fa3e3c21b9ccc3ea00abc2c8 100644 GIT binary patch delta 7489 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 IeV;e@KPlfRaR2}S diff --git a/languages/wc-calypso-bridge-zh_SG.po b/languages/wc-calypso-bridge-zh_SG.po index 80d13d9c..8dde835f 100644 --- a/languages/wc-calypso-bridge-zh_SG.po +++ b/languages/wc-calypso-bridge-zh_SG.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-14 08:54:42+0000\n" +"PO-Revision-Date: 2023-09-20 15:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "无法找到符合需求的合适插件? 从服务集成到独特的自定义项,我们的专家团队能帮助您做好各项工作。" +msgid "Hire an expert" +msgstr "聘请专家" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "按照自己的方式进行" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "无法找到您要查找的内容? 聘请我们的专家代理机构! 从新扩展功能到全店建设,我们的 Woo Expertsthey 可帮助您打造梦想中的商店。" #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "了解扩展程序" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "希望扩展您商店的电子商务功能? Woo Marketplace 提供数百种值得信赖的扩展程序,专为您的店铺而设计。" #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "寻求更多付款和配送方式? 想要构建会员站点或接受捐赠? 从我们团队精挑细选的数百款扩展程序中进行选择。" +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "从搜索引擎优化工具到多语言功能,WordPress 插件可支持您对网站进行定制,满足您的任何需求。" #: build/plugins.js:1 -msgid "Extend your store" -msgstr "扩展您的商店" +msgid "Customize your website" +msgstr "定制您的网站" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "将一切交给 WordPress 来完成。 创建商店、托管播客或展示您的作品。 超过 55,000 款插件让您尽在掌控。" +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "只需点击按钮,即可为您的网站添加额外的功能和特性。 升级至付费套餐即可获得数千款免费和付费 WordPress 插件的使用权限。 想知道有哪些可能的功能?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "转变 WordPress" +msgid "Do it your way" +msgstr "按照自己的方式进行" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "浏览插件" +msgid "Discover Extensions" +msgstr "了解扩展程序" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "将您的 WordPress 站点变成您想要的任何形式。 升级至付费套餐即可获得数千款免费和付费插件的使用权限。 想知道有哪些可能功能?" +msgid "Extend your store" +msgstr "扩展您的商店" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "浏览插件" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -143,7 +147,7 @@ msgstr "欢迎使用 %s" #. translators: 1: completed tasks, 2: total tasks #: build/index.js:2 msgid "%1$d out of %2$d complete." -msgstr "已完成%1$d 项,共 %2$d 项。" +msgstr "已完成 %1$d 项,共 %2$d 项。" #: build/index.js:1 msgid "You’re almost ready to start selling! Follow these steps to set up your test store." @@ -191,7 +195,7 @@ msgstr "哇哦! 试用版商店已设置完成!" #: build/index.js:1 msgid "You're awesome! One less item on your to-do list ✅" -msgstr "您真棒! 任务清单上又少一项 ✅" +msgstr "您真棒! 任务清单上又少了一项 ✅" #: build/index.js:1 msgid "There was a problem setting up automated taxes. Please try again." @@ -303,7 +307,7 @@ msgstr "提升销售额" #: build/index.js:1 msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "升级至付费套餐,解锁新功能并开始销售。" +msgstr "升级至付费套餐,解锁更多功能并开始销售" #: build/index.js:1 msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." @@ -409,7 +413,7 @@ msgstr "恢复显示主登录任务列表。" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." -msgstr "使用这些选项可在 WooCommerce 主页中恢复显示主登录任务列表。" +msgstr "使用这些选项可在 WooCommerce 主页中恢复显示登录任务列表。" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 msgid "Onboarding" @@ -766,7 +770,6 @@ msgstr "来自我们博客的提示、技巧和电子商务灵感。" #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "受到启发" @@ -796,7 +799,7 @@ msgstr "浏览扩展程序" #: includes/templates/html-admin-page-addons-landing-page.php:19 msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." -msgstr "使用 Woo 扩展程序自定义您的商店,使其完美贴合您的业务。 升级至付费套餐,获得数百种工具和功能的使用权限,借此实现目标。 好奇有哪些可用功能? 浏览我们的扩展程序市场。" +msgstr "使用 WooCommerce 扩展程序自定义您的商店,使其完美贴合您的业务。 升级至付费套餐,获得数百种工具和功能的使用权限,借此实现目标。 好奇有哪些可用功能? 浏览我们的扩展程序市场。" #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 @@ -885,15 +888,15 @@ msgstr "在试用期间,您只能下达测试订单! 要接收来自客户 msgid "Start selling to everyone" msgstr "开始面向所有人销售" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "我的账户" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "联系" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "首页" diff --git a/languages/wc-calypso-bridge-zh_TW.mo b/languages/wc-calypso-bridge-zh_TW.mo index c9aecf5b336428163b60910af081cc133cd8b11c..fb3908b30191373d62d64b53a2df22d612c39d2a 100644 GIT binary patch delta 8243 zcmaLb349bqzQFNH2;r1F;fO+W8$cu|pva{_R8%feE2)S?-+*NdCcc1r#OL`6;imtBsp02yU|8%o2?t9Pv_@8f8b$4~uzp5K> z)B4cO8$z9*b_*+19Jhribt{IoQ_4yCT32aR%HLBd4+gM1?(3ygA3S0DCbpsO!?t)G z=|cTr8roZ_iPSsdY@C5HxCi_5DD@VFjx=1yPWTf_haGr|w0B3El!kM0JYK>r=J|zD zN<~ml#8LP>%GfJ02hSsys)w1K^qYV@Sf%11p0Bo2kP&;3NvcMafxKhdY_@-k?P>3D z8-bB1_YJ^%a0JSOEhw2F2K~_l4iC)MFThGNELYf$T&XNEzC( z@^&XXkwX7yW{Zuu6z2^yF7zPRsydXly^8JeZ+Htz+GOCJuq}>6N%1(OYc≠03dN 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 delta 8128 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 BA^HFS diff --git a/languages/wc-calypso-bridge-zh_TW.po b/languages/wc-calypso-bridge-zh_TW.po index 98c5b54c..2f0059df 100644 --- a/languages/wc-calypso-bridge-zh_TW.po +++ b/languages/wc-calypso-bridge-zh_TW.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-14 08:54:05+0000\n" +"PO-Revision-Date: 2023-09-20 17:54:03+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,40 +12,44 @@ msgstr "" "Project-Id-Version: WooCommerce - Calypso Bridge\n" #: build/plugins.js:1 -msgid "Can’t find the right plugin for your needs? From service integrations to exotic customizations, our team of experts can help you get the job done right." -msgstr "找不到符合自身需求的外掛程式嗎? 從服務整合到充滿異國風味的自訂項目,我們的專家團隊都能協助你妥善完成。" +msgid "Hire an expert" +msgstr "聘請專家" #: build/plugins.js:1 -msgid "Do it your way" -msgstr "用自己的方式進行" +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "找不到正在尋找的內容嗎? 歡迎聘用我們的專業代理商! 從新的延伸功能到打造整間商店,我們的 Woo Expertsthey 可以幫你建立夢想中的商店。" #: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "探索擴充功能" +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "想拓展商店的電子商務功能嗎? Woo Marketplace 有數百個值得信賴的延伸功能,專為你的商店打造。" #: build/plugins.js:1 -msgid "Looking for more payment and shipping methods? Want to build a memberships site, or accept donations? Choose among hundreds of Extensions hand-picked by our team." -msgstr "在尋找更多的付款和運送方法嗎? 想建立會員網站,或接受捐款嗎? 從我們的團隊精挑細選的數百種擴充功能中,盡情選擇。" +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "從 SEO 工具到多語言功能,有了 WordPress 外掛程式,你可以自訂網站,實現一切所需。" #: build/plugins.js:1 -msgid "Extend your store" -msgstr "擴大商店" +msgid "Customize your website" +msgstr "自訂你的網站" #: build/plugins.js:1 -msgid "Make WordPress do anything. Create a store, host a podcast, or showcase your work. You are in control with over 55,000 plugins." -msgstr "讓 WordPress 代勞一切。 建立商店、主持 Podcast 或展示工作成果。 超過 55,000 種外掛程式,都掌握在你的手中。" +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "按一下按鈕,便能為網站新增額外功能。 升級為付費方案,即可使用數千種免費與付費 WordPress 外掛程式。 想知道哪些夢想能夠實現嗎?" #: build/plugins.js:1 -msgid "Transform WordPress" -msgstr "為 WordPress 改頭換面" +msgid "Do it your way" +msgstr "走自己的路" #: build/plugins.js:1 -msgid "Browse plugins" -msgstr "瀏覽外掛程式" +msgid "Discover Extensions" +msgstr "探索擴充功能" + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "擴大商店" #: build/plugins.js:1 -msgid "Turn your WordPress site into anything you set your mind on. Upgrade to a paid plan and gain access to thousands of free and paid plugins. Curious to find out what’s possible?" -msgstr "將你的 WordPress 網站改造成任何你一心嚮往的面貌。 升級為付費方案,即可使用數千種免費與付費外掛程式。 想知道哪些夢想能夠實現嗎?" +msgid "Browse plugins" +msgstr "瀏覽外掛程式" #: build/plugins.js:1 msgid "Make anything happen, with plugins" @@ -53,7 +57,7 @@ msgstr "透過外掛程式,實現一切" #: build/payment-gateway-suggestions.js:3 msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "透過{{link}}使用情況追蹤{{/link}}分享非敏感性資料,可以協助我們改善功能、快速修復程式。「使用情況追蹤」可讓我們知道你的 WooCommerce 使用情況。 我們不會追蹤或儲存任何個人資料。" +msgstr "透過「{{link}}使用情況追蹤{{/link}}」分享非敏感性資料,可以協助我們改善功能、快速修復程式。「使用情況追蹤」可讓我們知道你的 WooCommerce 使用情況。 我們不會追蹤或儲存任何個人資料。" #: build/marketing.js:1 msgid "Create digital gift cards" @@ -61,7 +65,7 @@ msgstr "製作數位禮物卡" #: build/marketing.js:1 msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "開始販售並接受數位禮物卡來提高顧客忠誠度、創造更多收益,並向新顧客介紹你的商店。" +msgstr "可開始販售和接受使用數位禮物卡,藉此提高顧客忠誠度、創造更多收益,並將商店介紹給新顧客。" #: build/marketing.js:1 msgid "Increase customer loyalty with gift cards" @@ -69,7 +73,7 @@ msgstr "透過禮物卡提高顧客忠誠度" #: build/marketing.js:1 msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "運用社群媒體廣告,向瀏覽 TikTok、Pinterest 和 Meta 平台的數百萬熱情買家展示自家產品。" +msgstr "運用社群媒體廣告,向瀏覽 TikTok、Pinterest 和 Meta 平台的數百萬積極買家展示自家產品。" #: build/marketing.js:1 msgid "Reach more customers across social media" @@ -77,7 +81,7 @@ msgstr "在社群媒體上觸及更多顧客" #: build/marketing.js:1 msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "透過可直接從儀表板建立及管理的產品清單和廣告,觸及整個 Google 上的活躍買家。" +msgstr "可直接在儀表板上建立及管理產品清單和廣告,全面觸及 Google 各處的活躍買家。" #: build/marketing.js:1 msgid "Advertise your products on Google" @@ -89,7 +93,7 @@ msgstr "試用 AutomateWoo" #: build/marketing.js:1 msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "透過呼應顧客購買資料的自動化行銷訊息,提高銷售額並建立忠誠度。" +msgstr "自動化的行銷訊息可呼應顧客購買資料,提高銷售額並建立忠誠度。" #: build/marketing.js:1 msgid "Automate your marketing" @@ -101,7 +105,7 @@ msgstr "探索我們的內建行銷工具,觸及更多顧客並提升銷售額 #: build/marketing.js:1 msgid "Grow your business with hundreds of extensions" -msgstr "透過數百個擴充功能,拓展你的業務" +msgstr "透過數百個擴充功能,讓生意蓬勃發展" #: build/marketing.js:1 msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" @@ -109,7 +113,7 @@ msgstr "運用我們的內建行銷和廣告工具,觸及更多顧客並拓展 #: build/marketing.js:1 msgid "Get ready to grow your business" -msgstr "準備好拓展業務" +msgstr "準備讓生意蓬勃發展" #: build/index.js:3 src/task-headers/appearance.js:29 msgid "Appearance illustration" @@ -138,16 +142,16 @@ msgstr "歡迎蒞臨你的 Woo Express 商店" #. translators: %s = site title #: build/index.js:3 msgid "Welcome to %s" -msgstr "歡迎造訪 %s" +msgstr "歡迎造訪「%s」" #. translators: 1: completed tasks, 2: total tasks #: build/index.js:2 msgid "%1$d out of %2$d complete." -msgstr "已完成 %1$d 個,共 %2$d 個。" +msgstr "已完成 %1$d 項,共 %2$d 項。" #: build/index.js:1 msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "你即將準備好開始販售! 請依照這些步驟,設定測試商店。" +msgstr "就快要可以開始販售了! 請依照這些步驟,設定測試商店。" #: build/index.js:1 msgid "Hide setup list" @@ -175,7 +179,7 @@ msgstr "隱藏此項目" #: build/index.js:1 msgid "Show setup task list" -msgstr "顯示設定工作清單" +msgstr "顯示設定任務清單" #: build/index.js:1 msgid "Task List Options" @@ -183,11 +187,11 @@ msgstr "任務清單選項" #: build/index.js:1 msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "恭喜! 花點時間慶祝一下吧。 準備好推出商店後,只要升級為付費方案即可。 升級後,也會解鎖任務清單中即將開始的任務。" +msgstr "恭喜! 花點時間慶祝一下吧。 準備好推出商店後,只要升級為付費方案即可。 升級後,也會解鎖任務清單中即將開始的兩項任務。" #: build/index.js:1 msgid "Woohoo! Your trial store has been set up!" -msgstr "哇! 你的免費試用商店已設定完畢!" +msgstr "Woo 哇! 你的免費試用商店已設定完畢!" #: build/index.js:1 msgid "You're awesome! One less item on your to-do list ✅" @@ -199,7 +203,7 @@ msgstr "設定自動計算稅額時發生問題。 請再試一次。" #: build/index.js:1 msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "在免費試用期間,你可以進行營業稅相關設定,但還不能收取這些款項。 {{br/}}若要開始販售產品,{{link}}請立即升級{{/link}}。" +msgstr "在免費試用期間,你可以進行營業稅相關設定,但還不能收取這些款項。 {{br/}}若要開始販售產品,請{{link}}立即升級{{/link}}。" #: build/index.js:1 msgid "I don't charge sales tax" @@ -311,11 +315,11 @@ msgstr "你正在免費試用中! 若要取得完整功能,請升級為付 #: build/index.js:1 src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" -msgstr "歡迎模式導覽插圖 1" +msgstr "歡迎彈出式視窗導覽插圖 1" #: build/index.js:1 src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" -msgstr "歡迎模式導覽插圖 2" +msgstr "歡迎彈出式視窗導覽插圖 2" #: build/index.js:1 msgid "Setup required" @@ -347,11 +351,11 @@ msgstr "瀏覽擴充功能" #: includes/tasks/class-wc-calypso-task-headstart-products.php:95 msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." -msgstr "新增產品。 炫耀自家產品與服務,並準備好開始銷售:新增產品資訊、圖片與說明。" +msgstr "新增產品。 大方展現自家產品或服務,並準備好開始銷售:新增產品的資訊、圖片與說明。" #: includes/tasks/class-wc-calypso-task-headstart-products.php:89 msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." -msgstr "匯入你的產品 炫耀自家產品與服務,並準備好開始銷售:匯入現有的產品資訊、圖片與說明。" +msgstr "匯入你的產品。 大方展現自家產品或服務,並準備好開始銷售:匯入現有產品的資訊、圖片與說明。" #: includes/tasks/class-wc-calypso-task-headstart-products.php:79 msgid "Add products" @@ -375,7 +379,7 @@ msgstr "選擇佈景主題" #: includes/tasks/class-wc-calypso-task-appearance.php:38 msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." -msgstr "選擇最符合品牌外觀與風格的佈景主題,然後開始用於自家品牌。 變更顏色、新增標誌並建立頁面。" +msgstr "選擇最符合品牌外觀與風格的佈景主題,再轉變為自家的品牌風格。 可變更顏色、新增標誌並建立頁面。" #: includes/tasks/class-wc-calypso-task-appearance.php:29 msgid "Choose your theme" @@ -397,19 +401,19 @@ msgstr "「後續步驟」" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 msgid "Setup task list" -msgstr "設定工作清單" +msgstr "設定任務清單" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 msgid "Restore the visibility of the \"Things to do next\" Task List." -msgstr "還原「後續步驟」工作清單的可見度。" +msgstr "恢復顯示「後續步驟」任務清單。" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 msgid "Restore the visibility of the primary onboarding Task List." -msgstr "還原主要引導工作清單的可見度。" +msgstr "恢復顯示主要的新手入門任務清單。" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." -msgstr "使用這些選項來還原 WooCommerce 首頁的引導工作清單可見度。" +msgstr "可使用這些選項來恢復顯示 WooCommerce 首頁的新手入門任務清單。" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 msgid "Onboarding" @@ -417,7 +421,7 @@ msgstr "申請" #: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 msgid "A custom navigation experience that is optimized for selling." -msgstr "已針對銷售最佳化的自訂導覽體驗。" +msgstr "針對銷售最佳化的自訂導覽體驗。" #: build/index.js:1 src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." @@ -766,7 +770,6 @@ msgstr "從我們的網誌查看各種秘訣、技巧和電子商務靈感。" #: includes/templates/html-admin-page-addons-landing-page.php:75 #: includes/templates/html-admin-page-addons-landing-page.php:79 -#: build/plugins.js:1 msgid "Get inspired" msgstr "獲得啟發" @@ -885,15 +888,15 @@ msgstr "試用期只能送出測試訂單! 若要接收顧客的訂單,請 msgid "Start selling to everyone" msgstr "開始向所有人銷售" -#: includes/class-wc-calypso-bridge-setup.php:362 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "My Account" msgstr "我的帳號" -#: includes/class-wc-calypso-bridge-setup.php:360 +#: includes/class-wc-calypso-bridge-setup.php:361 msgid "Contact" msgstr "聯絡頁面" -#: includes/class-wc-calypso-bridge-setup.php:351 +#: includes/class-wc-calypso-bridge-setup.php:352 msgid "Home" msgstr "主頁" diff --git a/languages/wc-calypso-bridge.pot b/languages/wc-calypso-bridge.pot index 0b87571a..c121b7bf 100644 --- a/languages/wc-calypso-bridge.pot +++ b/languages/wc-calypso-bridge.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the WooCommerce Calypso Bridge plugin. msgid "" msgstr "" -"Project-Id-Version: WooCommerce Calypso Bridge 2.2.14\n" +"Project-Id-Version: WooCommerce Calypso Bridge 2.2.15\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-calypso-bridge\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: 2023-09-14T13:37:30+00:00\n" +"POT-Creation-Date: 2023-09-27T07:44:09+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.8.1\n" @@ -137,6 +137,16 @@ msgstr "" msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "" +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "" + +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 +msgid "Home" +msgstr "" + #: includes/class-wc-calypso-bridge-plugins.php:181 msgid "WooCommerce can't be deactivated on the eCommerce plan." msgstr "" @@ -149,15 +159,36 @@ msgstr "" msgid "This site has already been launched" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:352 -msgid "Home" +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "" + +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "" From 79e39413d2d542d0ef8a225bd339651e1e46c372 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:49:47 +0300 Subject: [PATCH 58/81] =?UTF-8?q?=F0=9F=92=A1=20Bump=20version=20numbers?= =?UTF-8?q?=20to=202.2.15?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- class-wc-calypso-bridge.php | 2 +- includes/class-wc-calypso-bridge-fse.php | 4 ++-- includes/class-wc-calypso-bridge-setup.php | 7 +++---- readme.txt | 7 ++----- 4 files changed, 8 insertions(+), 12 deletions(-) diff --git a/class-wc-calypso-bridge.php b/class-wc-calypso-bridge.php index 2ec3abd2..3cd74740 100644 --- a/class-wc-calypso-bridge.php +++ b/class-wc-calypso-bridge.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version x.x.x + * @version 2.2.15 */ defined( 'ABSPATH' ) || exit; diff --git a/includes/class-wc-calypso-bridge-fse.php b/includes/class-wc-calypso-bridge-fse.php index 81265f51..b810ff6c 100644 --- a/includes/class-wc-calypso-bridge-fse.php +++ b/includes/class-wc-calypso-bridge-fse.php @@ -3,8 +3,8 @@ * Site Editing tweaks and improvements. * * @package WC_Calypso_Bridge/Classes - * @since x.x.x - * @version x.x.x + * @since 2.2.15 + * @version 2.2.15 */ defined( 'ABSPATH' ) || exit; diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index 5da9ae33..d7004024 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version x.x.x + * @version 2.2.15 */ use Automattic\WooCommerce\Admin\WCAdminHelper; @@ -684,14 +684,14 @@ public function prevent_redirects_on_activation( $location, $status ) { * @return void */ private function write_to_log( $operation, $message ) { - error_log( 'WooExpress: Operation: ' . $operation . ': (' . microtime( true ) . ') ' . print_r( $message, 1 ) ); + error_log( 'WooExpress: Operation: ' . $operation . ': (' . microtime( true ) . ') ' . print_r( $message, 1 ) ); } /** * Maybe delete page by slug. * If the page is older than 10 minutes, it will be ignored. * - * @since x.x.x + * @since 2.2.15 * * @param string $operation Operation. * @@ -727,7 +727,6 @@ private function maybe_delete_page_by_slug( $slug, $operation ) { $this->write_to_log( $operation, 'failed to delete page ' . $slug ); } - } } diff --git a/readme.txt b/readme.txt index 9a11c104..64896331 100644 --- a/readme.txt +++ b/readme.txt @@ -23,11 +23,8 @@ This section describes how to install the plugin and get it working. == Changelog == = 2.2.15 = -* _Enter your changes here_ - -= unreleased = -* Revert all page deletion and delete only WooCommerce related pages #xxx -* Purge cache before creating WooCommerce related pages #xxx +* Revert all page deletion and delete only WooCommerce related pages #1304 +* Purge cache before creating WooCommerce related pages #1304 * Change "Blog Home" template name to "Home" #1263 = 2.2.14 = From 44d33d743130270bfd1faa65d1ccbf51389df04d Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 27 Sep 2023 16:06:48 +0300 Subject: [PATCH 59/81] =?UTF-8?q?=E2=9C=A8=20Preconfigure=20product=20meas?= =?UTF-8?q?urement=20units?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- includes/class-wc-calypso-bridge-setup.php | 56 +++++++++++++++++++++- readme.txt | 3 ++ 2 files changed, 58 insertions(+), 1 deletion(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index d7004024..aea4d121 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version 2.2.15 + * @version x.x.x */ use Automattic\WooCommerce\Admin\WCAdminHelper; @@ -50,6 +50,7 @@ public static function get_instance() { 'set_wc_tracker_default' => 'set_wc_tracker_default_callback', 'set_wc_subscriptions_siteurl' => 'set_wc_subscriptions_siteurl_callback', 'set_wc_subscriptions_siteurl_add_domain' => 'set_wc_subscriptions_siteurl_add_domain_callback', + 'set_wc_measurement_units' => 'set_wc_measurement_units_callback', ); /** @@ -142,6 +143,7 @@ public function modify_one_time_operations() { unset( $this->one_time_operations[ 'set_wc_tracker_default' ] ); unset( $this->one_time_operations[ 'set_wc_subscriptions_siteurl' ] ); unset( $this->one_time_operations[ 'set_wc_subscriptions_siteurl_add_domain' ] ); + unset( $this->one_time_operations[ 'set_wc_measurement_units' ] ); } } @@ -638,6 +640,58 @@ public function set_wc_subscriptions_siteurl_add_domain_callback() { } + /** + * Preconfigure product measurement units. + * + * @since x.x.x + */ + public function set_wc_measurement_units_callback() { + + add_action( 'plugins_loaded', function () { + + $operation = 'set_wc_measurement_units'; + + // Set the operation as completed if the store is active for more than 10 minutes. + if ( WCAdminHelper::is_wc_admin_active_for( 10 * MINUTE_IN_SECONDS ) ) { + update_option( $this->option_prefix . $operation, 'completed', 'no' ); + $this->write_to_log( $operation, 'completed (10 minutes)' ); + + return; + } + + // Bail out early if WooCommerce is not active. + if ( + ! function_exists( 'WC' ) || + ! method_exists( WC(), 'plugin_path' ) + ) { + update_option( $this->option_prefix . $operation, 'completed', 'no' ); + $this->write_to_log( $operation, 'plugin_path does not exist' ); + + return; + }; + + list( $country ) = explode( ':', get_option( 'woocommerce_default_country' ) ); + $locale_info = (array) include WC()->plugin_path() . '/i18n/locale-info.php'; + + if ( + ! isset( $locale_info[ $country ]['weight_unit'] ) || + ! isset( $locale_info[ $country ]['dimension_unit'] ) + ) { + update_option( $this->option_prefix . $operation, 'completed', 'no' ); + $this->write_to_log( $operation, 'locale_info does not exist for country ' . $country ); + + return; + } + + update_option('woocommerce_weight_unit', $locale_info[ $country ]['weight_unit']); + update_option('woocommerce_dimension_unit', $locale_info[ $country ]['dimension_unit']); + + update_option( $this->option_prefix . $operation, 'completed', 'no' ); + $this->write_to_log( $operation, 'done for country ' . $country ); + }, PHP_INT_MAX ); + + } + /** * Prevent redirects on activation when WooCommerce is being setup. Some plugins * do this when they are activated. diff --git a/readme.txt b/readme.txt index 64896331..8b42cd6f 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += unreleased = +* Preconfigure product measurement units #xxx + = 2.2.15 = * Revert all page deletion and delete only WooCommerce related pages #1304 * Purge cache before creating WooCommerce related pages #1304 From be6808050a7274644ee98147a5cd08aa478eb9c5 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 28 Sep 2023 14:50:47 +0300 Subject: [PATCH 60/81] =?UTF-8?q?=E2=9C=A8=20Introduce=20additional=20cach?= =?UTF-8?q?e=20purging?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- includes/class-wc-calypso-bridge-setup.php | 28 ++++++++++++++++------ readme.txt | 4 ++++ 2 files changed, 25 insertions(+), 7 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index d7004024..c04ddb4c 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version 2.2.15 + * @version x.x.x */ use Automattic\WooCommerce\Admin\WCAdminHelper; @@ -223,10 +223,10 @@ public function woocommerce_create_pages_callback() { $this->write_to_log( $operation, 'INITIALIZED' ); - // Set the operation as completed if the store is active for more than 10 minutes. - if ( WCAdminHelper::is_wc_admin_active_for( 10 * MINUTE_IN_SECONDS ) ) { + // Set the operation as completed if the store is active for more than 60 minutes. + if ( WCAdminHelper::is_wc_admin_active_for( 60 * MINUTE_IN_SECONDS ) ) { update_option( $this->option_prefix . $operation, 'completed', 'no' ); - $this->write_to_log( $operation, 'completed (10 minutes)' ); + $this->write_to_log( $operation, 'completed (60 minutes)' ); return; } @@ -308,6 +308,13 @@ public function woocommerce_create_pages_callback() { } else { $this->write_to_log( $operation, 'failed to delete option woocommerce_' . $key . '_page_id : ' . $value ); } + + $result_cache = wp_cache_delete( "woocommerce_{$key}_page_id", 'options' ); + if ( $result_cache ) { + $this->write_to_log( $operation, 'deleted cache for option woocommerce_' . $key . '_page_id : ' . $value ); + } else { + $this->write_to_log( $operation, 'failed to delete cache for option woocommerce_' . $key . '_page_id : ' . $value ); + } } /* @@ -330,6 +337,12 @@ public function woocommerce_create_pages_callback() { wp_cache_flush(); usleep( 500000 ); + $this->write_to_log( $operation, 'GETTING WOOCOMMERCE PAGE OPTIONS AFTER DELETION'); + foreach ( $woocommerce_pages as $key => $page_slug ) { + $value = get_option( "woocommerce_{$key}_page_id" ); + $this->write_to_log( $operation, 'getting option woocommerce_' . $key . '_page_id : ' . $value ); + } + // Delete the following note, so it can be recreated with the correct refund page ID. if ( class_exists( 'Automattic\WooCommerce\Admin\Notes\Notes' ) ) { Automattic\WooCommerce\Admin\Notes\Notes::delete_notes_with_name( 'wc-refund-returns-page' ); @@ -689,7 +702,7 @@ private function write_to_log( $operation, $message ) { /** * Maybe delete page by slug. - * If the page is older than 10 minutes, it will be ignored. + * If the page is older than 60 minutes, it will be ignored. * * @since 2.2.15 * @@ -714,13 +727,14 @@ private function maybe_delete_page_by_slug( $slug, $operation ) { $current_time_gmt_ts = current_time( 'U', true ); $diff_ts = $current_time_gmt_ts - $page_gmt_ts; - if ( $diff_ts > 10 * MINUTE_IN_SECONDS ) { - $this->write_to_log( $operation, 'ignored page deletion ' . $slug . ' diff: ' . $diff_ts / 60 . ' minutes (older than 10 minutes) ' ); + if ( $diff_ts > 60 * MINUTE_IN_SECONDS ) { + $this->write_to_log( $operation, 'ignored page deletion ' . $slug . ' diff: ' . $diff_ts / 60 . ' minutes (older than 60 minutes) ' ); return; } $result = wp_delete_post( $page['ID'], true ); + clean_post_cache( $page['ID'] ); if ( $result ) { $this->write_to_log( $operation, 'deleted page ' . $slug ); } else { diff --git a/readme.txt b/readme.txt index 64896331..86df4cf4 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,10 @@ This section describes how to install the plugin and get it working. == Changelog == += unreleased = +* Introduce additional cache purging while creating WooCommerce related pages #xxx +* Ensure existing WooCommerce related pages are deleted #xxx + = 2.2.15 = * Revert all page deletion and delete only WooCommerce related pages #1304 * Purge cache before creating WooCommerce related pages #1304 From 2e42feeefeb41412fcb231333b7794d962afe002 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 28 Sep 2023 16:10:53 +0300 Subject: [PATCH 61/81] Bump version to 2.2.16 --- composer.json | 2 +- wc-calypso-bridge.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 36a6a35c..fd2adca7 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "automattic/wc-calypso-bridge", - "version": "v2.2.15", + "version": "v2.2.16", "autoload": { "files": [ "wc-calypso-bridge.php" diff --git a/wc-calypso-bridge.php b/wc-calypso-bridge.php index d3b7a971..1b49f04b 100644 --- a/wc-calypso-bridge.php +++ b/wc-calypso-bridge.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Calypso Bridge * Plugin URI: https://wordpress.com/ * Description: A feature plugin to provide ux enhancements for users of Store on WordPress.com. - * Version: 2.2.15 + * Version: 2.2.16 * Author: Automattic * Author URI: https://wordpress.com/ * Requires at least: 4.4 @@ -47,7 +47,7 @@ define( 'WC_CALYPSO_BRIDGE_PLUGIN_PATH', dirname( __FILE__ ) ); } if ( ! defined( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION' ) ) { - define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.15' ); + define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.16' ); } if ( ! defined( 'WC_MIN_VERSION' ) ) { define( 'WC_MIN_VERSION', '7.3' ); From a308401bf3072f8324050ab252f0a08fd31d1d99 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 28 Sep 2023 16:11:11 +0300 Subject: [PATCH 62/81] Added version 2.2.16 to the changelog --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index 86df4cf4..a0f0a8f7 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += 2.2.16 = +* _Enter your changes here_ + = unreleased = * Introduce additional cache purging while creating WooCommerce related pages #xxx * Ensure existing WooCommerce related pages are deleted #xxx From 50212c962503a8f13f52d042f50ba12988da8968 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 28 Sep 2023 16:11:26 +0300 Subject: [PATCH 63/81] Add new translation files --- languages/wc-calypso-bridge-ar.mo | Bin 43331 -> 43660 bytes languages/wc-calypso-bridge-ar.po | 39 +- languages/wc-calypso-bridge-de_DE.mo | Bin 37971 -> 38355 bytes languages/wc-calypso-bridge-de_DE.po | 105 +++-- languages/wc-calypso-bridge-es_CL.mo | Bin 36834 -> 37154 bytes languages/wc-calypso-bridge-es_CL.po | 39 +- languages/wc-calypso-bridge-es_ES.mo | Bin 36887 -> 37207 bytes languages/wc-calypso-bridge-es_ES.po | 39 +- languages/wc-calypso-bridge-es_MX.mo | Bin 36887 -> 37199 bytes languages/wc-calypso-bridge-es_MX.po | 39 +- languages/wc-calypso-bridge-fr_BE.mo | Bin 38361 -> 38684 bytes languages/wc-calypso-bridge-fr_BE.po | 39 +- languages/wc-calypso-bridge-fr_CA.mo | Bin 38342 -> 38665 bytes languages/wc-calypso-bridge-fr_CA.po | 39 +- languages/wc-calypso-bridge-fr_FR.mo | Bin 38328 -> 38652 bytes languages/wc-calypso-bridge-fr_FR.po | 39 +- languages/wc-calypso-bridge-he_IL.mo | Bin 42192 -> 42510 bytes languages/wc-calypso-bridge-he_IL.po | 39 +- languages/wc-calypso-bridge-id_ID.mo | Bin 35280 -> 35591 bytes languages/wc-calypso-bridge-id_ID.po | 39 +- languages/wc-calypso-bridge-it_IT.mo | Bin 37280 -> 37586 bytes languages/wc-calypso-bridge-it_IT.po | 39 +- languages/wc-calypso-bridge-ja.mo | Bin 39641 -> 39947 bytes languages/wc-calypso-bridge-ja.po | 39 +- languages/wc-calypso-bridge-ko_KR.mo | Bin 37105 -> 37403 bytes languages/wc-calypso-bridge-ko_KR.po | 39 +- languages/wc-calypso-bridge-pt_BR.mo | Bin 36528 -> 36847 bytes languages/wc-calypso-bridge-pt_BR.po | 39 +- languages/wc-calypso-bridge-ru_RU.mo | Bin 48289 -> 48616 bytes languages/wc-calypso-bridge-ru_RU.po | 39 +- languages/wc-calypso-bridge-sv_SE.mo | Bin 35945 -> 36249 bytes languages/wc-calypso-bridge-sv_SE.po | 39 +- languages/wc-calypso-bridge-tr_TR.mo | Bin 37117 -> 37416 bytes languages/wc-calypso-bridge-tr_TR.po | 39 +- languages/wc-calypso-bridge-zh_CN.mo | Bin 33225 -> 33522 bytes languages/wc-calypso-bridge-zh_CN.po | 39 +- languages/wc-calypso-bridge-zh_SG.mo | Bin 33225 -> 33522 bytes languages/wc-calypso-bridge-zh_SG.po | 39 +- languages/wc-calypso-bridge-zh_TW.mo | Bin 33159 -> 33456 bytes languages/wc-calypso-bridge-zh_TW.po | 39 +- languages/wc-calypso-bridge.pot | 556 ++++----------------------- 41 files changed, 810 insertions(+), 592 deletions(-) diff --git a/languages/wc-calypso-bridge-ar.mo b/languages/wc-calypso-bridge-ar.mo index e8e9f7edcc89824f43c9b9724754d54f3d99598b..dd26362e2f7a0f7110730c97d96c05b7e1f9531d 100644 GIT binary patch delta 6505 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 diff --git a/languages/wc-calypso-bridge-ar.po b/languages/wc-calypso-bridge-ar.po index 3b6dd52e..3ec9d3bb 100644 --- a/languages/wc-calypso-bridge-ar.po +++ b/languages/wc-calypso-bridge-ar.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-19 15:54:03+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:07+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: ar\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "refund_returns" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "my-account" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "checkout" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "cart" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "shop" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "الصفحة الرئيسية للمدونة" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "استعن بخبير" @@ -888,15 +918,16 @@ msgstr "في أثناء الفترة التجريبية، يمكنك تقديم msgid "Start selling to everyone" msgstr "بدء البيع للجميع" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "حسابي" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "جهة الاتصال" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "الصفحة الرئيسية" diff --git a/languages/wc-calypso-bridge-de_DE.mo b/languages/wc-calypso-bridge-de_DE.mo index b9b0cab34e998e42e97b3e3abe7f6e4e3bef572d..a82d4816d660f30d172d63a08ca80efe8b1f4bba 100644 GIT binary patch delta 7333 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 CU2%K> delta 6919 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 A_5c6? diff --git a/languages/wc-calypso-bridge-de_DE.po b/languages/wc-calypso-bridge-de_DE.po index 5d44ec40..f49724e5 100644 --- a/languages/wc-calypso-bridge-de_DE.po +++ b/languages/wc-calypso-bridge-de_DE.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-20 13:54:03+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:08+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: de\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "rückerstattung_rückgaben" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "mein-konto" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "kasse" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "warenkorb" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "shop" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Blog-Startseite" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "Engagiere einen Experten" @@ -29,7 +59,7 @@ msgstr "Von SEO-Tools bis zu mehrsprachigen Funktionen – mit WordPress-Plugin #: build/plugins.js:1 msgid "Customize your website" -msgstr "Deine Website anpassen" +msgstr "Anpassen Ihrer Website" #: build/plugins.js:1 msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" @@ -247,7 +277,7 @@ msgstr "Shop-Standort einstellen" #: build/index.js:1 msgid "Please select a country / region" -msgstr "Wähle bitte ein Land/eine Region aus." +msgstr "Bitte wählen Sie ein Land / eine Region aus" #: build/index.js:1 msgid "Post code" @@ -299,11 +329,11 @@ msgstr "Das Beste für neue Stores" #: build/index.js:1 msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" +msgstr "WooCommerce Steuer" #: build/index.js:1 msgid "Get more sales" -msgstr "Verkaufszahlen steigern" +msgstr "Steigern Sie Ihre Verkaufszahlen" #: build/index.js:1 msgid "Upgrade to a paid plan to unlock more features and start selling" @@ -347,7 +377,7 @@ msgstr "und mehr." #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" -msgstr "Erweiterungen durchsuchen" +msgstr "Erweiterungen durchsuchen " #: includes/tasks/class-wc-calypso-task-headstart-products.php:95 msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." @@ -588,7 +618,7 @@ msgstr "Konfiguriere dein %(title)s-Konto" #: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" -msgstr "%s installieren " +msgstr "Installiere %s" #: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 @@ -630,12 +660,12 @@ msgstr "Partner vor Ort" #: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" -msgstr "Einrichtung abschließen" +msgstr "Einrichtung fertigstellen" #: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" -msgstr "Aktivieren" +msgstr "Freischalten" #: build/index.js:1 src/launch-store/index.js:392 msgid "Launch anyway" @@ -683,7 +713,7 @@ msgstr "Es ist an der Zeit, zu feiern – du bist bereit, deinen Shop zu starte #: build/index.js:1 src/launch-store/index.js:247 msgid "Ready to launch your store?" -msgstr "Bist du bereit, deinen Shop zu starten?" +msgstr "Sind Sie bereit, Ihren Shop zu starten?" #: build/index.js:1 src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." @@ -854,7 +884,7 @@ msgstr "Du hast deine Domain hinzugefügt" #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:67 msgid "Save up to $800 in fees by managing transactions with WooCommerce Payments. With WooCommerce Payments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies." -msgstr "Spare bis zu 800 USD Gebühren, indem du Transaktionen in WooCommerce Payments verwaltest. Mit WooCommerce Payments kannst du sichere Zahlungen in über 100 Währungen akzeptieren – über alle geläufigen Kreditkarten und Apple Pay." +msgstr "Sparen Sie bis zu 800 $ Gebühren, indem Sie Transaktionen in WooCommerce Payments verwalten. Mit WooCommerce Payments können Sie sichere Zahlungen in über 100 Währungen akzeptieren – über alle geläufigen Kreditkarten und Apple Pay." #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:41 msgid "To deliver a smooth checkout experience to your shoppers, we have supercharged your store with our brand-new, conversion-optimized checkout. Please take a few minutes to review some important information on Extension compatibility with the new Cart and Checkout Blocks. Then, go ahead and customize your store's Cart and Checkout pages." @@ -888,17 +918,18 @@ msgstr "Während des Gratis-Tests kannst du nur Testbestellungen aufgeben! Um Be msgid "Start selling to everyone" msgstr "Beginne mit dem Verkauf an alle" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" -msgstr "Mein Account" +msgstr "Mein Konto" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "Kontakt" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" -msgstr "Home" +msgstr "Startseite" #: includes/class-wc-calypso-bridge-setup-tasks.php:59 msgid "This site has already been launched" @@ -944,7 +975,7 @@ msgstr "Anti-Spam" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" -msgstr "Entdecken" +msgstr "Discover" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 #: build/payment-gateway-suggestions.js:1 @@ -962,7 +993,7 @@ msgstr "Erweiterungen" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" -msgstr "Kunde" +msgstr "Kunden" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" @@ -986,17 +1017,17 @@ msgstr "Meine Startseite" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" -msgstr "Rückmeldungen" +msgstr "Feedback" #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:70 msgid "Save big with WooCommerce Payments" -msgstr "Mit WooCommerce Payments kannst du viel Geld sparen" +msgstr "Mit WooCommerce Payments können Sie viel Geld sparen" #: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" -msgstr "Nein danke" +msgstr "Nein, danke" #: build/index.js:1 build/payment-gateway-suggestions.js:1 #: build/payment-gateway-suggestions.js:2 @@ -1039,19 +1070,19 @@ msgstr "Zahle diese Bestellung mit einem Scheck." #: store-on-wpcom/inc/wc-calypso-bridge-add-bacs-accounts.php:92 msgid "An invalid setting value was passed." -msgstr "Ein ungültiger Einstellungswert wurde übergeben." +msgstr "Ein ungültiger Einstellwert wurde übergeben." #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:118 msgid "Cannot create order note, please try again." -msgstr "Auftragsnotiz kann nicht erstellt werden, bitte versuche es erneut." +msgstr "Bestellhinweis kann nicht erstellt werden. Bitte versuchen Sie es nochmal." #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:116 msgid "Order details manually sent to customer." -msgstr "Auftragsdetails manuell an Kunden gesendet." +msgstr "Die Auftragsdaten wurden manuell an den Kunden gesendet." #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:107 msgid "Invalid order ID." -msgstr "Ungültige Bestellnummer-ID." +msgstr "Ungültige Bestellnummer." #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 @@ -1060,7 +1091,7 @@ msgstr "WooCommerce" #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:70 msgid "Sorry, you cannot view this resource." -msgstr "Dir ist es nicht erlaubt, diese Ressource anzusehen." +msgstr "Entschuldigung, Sie können diese Ressource nicht anzeigen." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:374 msgid "Featured image for the product." @@ -1084,7 +1115,7 @@ msgstr "Status der Bewertung" #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:343 msgid "Shows if the reviewer bought the product or not." -msgstr "Zeigt, ob der Rezensent das Produkt gekauft hat oder nicht." +msgstr "Zeigt an, ob der Bewertende das Produkt gekauft hat oder nicht." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:338 msgid "URLs for the reviewer's avatar." @@ -1092,23 +1123,23 @@ msgstr "URLs für den Avatar des Rezensenten." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:333 msgid "Reviewer email." -msgstr "E-Mail-Adresse des Rezensenten." +msgstr "E-Mail-Adresse des Bewertenden." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:328 msgid "Reviewer name." -msgstr "Name des Rezensenten." +msgstr "Name des Bewertenden." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:323 msgid "Review rating (0 to 5)." -msgstr "Bewertung (0 bis 5)." +msgstr "Bewertung (von 0 bis 5)." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:318 msgid "The date the review was created, as GMT." -msgstr "Das Datum, an dem die Bewertung erstellt wurde, gemäß GMT." +msgstr "Das Datum, an dem die Bewertung erstellt wurde, als GMT." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:313 msgid "The date the review was created, in the site's timezone." -msgstr "Das Datum, an dem die Bewertung erstellt wurde, in der Zeitzone der Website." +msgstr "Das Datum, an dem die Bewertung erstellt wurde (in der Zeitzone der Seite)." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:308 msgid "The content of the review." @@ -1145,7 +1176,7 @@ msgstr "Ergebnismenge auf Bewertungen mit einem bestimmten Status begrenzen." #: store-on-wpcom/api/class-wc-calypso-bridge-mailchimp-settings-controller.php:111 msgid "Sorry, you cannot edit this resource." -msgstr "Du kannst diese Ressource nicht bearbeiten." +msgstr "Entschuldigung, Sie können diese Ressource nicht bearbeiten." #: store-on-wpcom/api/class-wc-calypso-bridge-data-counts-controller.php:278 msgid "Collection of review totals by comment status." @@ -1162,7 +1193,7 @@ msgstr "Sammlung der Gesamtzahl der Aufträge nach Auftragsstatus." #: store-on-wpcom/api/class-wc-calypso-bridge-data-counts-controller.php:60 #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:63 msgid "Sorry, you cannot list resources." -msgstr "Du kannst Ressourcen leider nicht auflisten." +msgstr "Entschuldigung, es können keine Ressourcen aufgelistet werden." #: includes/class-wc-calypso-bridge-themes-setup.php:97 msgid "You can change this text by editing the \"Parallax Hero\" Section via the \"Powerpack\" settings in the Customizer on the left hand side of your screen." @@ -1178,7 +1209,7 @@ msgstr "Willkommen!" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:43 msgid "Add New" -msgstr "Hinzufügen" +msgstr "Erstellen" #: includes/class-wc-calypso-bridge-plugins.php:181 msgid "WooCommerce can't be deactivated on the eCommerce plan." @@ -1198,13 +1229,13 @@ msgstr "Stadt" #: build/index.js:1 src/free-trial/tax/components/location.js:23 msgid "Continue" -msgstr "Fortsetzen" +msgstr "Weiter" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 #: build/index.js:3 src/homescreen-banner/index.js:57 msgid "Learn more" -msgstr "Weitere Informationen." +msgstr "Mehr erfahren" #: includes/class-wc-calypso-bridge-addons.php:89 msgid "WooCommerce extensions" diff --git a/languages/wc-calypso-bridge-es_CL.mo b/languages/wc-calypso-bridge-es_CL.mo index f9561a6d2ba5d1937031be5022273e75eb2acfc1..16e14d72987b778e8171aa6ca6287aa2359ea598 100644 GIT binary patch delta 6516 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 CknFYq diff --git a/languages/wc-calypso-bridge-es_CL.po b/languages/wc-calypso-bridge-es_CL.po index 127521a9..d41260be 100644 --- a/languages/wc-calypso-bridge-es_CL.po +++ b/languages/wc-calypso-bridge-es_CL.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-05 18:12:10+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:07+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: es_CL\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "reembolso_devoluciones" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "mi-cuenta" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "finalizar-compra" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "carrito" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "tienda" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Inicio del blog" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "Contrata a un experto" @@ -888,15 +918,16 @@ msgstr "Durante el período de prueba, solo puedes hacer pedidos de prueba. Para msgid "Start selling to everyone" msgstr "Empieza a vender a todo el público" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "Mi cuenta" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "contacto" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "Inicio" diff --git a/languages/wc-calypso-bridge-es_ES.mo b/languages/wc-calypso-bridge-es_ES.mo index 7ad1e64c14ecba7412c04b7fe2098f17675991e1..fb0d3ac48ad49d59c4ccc979f924d009112e2387 100644 GIT binary patch delta 6515 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 delta 6213 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

80?{7TL*J?Q*hO=47?1=+`&1am5>RHrJ?_UUVkn EKi8V)xBvhE diff --git a/languages/wc-calypso-bridge-es_MX.po b/languages/wc-calypso-bridge-es_MX.po index 7adc7ce7..01b337d9 100644 --- a/languages/wc-calypso-bridge-es_MX.po +++ b/languages/wc-calypso-bridge-es_MX.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-05 18:12:13+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:07+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: es_MX\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "refund_returns" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "mi-cuenta" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "finalizar-compra" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "carrito" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "tienda" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Inicio del blog" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "Contrata a un experto" @@ -888,15 +918,16 @@ msgstr "Durante el período de prueba, solo puedes hacer pedidos de prueba. Para msgid "Start selling to everyone" msgstr "Empieza a vender a todo el público" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "Mi Cuenta" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "Contacto" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "Inicio" diff --git a/languages/wc-calypso-bridge-fr_BE.mo b/languages/wc-calypso-bridge-fr_BE.mo index 2ac937f2f147b67330f586d16f7d1cd046b4fc67..a8410a867d9b0de5bcd41e014efb084fac79567d 100644 GIT binary patch delta 6519 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 Uv(MBfrGLy?7*JZca6#CA0EA2Uk^lez diff --git a/languages/wc-calypso-bridge-fr_BE.po b/languages/wc-calypso-bridge-fr_BE.po index e565e46d..280d9a6b 100644 --- a/languages/wc-calypso-bridge-fr_BE.po +++ b/languages/wc-calypso-bridge-fr_BE.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-05 18:12:11+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:07+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: fr_BE\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "remboursements_retours" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "mon-compte" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "commande" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "panier" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "boutique" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Page d’accueil du blog" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "Faire appel à un expert" @@ -888,15 +918,16 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "Mon compte :" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "contact" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "Accueil" diff --git a/languages/wc-calypso-bridge-fr_CA.mo b/languages/wc-calypso-bridge-fr_CA.mo index c4d5018cd0a4ba60aef072786852c623ee908594..baa150769b2d5d3d389e901c9eed08b35158d6d3 100644 GIT binary patch delta 6525 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 NG9|1ut!QHK{{V%eOv(TN delta 6220 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 diff --git a/languages/wc-calypso-bridge-fr_CA.po b/languages/wc-calypso-bridge-fr_CA.po index d0629fe2..082e5e77 100644 --- a/languages/wc-calypso-bridge-fr_CA.po +++ b/languages/wc-calypso-bridge-fr_CA.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-05 18:12:11+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:07+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: fr_CA\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "remboursements_retours" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "mon-compte" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "commande" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "panier" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "boutique" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Page d’accueil du blog" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "Faire appel à un expert" @@ -888,15 +918,16 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "Mon compte" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "contact" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "Accueil " diff --git a/languages/wc-calypso-bridge-fr_FR.mo b/languages/wc-calypso-bridge-fr_FR.mo index 0bb4f6bc0f4a135865e4ec50f610b3f99551ea64..ce98ae31a048cf9efaa0a671396724c08b4a8805 100644 GIT binary patch delta 6524 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 CaY*w3 delta 6217 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 OZkKLT_3F&%p#K9}OE41v delta 6213 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 diff --git a/languages/wc-calypso-bridge-id_ID.po b/languages/wc-calypso-bridge-id_ID.po index efb45318..9f78300e 100644 --- a/languages/wc-calypso-bridge-id_ID.po +++ b/languages/wc-calypso-bridge-id_ID.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-20 09:54:04+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:08+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: id\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "pengembalian_dana_dan_barang" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "my-account" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "checkout" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "cart" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "shop" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Beranda Blog" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "Sewa jasa profesional" @@ -888,15 +918,16 @@ msgstr "Selama periode percobaan, Anda hanya bisa membuat pesanan uji coba! Untu msgid "Start selling to everyone" msgstr "Mulai berjualan ke semua orang" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "Akun Saya" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "kontak" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "Beranda" diff --git a/languages/wc-calypso-bridge-it_IT.mo b/languages/wc-calypso-bridge-it_IT.mo index a58abd104e914e8fe260e1e31ed1742aa4626a51..e7c565d456a2a037bdceea0fc117db053ecc6b98 100644 GIT binary patch delta 6500 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 C((SAO diff --git a/languages/wc-calypso-bridge-it_IT.po b/languages/wc-calypso-bridge-it_IT.po index 500717d8..10ab5a0b 100644 --- a/languages/wc-calypso-bridge-it_IT.po +++ b/languages/wc-calypso-bridge-it_IT.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-21 09:54:03+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:08+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: it\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "rimborso_reso" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "mio-account" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "pagamento" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "carrello" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "negozio" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Home del blog" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "Assumi gli esperti" @@ -888,15 +918,16 @@ msgstr "Durante il periodo di prova puoi effettuare solo ordini di prova. Per ri msgid "Start selling to everyone" msgstr "Inizia a vendere al pubblico" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "Il mio account" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "Contatt" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "Home" diff --git a/languages/wc-calypso-bridge-ja.mo b/languages/wc-calypso-bridge-ja.mo index b489228dc02f5dfa28eed3f1e1727657ab120c52..8af77aa3dc28b4b4d206cb63e85c2ba8fbda0334 100644 GIT binary patch delta 6505 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 J@6OHO{{d#WHu3-f delta 6213 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 Nob6wpHD_0&{{fmY<$M4D diff --git a/languages/wc-calypso-bridge-pt_BR.po b/languages/wc-calypso-bridge-pt_BR.po index 80970a54..71f00417 100644 --- a/languages/wc-calypso-bridge-pt_BR.po +++ b/languages/wc-calypso-bridge-pt_BR.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-21 09:54:03+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:08+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: pt_BR\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "reembolso_devolucoes" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "minha-conta" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "finalizar-compra" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "carrinho" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "loja" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Início do blog" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "Contrate um especialista" @@ -888,15 +918,16 @@ msgstr "Durante o período de teste gratuito, você só pode fazer pedidos de te msgid "Start selling to everyone" msgstr "Comece a vender para todo mundo" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "Minha conta" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "contato" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "Inicial" diff --git a/languages/wc-calypso-bridge-ru_RU.mo b/languages/wc-calypso-bridge-ru_RU.mo index f0f91d3254a6fb7ec640cf5e028c58456de232f2..cdac7ff5e510d764c486879809fb0a2804ce3e23 100644 GIT binary patch delta 6526 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 delta 6213 zcmZYD3w+PjAII@Cc4IEv*o6(hv0)H7{>t6tl1fF$ zWfC)bml{evKVxFizlt$l>X*XQYs`01#+2Yitc9zijj4;U$0G z4s4FPa2_gC(_DL=b2Vz*EvN~-gNa<iu$5Mxz_qi6)@epN=+EG;n*o4aZb+FcAA=C=NwUbW#HO*T6+|aC2rA>Vl=HJ9uAh zKVwc|B<*h+^B&&77Pz~Kz0gI}I6tAj7ueL8o*09=p|PlmEJsb`70k!YO}*?yDshS2 zE$+cwyf?{yumt(6c?-3+=dddNjMY(T)5L3FFeal?+y)uiWZ_Oc;QAkHZYNTN`uuV) z750@`iyCMThTv(Oj2Cex4&pYR!Y{Bjj$(c0;%Y3y1kyp(ypDI_Y1HQ$aU^QuU{q$u zp)xTQwe;RuR5+@p2!rqi*WTbhun)uOKZF|SBr3(-Bl4goI)XL00RHlw#XFP+c z*zk6Hqy15t%SR^SHHEHY0qTouP#4&W8t@=$#z#@d>X0`$~&|1{q*oC_AF=XSL@6m%{ zZSBNvM@=Lh=V2CVsg9y<>?~?&{nPD}vKqFd-4MMqsN_=7E((8M=eDGMqm;0EHP_v2_D6}F^?Ce zcpJ9Dv#5+k^st+54vwO|0sCQSPxl1HdvyL+Q_%!2BS+Q*_F@vGxIJ#8os(lz>et); z$i$)UFb#vTJ1TR1F%*Yj6`X)%*%Y8A@D6fvO~O6)Msu+W*EdB}LU0jQ$2F)6Y(fvd zhr{t}{1UVJ*!LUtwNJD=kcXV{&0@dmENFpd)UVz#4h zAm~233B$26?S}V}|E5$L(~*QZsMI`)T9VDEJKBvNJc>G=SMVe3$QksJumG*hri5x)0caXJP~T=V2&rMBPCt z*1$51!Q-fjTt!Xv2F}6oJYzn`6{ycYG|FbO5VaJ=n4t6j5*7ZEV?J_F@ z!O6G;Z(=qs9%Ia#c+$COtbOuzA4i($pN<{z5GG>KcsubF)Qx1I*1i`;>HPPhqGLDC z*TDejPkR9>rAtw#Vm)e2OK~e6!-hC#g8lvm)Kb2QO8qCOy;O_4X@uG6yACQN(j=nj8cVV+h_DMGdb$nkz?fRWq9m{b(o|1MZ{S)!`EN%@;#8ZGJgi51Dk`;$P{;2L)Moq;waG4_CQ#{Nd%+M~Lpu^{ z;2Ws#A3z<)3#cW$f^9LN!2U*bEFk~-;8r@W;isr}*);n+_yLuH$mw{6=)F!w1K&hVAo*{0GiGBF z?SZKNS(u0`Q7Jr#$#@G>F?ojlm(&PsNBbt;hUsKjnHqyy`|Zd!FlUfVdQG1v?0+z< zMD~%%DYVCBFFsBCJhs8fGx<67$ZPN)qwrGE;>;d7{rlwv>HGxsy-QdJZ(%6b znQQ+=l!UsWi5ScE&C67j%6-@gub?iFT4dL_3ue$BiN*K=4#ad8x)mwul%iKZ_ z7LvZH_#zI*sCjlN9>Tt~OVO*%5c+p};U?%uyE9QhbReqJ@o&_r(4_7q#tz8)$n=ZSb?v>JaYF>c16(07W^ z?yV?CDk{#G|I$vUUX$;>jvm)v=wwTne-TqPqcA=+40{lI7K|f4AchhZC5TFQf+wo) z{A+`)B6QTWnN)ryt`MISYymTt$Rwf}U*%c7P~QpP5G@Js54@;ohn`i1vfSeP+vDbM5DyLc5#2>-(8i`)<8Zsu4PZ`w0%ge@iyCWyJ4Ve?1gxap9Tn?FP;! z&YpOWtNS~DL_MbK@;x2Nw}@Cmr6%zeu|o|?B%i5Dte_r4ysA!01bx2!7lE%4S;Rb| zEm2YQ50RBLHWBlQDB8ccH`AQrI`I=RjrfeXM8pv)ZxWXY9vkLoLM4}2M|gu7@Bu2D ziLFFM`H0GQL>aM*=tHP{L5wF_5!Z+X#5v*-VheGYs6wnK?j!<HiBSD#ffH2RpQWMSK%f=X6)+E~46OHWE_dRnXWmZ>GZb5a_Y P?0R@da7n?8Mm7HgfI{lT diff --git a/languages/wc-calypso-bridge-sv_SE.po b/languages/wc-calypso-bridge-sv_SE.po index 0fa05742..f7e3c8ab 100644 --- a/languages/wc-calypso-bridge-sv_SE.po +++ b/languages/wc-calypso-bridge-sv_SE.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-20 13:54:03+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:08+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: sv_SE\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "aterbetalning_returer" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "mitt-konto" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "kassan" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "varukorg" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "butik" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Blogg hem" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "Anlita en expert" @@ -888,15 +918,16 @@ msgstr "Under provperioden kan du bara lägga testbeställningar. För att ta em msgid "Start selling to everyone" msgstr "Börja sälja till alla" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "Mitt konto" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "Kontakt" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "Hem" diff --git a/languages/wc-calypso-bridge-tr_TR.mo b/languages/wc-calypso-bridge-tr_TR.mo index fe38ffc59e041be8beb878b7db9ea7347829ccf1..aad7b0533c1d0a8121f2de07a686709fa9c63a87 100644 GIT binary patch delta 6494 zcmZA533!di9>?(sK_s$CLK4J@Ez;PcS!`*dmZG)SQcLCF2#qY2q}J<5LrYOqOK7#_ zT5oHOQnXqWSE~!HUTsm`Xwl_T7p1rN`#baUc<%f7=QA_soOx&dGxO%epDQb^UtP(2 zrl$W3hO42UF?BJex-qjTKU7n##$-nuQ-N-bz^E8wVlmONGghNM0s}Ay>B1B`PQeW7 zGqDfu$7GD4lXzpirVE7{G~{3i7Na^WbK2)3pE2dw54Yh5Sf!5r+%b%zeg<3N?--7a znavzbM?PZqq53_A+}M1Njkv$5TF;I+32XC0Drz7-9fvvXxfn=$83y6AsF^OuHn!$JzEMRKE$R0i|Ig_cwhhY{98G8k^NOW&ke2;dmb3#4avllJLK{9q(Zp zBk^l|2=8xTGqnICsc*oUxEJ+$r-n9T3sD1IfnI+Kn<=Q{?bsa8VhapuWM`Oxn$ZL3 z!l5_{r{O_7i%RX<#@0=!y|4o{<9DzseuQCo0=1;)8k2u@Y?>IuBuykLr75Tx+^4#q zG5xU?_2CJ|yoJTs5|f+S8@W;aJcjz*bnJGH2L2QV;9AsX-i&l@-ohQ&p_y&Jf*OcMrT2$= zDXi8{c z0GH4oy*DXvw0(zCYZ#Mk>+z^Jv_m}#GEp7%L#22mmg7Vuc_ys2%}hHCr``qc$3b{6 zE=NuDBMioi$Uwa2hSLzhyY#_Ys2emzr8)yO;%=y8HVFA=7V<+keh<~*FIW?AIrY#K zV_u?O4>9cjTfc}J&{Ag8RGVZs1(w%*hZJdj{3d1>~Q(%n#mbT4vaZ<)ZFemO=hC!^Jdcv#mmsr&4cZ~-b4Kcfa{GHr%xp*n1g%1|n@uT2l+S!1Rm4@tAqsUJWs-A|cbn~Ezm zl+xhMvQH+zj{Jh5UI*1-yi-rZ*3>(oHfsTD%}Y_6a2aYT*I_K4KxOPVWOYppN1_q- z!vvh@r7)AiE2t4S>SWLH0OT`fCaS|jn2Wz-7G`%gWf=@n2J|1j1(vJwwty?ADf};sP{$jA!VW&hGQ=bz-$cR{$`xhFbT7$m*Nw+A6Z7z zwjUoxF9zc4sLbrd>UbDK@EE%AENV~q_2)Mq4oAH|^I>D+us3F5K6*96%@nrbAyj=b z)2@OGu>me|+=aT~Dby03b2J0(b08Kq(=^l!2V)SrQ3KDzG@OJraq~d(uMzF1Aqu~7 zyoR-?2M@BFvJq;Nb;D~|h%0dHV4i|l^%47pBp>%tKaT16{1AR0;8C28M@Y+P>^979 z`i;ZLzh?3w4Quc`K8o{)+mTIz@K3m-ooE- z#t3_A9?!NJne3&YRL?}+=owVXUP866N1f|UsAv9htdAE_Hw<#y-)hmA;YWJ04(-Jw zd3xePOvRz2?2Q+pGP?{laqkui#T4Gh`!JLI=!NO1wJyg}T!o)wBai(udK1@B-_B9d zK!&gmtuP1m`ErcJZK%z87+v@|2IDmh)A_G5mM;f1)WRyvU@IyEJIC3M4xnyu+Noba zJ<0qZvrCeMQ>eGb*|-s(#k5>wI^#jyh=JqnCVvx~QP0ied!^2QIfWiHT*BIzo^RKt zH>y4aHGm1I)Oj%kmtZWeL4SM~Bk&+YfuB&k0JOa>Ky-sy73L?^~lHV4Vz&w?Om_~_Q!U(5If-q7>1z}?E78l)j4cS zL2LOCCg5e%rim@G=eQ5HrTz%&x7cFTCOnEscnJeAnvJAP#G?k<1U1t%)bY+j-De=i z)yubIV_kUngVC-E1je)tKSve^^u0QNXuMeUK6lk7m+V-@N{9o<-sdJd}p0@U%H zj+)>s)RJzTME*5{-85)K=P(chCR-zL2lY4%#}n8J&!cV-&Cb(OxUf66$C)?_TVUW+ zWB$ap*c{WR@n;))P?=firJ$KC$Nsn$)zKfQfpz|yJQPAf55;e1!8Fqv{Q1ud23fJO4@C{sw*`>CF z>!{abp0qYaWhNclVJ2!IQ&1UPf|0l$<8=Ptrl4JU3YDUtu>;mAvtOMCV>PPV)hCF4z$b5zxP}{37dFAfXKYIQpoe-kvI^!9*2T_qZR*{q%{CL2(M68?F^2n_D-_gW z@I3o%H3cK655XYJ$5@<#+5<13j_qq0gL_eHdlCoZkEjWCoNv#$7aLM9M=i-)s3o|D zUUg98S>HEl(*!qCAA>_Ma)CWw1=yYX0%W<(7pM-0F0?cE;z;U0pl;A@5nr>g47J%# zVjKJwNwDw#4#wg&<_7jU25eg2-}h=+OROMRt~=LHl$sOci9tjxy){N%dn~@6A+)oN z%wvQmqCs)8&6kV&){gMLLTMbKt2Xb{;&vo7xN0h2gE5t7yHF`X;*F`z9LQ%&lA=74Ew_O2P2q3FAch?6E5O8Lf0&d`4)?b zRHCQTCd!GIh(uMmDlERAJ@}bGob}c0k3irF+Hdm)1s+Iut^lWx;krd5nhy}a5oJURf}`Pk zzE(zE6NtXV>%?nB5FLc$Dni#4i}?&a#9u@Q;&CFM_>O2o{7M`lnh|Y@<(i@neF!m! z2qo?%1`rJhU7r&Zi9b|vuC9)KaJ^G*i2o*no!QmI?$jeNzC zqY6s$?{1vn8B>x!dc*`zamj@IqPsdM8e33Uv9rz9YEgNG;fhOAA&f$6T~ly=Fj+O=v^;qDcbm{{Z~^c0(d(Vjey8S5!>j~th0{_hTX?i}|N fcSY{Rnt|cI-a6*HUH#pY$GD5$+gdTLv^4a81Tr_x delta 6213 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 E02jya=>Px# diff --git a/languages/wc-calypso-bridge-tr_TR.po b/languages/wc-calypso-bridge-tr_TR.po index 993cd2a3..45d6a11e 100644 --- a/languages/wc-calypso-bridge-tr_TR.po +++ b/languages/wc-calypso-bridge-tr_TR.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-21 11:54:03+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:08+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: tr\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "refund_returns" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "hesabim" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "odeme" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "sepet" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "magaza" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Blog Ana Sayfası" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "Bir uzmanla çalışın" @@ -888,15 +918,16 @@ msgstr "Ücretsiz deneme süresi boyunca sadece test siparişleri verebilirsiniz msgid "Start selling to everyone" msgstr "Herkese satış yapmaya başlama" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "Hesabım" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "İletişim" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "Başlangıç" diff --git a/languages/wc-calypso-bridge-zh_CN.mo b/languages/wc-calypso-bridge-zh_CN.mo index f2eee555a479933745ef72c8086bc314335eb2a0..edbea56fd06f47656c9cb46cc61b9d922a70d162 100644 GIT binary patch delta 6492 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 diff --git a/languages/wc-calypso-bridge-zh_CN.po b/languages/wc-calypso-bridge-zh_CN.po index 343f9417..db4f91c9 100644 --- a/languages/wc-calypso-bridge-zh_CN.po +++ b/languages/wc-calypso-bridge-zh_CN.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-20 15:54:03+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:07+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: zh_CN\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "refund_returns" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "my-account" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "checkout" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "cart" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "shop" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "博客首页" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "聘请专家" @@ -888,15 +918,16 @@ msgstr "在试用期间,您只能下达测试订单! 要接收来自客户 msgid "Start selling to everyone" msgstr "开始面向所有人销售" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "我的账户" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "联系" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "首页" diff --git a/languages/wc-calypso-bridge-zh_SG.mo b/languages/wc-calypso-bridge-zh_SG.mo index 35ad65566b5af0a1fa3e3c21b9ccc3ea00abc2c8..a9f5dbe727985f6a3231018688dc7761b3e0dfc1 100644 GIT binary patch delta 6492 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 diff --git a/languages/wc-calypso-bridge-zh_SG.po b/languages/wc-calypso-bridge-zh_SG.po index 8dde835f..1818c3e0 100644 --- a/languages/wc-calypso-bridge-zh_SG.po +++ b/languages/wc-calypso-bridge-zh_SG.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-09-20 15:54:03+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:07+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,6 +11,36 @@ msgstr "" "Language: zh_SG\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "refund_returns" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "my-account" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "checkout" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "cart" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "shop" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "博客首页" + #: build/plugins.js:1 msgid "Hire an expert" msgstr "聘请专家" @@ -888,15 +918,16 @@ msgstr "在试用期间,您只能下达测试订单! 要接收来自客户 msgid "Start selling to everyone" msgstr "开始面向所有人销售" -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:374 msgid "My Account" msgstr "我的账户" -#: includes/class-wc-calypso-bridge-setup.php:361 +#: includes/class-wc-calypso-bridge-setup.php:372 msgid "Contact" msgstr "联系" -#: includes/class-wc-calypso-bridge-setup.php:352 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:363 msgid "Home" msgstr "首页" diff --git a/languages/wc-calypso-bridge-zh_TW.mo b/languages/wc-calypso-bridge-zh_TW.mo index fb3908b30191373d62d64b53a2df22d612c39d2a..d8e29c66e882b5a0276bfa5e8192efbc2c8cd7b8 100644 GIT binary patch delta 6492 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 Hxm^EmXfGRx delta 6213 zcmZYD37n4A0>|+)jCYtB%dBRM%z~I9jBT!I%nZghWF2KN$}&o1Xf!R<(`0GT!p**2 zWhsflv`j)>hHjQib)}N%O5!Ri#l30y{oiwZZufJaPyhFO&Uv2aJm)#jc^Nq+ zr=!Nc8Ry{J$f2e;cc*^GA{RCju?g2V&rr~aE0CKsyHEo;=KRvN|A4`?hulOk8g*V0 z{s~*6E?kJ3sRvzso^utd-*VJ|c4IQvH=j`0iq#u2I(!v}U~IfG1z3cYco;#U% z?Km3m=63qx0n|*@PckMFQ*kEtKn$eiXcA!ns3#1{9f;!H?Tksxig^N*lxDRzl zM=$};;1~>S!alqQHMOmpT05fFLMG~td!i3-$9hW0Rn2C@V-kPTRjo11&AL<)(? z+%4|Hk(ifa53E3rH9Jtx_6!E&k60TuZ5ntTtck5qQ=Eo$ZF2B+ta9zsTH1k>p^jhT zQD9w}HK>kuVF;eYB0P^zU_Q4o2S3A(IF9G@B(B0TY|3;{G+VGcojVWsMqWis>2w5bm6|J4off`XS(_l zTuFUBvhYpU_I%{95VZzoUfFSoOb)K;U?nu>cYp6g>Nok z0)}<618a*KNIK5L9Mq#ain_7Ws7D)^ZoibFcq{cJ^d6%yl7d$GNvuL2d--abgQ!J$ z4z(zQGHgc?$bTk|A9k6cr~xlTUHBE$Bio5uWCu}?;3&R@KcH5Bd1vNdU%1N7cIu-u z?Ff@m9b}<8?1!3xk;r;8#mFbYtV2F}=76hTM9oBamYs=)SW5jRjK!2}V`^Xys=wT9 z&o>SM4Omf=j?iW+DKUV&CP4rwxr zQ2iap30TAHW=uAPDfl#Q$KjZrW1rnhoJ{>4)cc&u%RL}~PcCXLyxGIf&}mf1moXk2 z^|a?_q8{C7%*IJL3d>P5>xK2Qi!2d?XvoB7*uyyqYg1p0iMS4RXZx`pUPWD?W^X$~ zk*KL{je47MP*Z;g>Vi{HGf|4X2%gzXA)1DtF&V>ijbXu>4Ai42!6+<4z9nWgF2tkQ z2MhVp6mP@!cp5chQGM;An~meBZ^R*3?>6@Z#esVNS5eRaE+Mb1@%7`5nc@swNX{gdJzYHyZ=qg*8t6Q1gvXsfVJO!(Q3LIXNzT^J4Ad0% zMjp2rfv@2UZvW6hw!=c?BWGr!22hC)<30?>tikrXG6)l>=c5Ml2zt7cWfXMcM$`$f zJKsa?{|tliBI?AesNS_r@@zhni*Yb&CN7|kj~QwA$D;<&7BwSTsKr`_>TfgZ z_+7}@O%-lHFP__Zn8JS4iP?AA1LvSFG#}ORZs$R)PyJ)mz%Qfr*BWI95{;9oC*v=; z9JPPxXuE$ss$PlAglG0qh@;_z+i?}|q8>Pg>BmB(5A!MNjxxsbXE%<**?1P);lx6_ ze+_0+--ntx-#9x1v8W3tqYpb`oZkP=6!eVpQ74SS23UeRVS#hC+rJ5C(Y_lspq#ty z`QuSDQjDGPDa^(Lu07-)`z39Hb!cyk{`bEN1zotGa}?^CP1ON76ZI$-IN!!j)W322 zn~k@Nsy(WoTzni0FcCj@ntSb?Ct(}flhI3|FpPpOI18KMBGiRqP{~E6HDCmT!Vrz5M z0k^t(FI30FQIBS-b0un^Rjz&>bzT^+%uH;AOrlwfIzQ|IyFbO5h8m!kLqT`a2Q`rC z?to`qeWkM;li0rpb>Xw9M-*IQ2bPSFP#@^(hfs^}3hHf$e$dwQkacTHu$`9ADGJMJ zhMH_64Y0lvoN!>#|!-d!ucVIMrgCQ9BsQq5lLk*~fGZSN}55&4S0aI}r zY7K417`;9xD0ILps0*Y#W@n%P)nN&y;~dn7rwTh_E+=cIN--0c;~@ORwYPlSPJMUO zOwPa*{1Ch0ujuJcx|Z4z`U}K`Kp@tNCCOA1yRT)d_Vk)QR`wQxs{|5 zZCA;6AZe!7#bEJi< z|HUbWk*7#wRoMDi{O`YB!M$XzYZE=lV)C<|Kd-Tg;KEO!ws?#GbF1QQWT0ycbY4b% z8yaxlQrtlr5^Z(K7vxn{*rGWmm@K0lM_yDTTNG{n^%sRNlN>USbRsvla1L5QoT8>u9N zh_=tj1k#>dA@j)@@-QhU2S_dQ66r>K\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: 2023-09-27T07:44:09+00:00\n" +"POT-Creation-Date: 2023-09-28T13:11:12+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.8.1\n" @@ -85,7 +85,6 @@ msgid "WooCommerce Subscriptions" msgstr "" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "" @@ -143,7 +142,7 @@ msgid "Blog Home" msgstr "" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "" @@ -184,11 +183,11 @@ msgctxt "Page slug" msgid "refund_returns" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "" @@ -258,9 +257,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 -#: build/marketing.js:1 -#: build/plugins.js:1 msgid "Upgrade now" msgstr "" @@ -273,7 +269,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 #: src/index.js:189 msgid "Plugins" msgstr "" @@ -288,7 +283,6 @@ msgstr "" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 #: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "" @@ -307,8 +301,6 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 #: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: build/index.js:1 -#: build/index.js:3 #: src/launch-store/index.js:322 #: src/task-headers/add-domain.js:31 #: src/task-headers/add-domain.js:44 @@ -325,7 +317,6 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 #: includes/tasks/class-wc-calypso-task-appearance.php:50 -#: build/index.js:3 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "" @@ -373,7 +364,6 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 #: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: build/index.js:1 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "" @@ -389,7 +379,6 @@ msgstr "" #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "" @@ -584,159 +573,123 @@ msgstr "" msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "" -#: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "" -#: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "" -#: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "" -#: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "" -#: build/53.js:1 #: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "" -#: build/53.js:1 #: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "" -#: build/index.js:1 -msgid "& more." -msgstr "" - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "" - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." +#: src/free-trial/tax/components/location.js:23 +msgid "Continue" msgstr "" -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +#: src/free-trial/tax/components/location.js:56 +msgid "There was a problem saving your store location" msgstr "" -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." +#: src/homescreen-banner/index.js:45 +msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "" -#: build/index.js:1 -msgid "Setup required" +#: src/homescreen-banner/index.js:61 +msgid "Dismiss this free trial informational banner." msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:71 msgid "Copied" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:142 msgid "Launching your store" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:206 msgid "View your store" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:262 #: src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:300 #: src/launch-store/index.js:305 msgid "Get paid" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:309 msgid "List your products" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:314 msgid "List products" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:379 msgid "Before you launch" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "" -#: build/index.js:1 #: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "" -#: build/index.js:1 -#: build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -744,526 +697,131 @@ msgstr "" msgid "Get started" msgstr "" -#: build/index.js:1 -#: src/welcome-modal/index.js:64 -msgid "Welcome modal navigation illustration 2" -msgstr "" - -#: build/index.js:1 -#: src/welcome-modal/index.js:77 -msgid "Meet your new Home" -msgstr "" - -#: build/index.js:1 -#: src/welcome-modal/index.js:83 -msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." -msgstr "" - -#: build/index.js:1 -#: src/welcome-modal/index.js:94 -msgid "Welcome modal navigation illustration 1" -msgstr "" - -#: build/index.js:1 -#: src/welcome-modal/index.js:107 -msgid "Move faster with our new navigation" -msgstr "" - -#: build/index.js:1 -#: src/welcome-modal/index.js:114 -msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." -msgstr "" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "" - -#: build/index.js:1 -msgid "100% free" -msgstr "" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "" - -#: build/index.js:1 -msgid "Configure" -msgstr "" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "" - -#: build/index.js:1 -msgid "Address" -msgstr "" - -#: build/index.js:1 -msgid "Post code" -msgstr "" - -#: build/index.js:1 -msgid "City" -msgstr "" - -#: build/index.js:1 -#: src/free-trial/tax/components/location.js:23 -msgid "Continue" -msgstr "" - -#: build/index.js:1 -#: src/free-trial/tax/components/location.js:56 -msgid "There was a problem saving your store location" -msgstr "" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "" - -#: build/index.js:1 -msgid "Set store location" -msgstr "" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "" - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "" - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "" - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "" - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "" - -#: build/index.js:1 -msgid "Hide this" -msgstr "" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "" - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "" - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "" - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "" - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "" - -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "" - -#: build/index.js:3 -#: src/task-headers/add-domain.js:22 -msgid "Add a domain illustration" -msgstr "" - -#: build/index.js:3 -#: src/task-headers/add-domain.js:34 -msgid "Choose a new website address for your store or transfer one you already own." -msgstr "" - -#: build/index.js:3 -#: src/task-headers/products.js:26 -msgid "Products illustration" -msgstr "" - -#: build/index.js:3 -#: src/task-headers/appearance.js:29 -msgid "Appearance illustration" -msgstr "" - -#: build/index.js:3 -#: src/homescreen-banner/index.js:45 -msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." -msgstr "" - -#: build/index.js:3 -#: src/homescreen-banner/index.js:61 -msgid "Dismiss this free trial informational banner." -msgstr "" - -#: build/index.js:3 -#: src/payment-gateway-suggestions/components/WCPay/utils.js:15 -msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." -msgstr "" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "" - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "" - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "" - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "" - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "" - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "" - -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "" -#: build/payment-gateway-suggestions.js:3 -#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 -msgid "Get ready to accept payments" -msgstr "" - -#: build/payment-gateway-suggestions.js:3 -#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 -msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " -msgstr "" - -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "" -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "" - -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "" -#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 +msgid "Get ready to accept payments" +msgstr "" + +#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 +msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " +msgstr "" + +#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:29 +msgid "Help us build a better WooCommerce Payments experience" +msgstr "" + +#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:34 +msgid "By agreeing to share non-sensitive {{link}}usage data{{/link}}, you’ll help us improve features and optimize the WooCommerce Payments experience. You can opt out at any time." +msgstr "" + +#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:54 +msgid "I agree" +msgstr "" + +#: src/payment-gateway-suggestions/components/WCPay/utils.js:15 +msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." +msgstr "" + #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "" -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "" - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "" - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "" - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "" - -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "" - -#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:29 -msgid "Help us build a better WooCommerce Payments experience" -msgstr "" - -#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:34 -msgid "By agreeing to share non-sensitive {{link}}usage data{{/link}}, you’ll help us improve features and optimize the WooCommerce Payments experience. You can opt out at any time." -msgstr "" - -#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:54 -msgid "I agree" -msgstr "" - #: src/payment-gateway-suggestions/plugins/Bacs.js:32 msgid "Please enter an account number or IBAN" msgstr "" @@ -1307,3 +865,43 @@ msgstr "" #: src/payment-gateway-suggestions/plugins/Bacs.js:160 msgid "Save" msgstr "" + +#: src/task-headers/add-domain.js:22 +msgid "Add a domain illustration" +msgstr "" + +#: src/task-headers/add-domain.js:34 +msgid "Choose a new website address for your store or transfer one you already own." +msgstr "" + +#: src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "" + +#: src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "" + +#: src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "" + +#: src/welcome-modal/index.js:77 +msgid "Meet your new Home" +msgstr "" + +#: src/welcome-modal/index.js:83 +msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." +msgstr "" + +#: src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "" + +#: src/welcome-modal/index.js:107 +msgid "Move faster with our new navigation" +msgstr "" + +#: src/welcome-modal/index.js:114 +msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." +msgstr "" From 5bbc912de0637e7d0f6b2d3d3f34586eb8baf405 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Thu, 28 Sep 2023 16:16:54 +0300 Subject: [PATCH 64/81] Bump versions --- includes/class-wc-calypso-bridge-setup.php | 2 +- readme.txt | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index c04ddb4c..ced4b1b5 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.0 - * @version x.x.x + * @version 2.2.16 */ use Automattic\WooCommerce\Admin\WCAdminHelper; diff --git a/readme.txt b/readme.txt index a0f0a8f7..2557878d 100644 --- a/readme.txt +++ b/readme.txt @@ -23,11 +23,8 @@ This section describes how to install the plugin and get it working. == Changelog == = 2.2.16 = -* _Enter your changes here_ - -= unreleased = -* Introduce additional cache purging while creating WooCommerce related pages #xxx -* Ensure existing WooCommerce related pages are deleted #xxx +* Introduce additional cache purging while creating WooCommerce related pages #1311 +* Ensure existing WooCommerce related pages are deleted #1311 = 2.2.15 = * Revert all page deletion and delete only WooCommerce related pages #1304 From 95058feea4e98105b7a4ae1dea7e51179f0b8c9f Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Fri, 29 Sep 2023 09:51:25 +0300 Subject: [PATCH 65/81] =?UTF-8?q?=E2=9C=A8=20Convert=20foot=20to=20inches?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- includes/class-wc-calypso-bridge-setup.php | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/includes/class-wc-calypso-bridge-setup.php b/includes/class-wc-calypso-bridge-setup.php index aea4d121..62e7e2eb 100644 --- a/includes/class-wc-calypso-bridge-setup.php +++ b/includes/class-wc-calypso-bridge-setup.php @@ -651,10 +651,10 @@ public function set_wc_measurement_units_callback() { $operation = 'set_wc_measurement_units'; - // Set the operation as completed if the store is active for more than 10 minutes. - if ( WCAdminHelper::is_wc_admin_active_for( 10 * MINUTE_IN_SECONDS ) ) { + // Set the operation as completed if the store is active for more than 60 minutes. + if ( WCAdminHelper::is_wc_admin_active_for( 60 * MINUTE_IN_SECONDS ) ) { update_option( $this->option_prefix . $operation, 'completed', 'no' ); - $this->write_to_log( $operation, 'completed (10 minutes)' ); + $this->write_to_log( $operation, 'completed (60 minutes)' ); return; } @@ -683,8 +683,13 @@ public function set_wc_measurement_units_callback() { return; } - update_option('woocommerce_weight_unit', $locale_info[ $country ]['weight_unit']); - update_option('woocommerce_dimension_unit', $locale_info[ $country ]['dimension_unit']); + // Dimension unit for US/UK is foot; WooCommerce does not use foot, so we need to convert it to inches. + if ( 'foot' === $locale_info[ $country ]['dimension_unit'] ) { + $locale_info[ $country ]['dimension_unit'] = 'in'; + } + + update_option( 'woocommerce_weight_unit', $locale_info[ $country ]['weight_unit'] ); + update_option( 'woocommerce_dimension_unit', $locale_info[ $country ]['dimension_unit'] ); update_option( $this->option_prefix . $operation, 'completed', 'no' ); $this->write_to_log( $operation, 'done for country ' . $country ); From 714f48fd53e8fca2b9f3a81efd69bff4a58061c3 Mon Sep 17 00:00:00 2001 From: Chris Lilitsas <1105590+xristos3490@users.noreply.github.com> Date: Tue, 3 Oct 2023 15:33:55 +0300 Subject: [PATCH 66/81] Refactor ecom admin menu to use the reactified marketplace --- includes/class-wc-calypso-bridge-addons.php | 15 +++++----- ...wc-calypso-bridge-ecommerce-admin-menu.php | 29 ++++++++++++++++--- src/index.js | 9 ++++++ 3 files changed, 42 insertions(+), 11 deletions(-) diff --git a/includes/class-wc-calypso-bridge-addons.php b/includes/class-wc-calypso-bridge-addons.php index b764be87..4bcc103d 100644 --- a/includes/class-wc-calypso-bridge-addons.php +++ b/includes/class-wc-calypso-bridge-addons.php @@ -5,9 +5,11 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.6 - * @version 2.0.0 + * @version x.x.x */ +use Automattic\WooCommerce\Utilities\FeaturesUtil; + defined( 'ABSPATH' ) || exit; /** @@ -54,9 +56,11 @@ private function __construct() { * Initialize. */ public function init() { + + // Hide the default marketplace. add_filter( 'woocommerce_show_addons_page', '__return_false' ); + // Handle the addons legacy page. add_action( 'admin_menu', array( $this, 'addons_menu' ), 70 ); - add_action( 'woocommerce_loaded', array( $this, 'load_modified_addons_menu' ) ); // Add admin body class for the free trial landing page. if ( wc_calypso_bridge_is_ecommerce_trial_plan() ) { @@ -72,11 +76,8 @@ public function init() { } } - /** - * Load the class for the modified Addons menu. - */ - public function load_modified_addons_menu() { - require 'class-wc-modified-admin-addons.php'; + public function get_menu_slug() { + return class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) && FeaturesUtil::feature_is_enabled( 'marketplace' ) && ! wc_calypso_bridge_is_ecommerce_trial_plan() ? 'wc-admin&path=/extensions' : 'wc-addons'; } /** diff --git a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php index 1a1ca210..e0eb8c67 100644 --- a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php +++ b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php @@ -8,6 +8,9 @@ * * The admin menu controller for Ecommerce WoA sites. */ + +use Automattic\WooCommerce\Utilities\FeaturesUtil; + class Ecommerce_Atomic_Admin_Menu extends \Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu { const WPCOM_ECOMMERCE_MANAGED_PAGES = array( @@ -18,6 +21,7 @@ class Ecommerce_Atomic_Admin_Menu extends \Automattic\Jetpack\Dashboard_Customiz 'wc-settings', 'wc-status', 'wc-addons', + 'wc-admin&path=/extensions', ); /** @@ -75,6 +79,7 @@ protected function handle_free_trial_menu() { // Hide Extensions > Manage. $this->hide_submenu_page( 'woocommerce', 'admin.php?page=wc-addons§ion=helper' ); + $this->hide_submenu_page( 'woocommerce', 'wc-admin&path=/extensions' ); // Move Feedback under Jetpack > Feedback. $this->hide_submenu_page( 'feedback', 'edit.php?post_type=feedback' ); @@ -292,7 +297,7 @@ public function add_woocommerce_menu() { ); } - if ( class_exists( '\Automattic\WooCommerce\Admin\Features\Features' ) && \Automattic\WooCommerce\Admin\Features\Features::is_enabled( 'analytics' ) ) { + if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) && FeaturesUtil::feature_is_enabled( 'analytics' ) ) { // Move Customers to root menu. $this->hide_submenu_page( 'woocommerce', 'wc-admin&path=/customers' ); add_menu_page( __( 'Customers', 'woocommerce' ), __( 'Customers', 'woocommerce' ), 'manage_woocommerce', 'admin.php?page=wc-admin&path=/customers', null, 'dashicons-money', 100 ); @@ -306,12 +311,18 @@ public function add_woocommerce_menu() { // Move WooCommerce > Extensions under Extensions > Discover. foreach ( $submenu['woocommerce'] as $key => $data ) { - if ( 'wc-addons' !== $data[2] ) { + if ( WC_Calypso_Bridge_Addons::get_instance()->get_menu_slug() !== $data[2] ) { continue; } + $submenu['woocommerce'][ $key ][0] = __( 'Discover', 'wc-calypso-bridge' ); } + // Hide the wc-addons menu if the marketplace feature is enabled. + if ( ! wc_calypso_bridge_is_ecommerce_trial_plan() && 'wc-addons' !== WC_Calypso_Bridge_Addons::get_instance()->get_menu_slug() ) { + $this->hide_submenu_page( 'woocommerce', 'wc-addons' ); + } + // Add Orders count. if ( apply_filters( 'woocommerce_include_processing_order_count_in_menu', true ) && current_user_can( 'edit_others_shop_orders' ) ) { $order_count = (int) apply_filters( 'woocommerce_menu_order_count', wc_processing_order_count() ); @@ -347,7 +358,7 @@ private function reorder_woocommerce_menu() { $A = 1; $B = 1; if ( in_array( $a[2], self::WPCOM_ECOMMERCE_MANAGED_PAGES ) ) { - if ( 'wc-addons' === $a[2] ) { + if ( WC_Calypso_Bridge_Addons::get_instance()->get_menu_slug() === $a[2]) { $A = 0; } else { $A = 3; @@ -359,7 +370,7 @@ private function reorder_woocommerce_menu() { } if ( in_array( $b[2], self::WPCOM_ECOMMERCE_MANAGED_PAGES ) ) { - if ( 'wc-addons' === $b[2] ) { + if ( WC_Calypso_Bridge_Addons::get_instance()->get_menu_slug() === $b[2]) { $B = 0; } else { $B = 3; @@ -513,6 +524,16 @@ public function add_jetpack_menu() { } } + /** + * Addons menu item. + */ + public function add_addons_menu() { + $count_html = \WC_Helper_Updater::get_updates_count_html(); + /* translators: %s: extensions count */ + $menu_title = sprintf( __( 'Extensions %s', 'wc-calypso-bridge' ), $count_html ); + add_submenu_page( 'woocommerce', __( 'WooCommerce extensions', 'wc-calypso-bridge' ), $menu_title, 'manage_woocommerce', 'wc-addons', array( $this, 'addons_page' ) ); + } + /** * Remove Stats menu. */ diff --git a/src/index.js b/src/index.js index 2d7d3217..bc27dc32 100644 --- a/src/index.js +++ b/src/index.js @@ -176,6 +176,15 @@ if ( !! window.wcCalypsoBridge.isEcommercePlan ) { // Override marketing page. if ( !! window.wcCalypsoBridge.isEcommercePlanTrial ) { + + // Remove the marketplace page from the list. + for ( let i = 0; i < pages.length; i++ ) { + if ( pages[ i ].path === '/extensions' ) { + pages.splice( i, 1 ); + break; + } + } + pages = pages.map( ( page ) => { if ( page.path === '/marketing' ) { page.container = Marketing; From c579fcf3e04ce842c3625edadd1accaf5c84743b Mon Sep 17 00:00:00 2001 From: Chris Lilitsas <1105590+xristos3490@users.noreply.github.com> Date: Tue, 3 Oct 2023 15:49:44 +0300 Subject: [PATCH 67/81] Cleanup --- includes/class-wc-calypso-bridge-addons.php | 4 +--- ...ss-wc-calypso-bridge-ecommerce-admin-menu.php | 16 ++-------------- src/index.js | 3 ++- 3 files changed, 5 insertions(+), 18 deletions(-) diff --git a/includes/class-wc-calypso-bridge-addons.php b/includes/class-wc-calypso-bridge-addons.php index 4bcc103d..1d594118 100644 --- a/includes/class-wc-calypso-bridge-addons.php +++ b/includes/class-wc-calypso-bridge-addons.php @@ -8,8 +8,6 @@ * @version x.x.x */ -use Automattic\WooCommerce\Utilities\FeaturesUtil; - defined( 'ABSPATH' ) || exit; /** @@ -77,7 +75,7 @@ public function init() { } public function get_menu_slug() { - return class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) && FeaturesUtil::feature_is_enabled( 'marketplace' ) && ! wc_calypso_bridge_is_ecommerce_trial_plan() ? 'wc-admin&path=/extensions' : 'wc-addons'; + return class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) && \Automattic\WooCommerce\Utilities\FeaturesUtil::feature_is_enabled( 'marketplace' ) && ! wc_calypso_bridge_is_ecommerce_trial_plan() ? 'wc-admin&path=/extensions' : 'wc-addons'; } /** diff --git a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php index e0eb8c67..cff8a7b3 100644 --- a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php +++ b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php @@ -4,13 +4,11 @@ * Class Ecommerce_Atomic_Admin_Menu. * * @since 1.9.8 - * @version 2.2.0 + * @version x.x.x * * The admin menu controller for Ecommerce WoA sites. */ -use Automattic\WooCommerce\Utilities\FeaturesUtil; - class Ecommerce_Atomic_Admin_Menu extends \Automattic\Jetpack\Dashboard_Customizations\Atomic_Admin_Menu { const WPCOM_ECOMMERCE_MANAGED_PAGES = array( @@ -297,7 +295,7 @@ public function add_woocommerce_menu() { ); } - if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) && FeaturesUtil::feature_is_enabled( 'analytics' ) ) { + if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) && \Automattic\WooCommerce\Utilities\FeaturesUtil::feature_is_enabled( 'analytics' ) ) { // Move Customers to root menu. $this->hide_submenu_page( 'woocommerce', 'wc-admin&path=/customers' ); add_menu_page( __( 'Customers', 'woocommerce' ), __( 'Customers', 'woocommerce' ), 'manage_woocommerce', 'admin.php?page=wc-admin&path=/customers', null, 'dashicons-money', 100 ); @@ -524,16 +522,6 @@ public function add_jetpack_menu() { } } - /** - * Addons menu item. - */ - public function add_addons_menu() { - $count_html = \WC_Helper_Updater::get_updates_count_html(); - /* translators: %s: extensions count */ - $menu_title = sprintf( __( 'Extensions %s', 'wc-calypso-bridge' ), $count_html ); - add_submenu_page( 'woocommerce', __( 'WooCommerce extensions', 'wc-calypso-bridge' ), $menu_title, 'manage_woocommerce', 'wc-addons', array( $this, 'addons_page' ) ); - } - /** * Remove Stats menu. */ diff --git a/src/index.js b/src/index.js index bc27dc32..06da4cd2 100644 --- a/src/index.js +++ b/src/index.js @@ -174,7 +174,6 @@ if ( !! window.wcCalypsoBridge.isEcommercePlan ) { ); } - // Override marketing page. if ( !! window.wcCalypsoBridge.isEcommercePlanTrial ) { // Remove the marketplace page from the list. @@ -185,6 +184,7 @@ if ( !! window.wcCalypsoBridge.isEcommercePlan ) { } } + // Override marketing page. pages = pages.map( ( page ) => { if ( page.path === '/marketing' ) { page.container = Marketing; @@ -192,6 +192,7 @@ if ( !! window.wcCalypsoBridge.isEcommercePlan ) { return page; } ); + // Add the Plugins landing page. pages.push( { container: Plugins, path: '/plugins-upgrade', From 976722331efd87836d53437ae352a1374876d295 Mon Sep 17 00:00:00 2001 From: Chris Lilitsas <1105590+xristos3490@users.noreply.github.com> Date: Wed, 4 Oct 2023 13:00:34 +0300 Subject: [PATCH 68/81] Revert analytics feature checking --- includes/class-wc-calypso-bridge-ecommerce-admin-menu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php index cff8a7b3..b47ccee0 100644 --- a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php +++ b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php @@ -295,7 +295,7 @@ public function add_woocommerce_menu() { ); } - if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) && \Automattic\WooCommerce\Utilities\FeaturesUtil::feature_is_enabled( 'analytics' ) ) { + if ( class_exists( '\Automattic\WooCommerce\Admin\Features\Features' ) && \Automattic\WooCommerce\Admin\Features\Features::is_enabled( 'analytics' ) ) { // Move Customers to root menu. $this->hide_submenu_page( 'woocommerce', 'wc-admin&path=/customers' ); add_menu_page( __( 'Customers', 'woocommerce' ), __( 'Customers', 'woocommerce' ), 'manage_woocommerce', 'admin.php?page=wc-admin&path=/customers', null, 'dashicons-money', 100 ); From d4354a1134850435aea931121a16fe828e5dc800 Mon Sep 17 00:00:00 2001 From: Chris Lilitsas <1105590+xristos3490@users.noreply.github.com> Date: Wed, 4 Oct 2023 13:01:08 +0300 Subject: [PATCH 69/81] Add comment --- includes/class-wc-calypso-bridge-ecommerce-admin-menu.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php index b47ccee0..82ace16b 100644 --- a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php +++ b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php @@ -75,7 +75,7 @@ protected function handle_free_trial_menu() { add_action( 'admin_menu', function() { - // Hide Extensions > Manage. + // Hide Extensions > Manage and the new Extensions page. $this->hide_submenu_page( 'woocommerce', 'admin.php?page=wc-addons§ion=helper' ); $this->hide_submenu_page( 'woocommerce', 'wc-admin&path=/extensions' ); From c63020d51c0bece92e63e20826ddfa8f1ee6aeeb Mon Sep 17 00:00:00 2001 From: Chris Lilitsas <1105590+xristos3490@users.noreply.github.com> Date: Tue, 10 Oct 2023 16:00:09 +0300 Subject: [PATCH 70/81] Add readme --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index 2557878d..aaaa8a1e 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += Unreleashed = +* Enable the reactified WC Admin Marketplace under the "Extensions > Discover" menu item #1318 + = 2.2.16 = * Introduce additional cache purging while creating WooCommerce related pages #1311 * Ensure existing WooCommerce related pages are deleted #1311 From 3f2666879110a0a34706bf6eb64158cb7440d716 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 11 Oct 2023 11:31:30 +0300 Subject: [PATCH 71/81] Bump version to 2.2.17 --- composer.json | 2 +- wc-calypso-bridge.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index fd2adca7..de85bc24 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "automattic/wc-calypso-bridge", - "version": "v2.2.16", + "version": "v2.2.17", "autoload": { "files": [ "wc-calypso-bridge.php" diff --git a/wc-calypso-bridge.php b/wc-calypso-bridge.php index 1b49f04b..0040a6f9 100644 --- a/wc-calypso-bridge.php +++ b/wc-calypso-bridge.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Calypso Bridge * Plugin URI: https://wordpress.com/ * Description: A feature plugin to provide ux enhancements for users of Store on WordPress.com. - * Version: 2.2.16 + * Version: 2.2.17 * Author: Automattic * Author URI: https://wordpress.com/ * Requires at least: 4.4 @@ -47,7 +47,7 @@ define( 'WC_CALYPSO_BRIDGE_PLUGIN_PATH', dirname( __FILE__ ) ); } if ( ! defined( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION' ) ) { - define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.16' ); + define( 'WC_CALYPSO_BRIDGE_CURRENT_VERSION', '2.2.17' ); } if ( ! defined( 'WC_MIN_VERSION' ) ) { define( 'WC_MIN_VERSION', '7.3' ); From aecf821e9b56e90176a94bde783dc54291c358f5 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 11 Oct 2023 11:32:31 +0300 Subject: [PATCH 72/81] Added version 2.2.17 to the changelog --- readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/readme.txt b/readme.txt index aaaa8a1e..6106041a 100644 --- a/readme.txt +++ b/readme.txt @@ -22,6 +22,9 @@ This section describes how to install the plugin and get it working. == Changelog == += 2.2.17 = +* Enable the reactified WC Admin Marketplace under the "Extensions > Discover" menu item #1318 + = Unreleashed = * Enable the reactified WC Admin Marketplace under the "Extensions > Discover" menu item #1318 From 338ef233ca37e918a5d9535f94fbcd7f698cd526 Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 11 Oct 2023 11:32:46 +0300 Subject: [PATCH 73/81] Add new translation files --- languages/wc-calypso-bridge-ar.mo | Bin 43660 -> 29907 bytes languages/wc-calypso-bridge-ar.po | 451 +++----------------- languages/wc-calypso-bridge-de_DE.mo | Bin 38355 -> 26543 bytes languages/wc-calypso-bridge-de_DE.po | 509 ++++------------------- languages/wc-calypso-bridge-es_CL.mo | Bin 37154 -> 25760 bytes languages/wc-calypso-bridge-es_CL.po | 451 +++----------------- languages/wc-calypso-bridge-es_ES.mo | Bin 37207 -> 25813 bytes languages/wc-calypso-bridge-es_ES.po | 451 +++----------------- languages/wc-calypso-bridge-es_MX.mo | Bin 37199 -> 25775 bytes languages/wc-calypso-bridge-es_MX.po | 451 +++----------------- languages/wc-calypso-bridge-fr_BE.mo | Bin 38684 -> 26789 bytes languages/wc-calypso-bridge-fr_BE.po | 451 +++----------------- languages/wc-calypso-bridge-fr_CA.mo | Bin 38665 -> 26776 bytes languages/wc-calypso-bridge-fr_CA.po | 451 +++----------------- languages/wc-calypso-bridge-fr_FR.mo | Bin 38652 -> 26749 bytes languages/wc-calypso-bridge-fr_FR.po | 451 +++----------------- languages/wc-calypso-bridge-he_IL.mo | Bin 42510 -> 29384 bytes languages/wc-calypso-bridge-he_IL.po | 451 +++----------------- languages/wc-calypso-bridge-id_ID.mo | Bin 35591 -> 24617 bytes languages/wc-calypso-bridge-id_ID.po | 451 +++----------------- languages/wc-calypso-bridge-it_IT.mo | Bin 37586 -> 26103 bytes languages/wc-calypso-bridge-it_IT.po | 451 +++----------------- languages/wc-calypso-bridge-ja.mo | Bin 39947 -> 27586 bytes languages/wc-calypso-bridge-ja.po | 451 +++----------------- languages/wc-calypso-bridge-ko_KR.mo | Bin 37403 -> 25913 bytes languages/wc-calypso-bridge-ko_KR.po | 451 +++----------------- languages/wc-calypso-bridge-nl_NL.mo | Bin 22454 -> 21487 bytes languages/wc-calypso-bridge-nl_NL.po | 320 ++++++++++----- languages/wc-calypso-bridge-pt_BR.mo | Bin 36847 -> 25615 bytes languages/wc-calypso-bridge-pt_BR.po | 451 +++----------------- languages/wc-calypso-bridge-ru_RU.mo | Bin 48616 -> 33370 bytes languages/wc-calypso-bridge-ru_RU.po | 451 +++----------------- languages/wc-calypso-bridge-sv_SE.mo | Bin 36249 -> 25253 bytes languages/wc-calypso-bridge-sv_SE.po | 451 +++----------------- languages/wc-calypso-bridge-tr_TR.mo | Bin 37416 -> 25825 bytes languages/wc-calypso-bridge-tr_TR.po | 451 +++----------------- languages/wc-calypso-bridge-zh_CN.mo | Bin 33522 -> 23281 bytes languages/wc-calypso-bridge-zh_CN.po | 451 +++----------------- languages/wc-calypso-bridge-zh_SG.mo | Bin 33522 -> 23281 bytes languages/wc-calypso-bridge-zh_SG.po | 451 +++----------------- languages/wc-calypso-bridge-zh_TW.mo | Bin 33456 -> 23157 bytes languages/wc-calypso-bridge-zh_TW.po | 451 +++----------------- languages/wc-calypso-bridge.pot | 590 ++++++++++++++++++++++----- 43 files changed, 1709 insertions(+), 8279 deletions(-) diff --git a/languages/wc-calypso-bridge-ar.mo b/languages/wc-calypso-bridge-ar.mo index dd26362e2f7a0f7110730c97d96c05b7e1f9531d..6a6cf9f1ba1a79db630bfe698467b353bfb3033e 100644 GIT binary patch delta 5220 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 ja6=a!sMAB9c}>?I+^Ro1jG096hMr$Iks9a03~A delta 17753 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

8pjRgr7<}LYpX*M%*aU!kpQBB{P+r!xMoqS_k z?+AqnmHcH@SXj{-{gCE-~7idszB%S@;I6tA#U%WWs_g@F404Ov1xxivZJd zBnc)_s@_mMDf{`|D*Cd!y?XYz0lFQ@cPiDH2Xdq%%z zmxCh~TtaGOu5~;_j&0P_2#J7f9n4R3wsoI(R)?M_jTC{}iW%SEk}PXmbk1!d|M}@X z{hyy(J}b|TCQsA$(W2SSpjrv%+h;5U-$&bRv@Z?GGFZf4G{5W^6Yu_8m-gx_L$Ftv z4DeX62K3SF|MuKiR>LA9vf4Zps94L97p+5S>m9~5t8>g4=p|4TlPfVCwyT!85kL{D zL8UYkEoKketDZIyEn~lN`R#Pg{H0|vSYQHnuu_LzRSvJ@v756y<#n1EcP!}!w=Yg^ zGW9`?wbM+fU~X28U_-Yh_edaVC*wL~34hilZrw_(g)q4W>LlZVw0Au`53d1pZ!0a*T+x9kL^-S z(P76=R`>Gb=e?69`WdOP|DYc!M1I^_5R(;g(j-L+4r}pk=9c}e7NO)T3SyO6CKxyC zjK^^?jD3Ym+ByyS-2HRimAVZVM35S(EO!~z`HJN|qf;HJgL@61ts4p$66&ZFjaXza|+K8&ZYDDFr$0Ra~$#3D2 zHd%!zz>G~ujGE0eMk6gOXus^OVyut}qy_DN(pwOuN5tTh%&^~oY(}rqR`Z33r>CiR z6@3_KTk-VU5#zAGWyatUvaStrL^;HT+i+qQY_b`yBtOgTx?|RW1#Budrnq0VerX^% z5;{3Tq64G>DHmy5z>P9)TGCL+NoeGp) zJf(eK&fCn*6r1e-P3q$2?8LI0{YET%A}(iJu~oBtlT#DSmtrQe=_OaJxXqIif`i>T z)C!4FHmuP3?{w(>E$do)RhjS2@9sA&D5JP-A}wRie50ESYBR}xK#DJJrDh(4qP8u# zPpO)e0!acWP%HYz0@#RXN_0I=k?t@QqUQYEjIRD)7R^3yTW&8}Fr6@_q+ zr+8Ci?$O*1MT#*c6C+trHTq9Q2VdzR5x(atPe_|`AQdw^C2Q_}M^43+wfS{AG|npL z#QxOv40|ZQxmbe*lAv8oV?C*@;=;M1^W|!GLuK`{f!#gjLWS-T2}W+;zSfXh^2K_i zZQJ4wN1c*yls9X?JS-6cleEj5#mwffNsbtA^Ejdf$<&nICJ|x}Q@ghRs7=gXF~2W{ z?`HEoayGG@;=8hnwh$xIMqHG4KdoCq*hEvo7Wg`9%&#X)?M6aGHKA+MztP-IEj@pe z?pAoJ1meBmt9t0Ji7=>noknx5ZQCz;Ka@q3wfWl#L@pMzxLwf>=)$zrp z)!$z|ptDh;yeI5`#DCY$t3J15Z|1TU&@Q+A|MJ{c_kn-Z{Lxd^a-GV(z2VFZXsh`4 zL2-(8f-1*&m49vgmhWsbhE(Z~rWK&J{L#0ib~%y?-&&j-xkFo-A4)vwdx;*Mm35`f z;c35XqAxFER@lPFH}n5N8kvMx_|EH?{~0o?=PRUkAN$gQ1q&bHxtqeikltG`xjb-J zx!gf7QEW5iM-F4sNzQ*Mu_`M?bN^Sqmns^~mZNNe7q#ZM@Jd3>!r~uQxum?SMYsRP zs{eknF3x~lR6(P~1X+)h!46a^k#kdzv@@d`eVefvp=fklnHi66p&sD9CG5{lu9?LA z=D)7Em-s6AP(if?8Ekm5&U|xu+fS4GI!q}kCx5GpS~np&o`lx4IUH2F!DCf)NC#9i z#&r577qQDKt%6DP-&{GBvt~1sEPITLnA|484&qUIF;#`hO{y-9G{M3YE@&7Pm6M0` zb!^gZEMWd`!!-dTXJZ#KDzMHM_^XP+Rt&BxNgpKnWSB~~9LxVhVbwkU{!4phxnA6? zWD%odR*I3hz*h?1GxCjvWyzUjTWkD)@JsUygxj% s_kz;@v6%-{@9C>O;&6)zb|vmz?f>hIi|l~r%~AQydLearn more about our new navigation — or go ahead and explore on your own." msgstr "أصبح تنفيذ المهام من خلال WooCommerce أسرع. تعرّف على المزيد حول التنقل الجديد لدينا - أو استمر واستكشف الأمر بمفردك." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "التحرك أسرع من خلال التنقل الجديد لدينا" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "احصل على النصائح والرؤى حول أداء متجرك في كل مرة ترجع فيها إلى لوحة تحكم ووردبريس.كوم الخاصة بك." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "التعرّف على صفحتك الرئيسية الجديدة" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "اختر عنوان موقع جديدًا على الويب لمتجرك أو انقل واحدًا تملكه بالفعل. " -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "إضافة رسم توضيحي خاص بالنطاق" @@ -521,53 +203,43 @@ msgstr "تمت إضافة تفاصيل التحويل البنكي المباش msgid "Please enter an account number or IBAN" msgstr "يرجى إدخال رقم حساب أو رقم الحساب المصرفي الدولي (IBAN)" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "لا يمكن سوى للمسؤولين ومديري المتاجر تقديم الطلبات في أثناء الإصدار التجريبي المجاني. إذا كنت مستعدًا لقبول المدفوعات من العملاء، {{link}}فقم بالترقية إلى خطة مدفوعة{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "طرق دفع من دون اتصال بالإنترنت" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "مشاهدة المزيد" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "قم بتجربة أحد مزوِّدي الدفع البديلة." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "مزوِّدو الدفع الآخرين" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "امنح عملائك اختيارات إضافية للدفع." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "خيارات دفع إضافية" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "للاستعداد لقبول المدفوعات عبر الإنترنت" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "اختيار مزوِّد الدفع" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "حدث خطأ في أثناء الاتصال بمدفوعات WooCommerce. يُرجى المحاولة مرة أخرى أو الاتصال في وقت لاحق في إعدادات المتجر." @@ -584,196 +256,180 @@ msgstr "تعني الموافقة على مشاركة {{link}}بيانات ال msgid "Help us build a better WooCommerce Payments experience" msgstr "ساعدنا على إنشاء تجربة أفضل للمدفوعات في WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "يعني استخدام WooCommerce Payments أنك توافق على الالتزام {{tosLink}}بشروط الخدمة التي نقرِّها{{/tosLink}}، والاعتراف بأنك قرأت {{privacyLink}}سياسة الخصوصية الخاصة بنا{{/privacyLink}} " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "الاستعداد لقبول المدفوعات" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "أجل، يمكنك الاعتماد عليّ!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "إنشاء WooCommerce بشكل أفضل" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "حدثت مشكلة أثناء تحديث تفضيلاتك" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "تكوين حسابك على %(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "تنصيب %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "يمكنك تغيير إعدادات بوابة الدفع هذه عن طريق النقر على الزر أدناه." -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "ربط" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "تقدم" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "حدثت مشكلة في أثناء حفظ إعدادات الدفع الخاصة بك" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "تم تكوين %s بنجاح" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "موصى به" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "الشريك المحلي" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "إنهاء التنصيب" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "تفعيل" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "البدء على أي حال" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "بضعة أشياء يجب التحقق منها قبل بدء متجرك" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "قبل أن تبدأ" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "اختر عنوانًا لموقع جديد على الويب أو انقل نطاقًا تملكه بالفعل. " -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "سرد المنتجات" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "ابدأ البيع عن طريق إضافة المنتجات أو الخدمات إلى متجرك. أنشئ منتجاتك يدويًا، أو استوردها من متجر موجود." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "سرد منتجاتك" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "امنح عملاءك طريقة سهلة ومريحة للدفع! قم بإعداد واحدة (أو أكثر!) من طرق الدفع عبر الإنترنت أو الشخصية السريعة والآمنة التي نوفرها. " -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "تحصيل الأموال" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "يمكنك دومًا التراجع عن ذلك ضمن الإعدادات." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "حان وقت الاحتفال - أصبحت جاهزًا لبدء متجرك! Woo!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "هل أنت مستعد لبدء متجرك؟" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "هل غيَّرت رأيك؟ يمكنك جعل متجرك خاصًا مجددًا عن طريق تحديث إعدادات الخصوصية لديك." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "عرض متجرك" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "تهانينا على بدء متجر WooCommerce الخاص بك. خصص بعض الوقت للاحتفال ومشاركة الأخبار!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! لقد فعلتها!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "بدء متجرك" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "تم النسخ" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "ارفض هذا الشعار المعلوماتي للإصدار التجريبي المجاني." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "هذا هو متجر اختبار الإصدار التجريبي المجاني الخاص بك حيث يمكنك بدء استكشاف ما هو متوافر! لمعرفة المزيد حول الإصدار التجريبي، انقر على \"معرفة المزيد\"." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "حدثت مشكلة أثناء حفظ موقع متجرك" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "يعني النقر على \"اختبار المدفوعات\" أنك توافق على {{tosLink}}شروط الخدمة{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "ادعم مدفوعاتك بخيار بسيط وشامل. تحقق من تفاصيل أعمالك لبدء اختبار المعاملات باستخدام مدفوعات WooCommerce." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "اختبار المدفوعات" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "امنح عملاءك طريقة سهلة ومريحة للدفع! قم بإعداد بعض طرق الدفع عبر الإنترنت أو الشخصية السريعة والآمنة التي نوفرها، واختبارها. " -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "حان وقت اختبار المدفوعات" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "مثال توضيحي لعملية الدفع" @@ -834,7 +490,6 @@ msgstr "خصص متجرك لكي يعمل بشكل مثالي مع عملك من #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "انقل متجرك إلى المستوى التالي إلى جانب الامتدادات." @@ -848,7 +503,7 @@ msgstr "وقت الاحتفال! هل أنت مستعد لبدء متجرك؟" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "أطلق متجرك" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "هل بدأت بالفعل متجرك" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "دقيقتان" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "نطاق" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "إضافة نطاق" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "بادر بالترقية الآن" @@ -918,16 +572,16 @@ msgstr "في أثناء الفترة التجريبية، يمكنك تقديم msgid "Start selling to everyone" msgstr "بدء البيع للجميع" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "حسابي" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "جهة الاتصال" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "الصفحة الرئيسية" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "اكتشاف" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "إدارة" @@ -1023,15 +676,11 @@ msgstr "الرسائل" msgid "Save big with WooCommerce Payments" msgstr "ادخر ادخارًا كبيرًا باستخدام مدفوعات WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "لا شكرًا" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "المتجر" msgid "Stats" msgstr "الإحصاءات" -#: build/index.js:1 -msgid "City" -msgstr "المدينة" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "المتابعة" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "اعرف المزيد." diff --git a/languages/wc-calypso-bridge-de_DE.mo b/languages/wc-calypso-bridge-de_DE.mo index a82d4816d660f30d172d63a08ca80efe8b1f4bba..af85d86e4c3d7f87e0450b2d9231d09a8282edb8 100644 GIT binary patch delta 5858 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 literal 38355 zcmdU&3!Gh7UGI0L&^A2!poNx4*^@R+OEZ(Cv{2GVn#Uwfn>3-5G_+9KJ#+TVIi2(3 z>~k_rN=u>TB`>uqPoZF?qFzyiqEJOT$Q4Bpy*{o;i&arUMHKadc)8!-|G(Bg`%EUa zAougp`E>Vp_C9;Bz1DyI-~Y8v9z5yjA4~W<tFYljO!zljN7c z416+p%4tdRH1M2&Tft*EzX3cJoC9eh=>|LmUc&jE;2!V+a6R~B8W{s8!6$%o;FG{U zsP^s%*Iy6vNb*+jYVd>LZ-bA0x8mRBLoZVsW z4yNFXz!~sm;BSCm0!7#Nt#bT%P<(J7sPTRrd>r^$@C5J=K+WfuLA9Hll_U%?IT;i^ z&j;22OLcx!l1zb5;r#m5Npe5f2iJn@&-V9ZpxU_!)N{9iyTH3Zjpxrm_2YPm{W$P+ zumD$q?*QKh{y2ESvyQX(d0Z(^m-Af`EP+w1aAh_?^lDzg6{*x#~%P+ z4&D#m2VT6!um2OMeyCHr|9B7V z{u_7!_yhb8R!=Sj_56#&c?Z<{?*c`acY!B^?+e#I28y1a0yPi63rcUi5Tfh3F8H(H zE#M-!`gwl-RZ#tT3xg3~eH3JBlRpR5uM?l|?VJi~-0MK~Ya^)lUk#oL&V}!92SwL6 zhwpz5Jd5*BfGPObp!$E@2Ji2Q;OjYmI;i=)7u5Ja0_wgmfTw_e4qgO)6TA()fD`ri zL*OUDFM>}8-+Qt1?XQ92+Xq3l^A(W)l7HlX+?uSt#K$!c>b-Y>8sA-@`0Tx)=yEUk zG4QuQ$;YcNb^Z5dP;~e^Q2k3b`twf#)!r&l^tk|prIRZ_R7-LTh-ysU6V4Yw&D-CA zqQgIduK-_und_sYHepjZe>$l4#=`k?!Sgu37!;p&K+X3nK=I$(K+WU5;M2fA07b8V z0GZn4G=$+y@M>^1xB%V>z8h43&)nkjyAR}%_%2ZN zO?Eh+od6!g={UF=yddE9;1fB26*vao1!`O$22TLL466Nq1x267T;cRR9n`!&2Rsej z2I_q`f}%qgL}Zc=f=>az0-ggNb!C#k+R3?~<|7Bi7YpEe@QvV)f*%L@FWHOnn*i?y z&j&vTie5+Wa=sgYvz)&b+y{OK6dm_n1x>&=fO`Lf;0546gU3VPb9X1nuXBFU9_NQ| zgU{gnWFC@ytOt(+cY()(`$5s;#&G?mAVW%S0UO|_Kwh1!yV~vXZQv6){~7S{;735U zw+NmD{tl@3eF=OC`0wDe=+}#w4gaL8d(UAb2wPE%5!|@eKBv;IDw1*FOSR zfe(Qb;A5}x_ni;wxl2LOVJhHFpx*xqa0U1-Q2l&A_(br-py}u@ALnxfEz%~ z`#$i=Uh($TKR90xX5d4h=4BH^6kV?d9}DK-25=q}zr7E<1pE@H@tuByk7o@y z#`$)z02|rRT@zT@5V?ohn+ilO+Gb^)YZYcxui0?K1GGobLcNe;If)cmUM6z6NT%&(6L5OTgD~ zz7_lv@H5~ag7?n)xNd{^;>Ujk*MQ#v)$W?Q_kR;8I_?HFz8k?~!Iy)Y=huP@;CsPS z>HpIjKF;Ud3e8hj=A$KcO{FPg`<1y?lPFZeY0OPv2Z z_(AX&TW*JHZEQ2=?*TP`-vUL~3p>uY`#|x>jp6(tC_3K>YF^#}J_~$5cr^HFP~-e8 zsPR7(@Ef4sdtBG`|NY>TIR8sfb`OgAa55 zBJf+_r7(lepMSI4rDq&;dwB);Jg(mXJ^}m~sCIr6R6qX=d@T4?Q2qHjsPTLo)cid4 zkkkJep!zont_NQTt^t1#JO=y-sP;b&ehmB!D0zA9Ev|p>1|@f&0mTo$4_*a+1$+(o z{Ffm+;3vR!@blk-n$Kt6=5(6`)!#ZOdiB7|z&pS#;3q+i>)4k&e~p2saJ~uDbNj&y zzzqC4_!dy}|GL}VFL(>6=O6P5fBqSu`hPKaI=B~9e+qCT_zqC~|AlaV+AG~ZyA~83 zehmBx@V(&sz{~FNcK-_0ydHC>^ZS!Q(fMrfLU0_^duKuM*=?Z4`zCNL_-^nt@N=N< z{~J(tVdbmb&bGnlbN*A{N5O}{?cm#A?euyWoaX!th%UOl8hkJKTi`CR^;);X9|P%n z^0L?Y{Cx*xs*-bm(DmKD;IAG9&w--D-EVOIcn}nwzYeYfSHIEyrd^=qu@BPa2_Q2!8dq6$+A@FJ7uY;n~7eMjt zKZo;Uf5^{Qg1fkW0jU1p0qXuwfaic;051g}`@??!R&b2-{h;LfASk*$0OnwhkX{7- zHn@Tebk|EK^bIsX&zDlq*qmx~U#lk-=Dkk@hpb?{#~;@{`_ z0J~fKu502i@fuTG{{0P~#yOfC`#GLQW9okom~aQrIA0~|FD{k_7W{Qp)yJ&rc?_bHBVbG(@2T^!Hk zx_I_)IYgU`!|V1N=J26T{d} z0(Wr!WboK<&l>{%C3rW-B^+mSoWebC0rmG}j*r+UY&dui$H{zO{rfde4u%Vtfh~?F zg!5~`Q#gK*;{=}jE%4VlKEYA_`)5wR$nlFD|HyG3NBnymA08V{{sR0;_59;Hs;rw#}*Mei*yAC{+V=7$# zD7c&BX&fhW{9g|Jz1G3vlp=io7w{0rT^yH&YY{%nhu`6NVz}@i_$-bt$9)_xnqb{Tm?)U}unKz1%K!+RcM$r=6z@^-emIwbLTcbwe*L z`kh`rk?!rJt!%z}EzJ&Ojb=98q=inJAIN(LX<$v-ZRS~#pVgi&x))uXrS)Dud&%lm z#p<+CyJYor)^6v$8>R>Sey6?q(m{8wm({F+EbV5E8c%2Ki`QnCPSD?E<=%RuJy)px zS|@GiH}_X2tJa@cOFM&p+L=vPoyX^yPK#Ie^ND0t!AX0zF*oStwX_(_%;ZHeJ7_i! zCTB5dhLNmKTaEUhpC{|rty`7O_VPSAFI*~;P3g>l;kMFtcAznr^&6dbn%~^bdyTw3 zBRXaMv{9s;ZokoL9O4zT9q5xcn{;x5r)Tr5&#M{3V6M?tue-g@fd=Cn+??j^dPXav zd|?j`io8c-v+0y54Dr+bonCEEk3LT@CU0z^CtF3suPF!OKW6Xtox@gcSlai$~%?7lAm|5z)HIeRHmba{}IYyRd z#vYm_Xf!D3yUm7p!frBlET<$)YB7;+8T1<5uLoxv3|PFl0Bbya``e1N+bN0$BC*lN z!t~b$GkrLVfmx^F|M|3*_mP~+Rj0L0ioJTNqz&4Qmk!|GvYEphj#nnqsd{GtO3eBT z<8@6040oV`OgIhle%i~k+CdGZ=x4otWaaeX+wV%V*yGRuvpCyXlQvq}TwbiP7HWAh z(`z6Mowmip6kyvzv3?8&CVAr#2(4tT&(QP4TvV zV7p@=@ORl(v;gLb3SrgAgEQD%*r?aKg zYURC|+`fV_C2^);W_umv{;aIky=YX?B%2SW*&JLiYKs@@G79ZZd%VzF`;7y6ddn^7 zxcOUeMNH=Mw3hX=TW(qFm)3~S;QeMZt>?{diexle5QL|KK6HMITGI$t>1evgbyZPO zwG-*JkVkxT)E-6v*bU8M(QeKW~$xHTXx`I+IR@#uAX0AR&pnj*=X*AlKORGt*ySUM2`JKAn zXd`WAGph3?RyC=*BJX!IbeWjNre*jFC-^e$`xn;dL7|Z^OW%zoNBHe3u7MghtUNDwd%k_*ImqH26b$g8i*~~$w$sRvR_jJ(H2cgKww`sBkx1iHc zXLuf|#SFsCTqwPXwBHkxqP8b=FYJc&Ncl?f1_qQ->~!Wee1vXedU=B@a%q?fjnFJP zY&3^4Z{)>Tx~(TukNgegOSG25Fm57=DM7r@c6uC=BAPe@{Q?Px1L00%cnv;uT%zw! z@=mVzQWRg-LOX83_|IXO?IJEnZDYyeOO?HmMt04t6w@>4B5)d(J$!L?X`rUuq^KtC z6`c<1BeNlu#?e);sTzAcbgu_Rvvx5Hokb$PO0%Y$gU*78Tn~*!PeKxnC(|2#gEB=V zdVT!4%EdY!jx)uyskjE-j=gxA_tjPxHb=%qvw7ZJBW=)j&$3|?Nq=~M>hv;QG1F;w zdNMiDA~id6SR(lvf$Uw`q+y>i?Mp|kS&k&Z5SC+)Zq5-2K=*Kz0yS(L;R?=8vZd2( z=H~1ej~UnYI|z4SQf24JdViqKjoe!rjPh>g1)*R5?qE%ZP2(P#dpEp2c)h$Pd`dMv zru-_`Yyhjy?l=0){2a8RJA=AG{#jIxvT94*%c?#x4k92>G?2wu0=b#Vn>mv#&Sh%c zibx=!eKEH59b=F1{6xBm20F6pbXXeQ8IyN-x16D@AMgQ&hud8La0`I~W_S6(f?n78 zasfY<=Za1`Xg5W6b+f;~X&1`6_%hQM_OpP*6L1I@^g;4C z=yKX^&MqR3_$2~i))(r=iS?Z8i4<6c8` z&WAq95&dc!UgB2QF)svSW(&>14`OdY68^JP_lOqF2xy2Sy*G0mW@zYbXIQI>pIyeD z8`IzKed3O z)Mp{GkOG94Mk3&?jba9;tjB}?p+c?UwIO>I!;2!VOksZ@ z0%!%cQUcQ$5yFbBi4)FiTa7}~F0WWYR^JFKA1t`jP|@=P6UkPjIM{=Q>>#HWjBdq^ zK*ZFZw{PxmvvV+O_HhpDz0P2+o@T+_uT}cmVya{%oa=~2x*hsQ-%T_;?9Y21!VP*e zbut*{=F*cPCscav?4YNOg=b2&>!M~olm-q_3=>XRDwie-FvFX`>6-4Xz4g|Tr$R0v z#uGeMI^H3eg*z%fYNc;Z%q88jtd7Y*iWiJ0Et7=j!wVyK`Xwd=Unr7+_b#tLjp&SU zHTn|=vQ*31p<(zqkxXViY%ug~Wo@Z0-Zki%JYmUlX-R!KM*te8im0j7iicPgm9eTw zwt14F=5em6MyY^ct|$0DuTA6rCfgeAMo|yi-W#$Wk&9F$#5<_1^ERGY>_I@P&E=Vy9&_Lt4MsoXUYMY5NUp_ zF?5pB5XyJOZnujrimYa1P>L>S3k^vL7`tBbnNl_cgi)i8emO_@JZi}7d*jXUf_|gx zih~%eF;_?Pyi-y8s7&2)&jmp_E+M+()!Jzx3 zSkr-d%$@Kc98=!H1u;v(=e#|aDK>zxU!dPrh1 zhTC3Q0r}CD#@>Aysv+&myc{yb*oY*eCZPX}rjBHd)7|ql>mY2f3 zpzY13FvkpFxyQ)KW(Cn8??UaOPsq;V8Dy5o;;}ITZwbELVQQ}+-yNesjncj;q?FW6 zf@eT!%D}aeztWIB{m=G8WIvl1h@NBT{O3Ay7?1meR$Z-pm@T^8!g2JZES>o>At)&A zQc4OhCj#U9B{pmrKU^NtIu;Etn`~Mxhm%~c#J9P_<~;kktUsS1JbKO}^5k-+hyM|w zk>oQbu`ev?zA@S1Sr8EZU5))jg`ra2380h7j?J5{N_K3G4sxlhceJ`4tWp%eB%F`P zK7S7!qli*6^u*367DduZO$enru zWyjWuWJjNnTUj%k;W9!~hL?Ula%?pwJu!BKCdLS9Lh|^qpo~fLY|>_20eXfn-&C;Tq&opLnLrU&>qz7#VDi6gly!wnOF$xRJAh}|%)bI#ynl$rHxFNnv zo#f1hQ!?w$4(Uq7%F`=5Ltcx{BO20tA@Q7BCV+JBsEZ+47?NirQEzVft4dHryo?2} zMrb_@0mK-p4}7vfphzBK?Ml386EczPvP3}iO6nOltQ|tgn5MQ{tV3SIf)zsDaAHCY z$V&unZnOqu^hik3KwO?7Zpa0;d-_iUmz zvsH1Z9>jY&Xy#@@{V)R;q%YdEWOv*A6kfcSL$n7)BbKF_x}R)UK&;+W0m@Q z>F~oo;tf@J7d*c2lM8dz=JnRuv1GU9Ib-Gl)*G0bpm=23Hrg-R@`R{tV%A3y5)tDD z6f=3-_#O{Q6-7S_cOys03?dWi+2}{hLKn#%R7P4*Xg?b9=vPlwC709>?`RzykEzb# zMT8LTcSDbSU5^^&@C&)&oVucuzv5xD!Y9)x6Z+E9uOsE~J+|xtXI=ppq7vR%sjq)2ZcrT8OG7&_O9o+<5E>K1P!&2^1$cGj7!m zE4ogk*O0K9J?I)JX7(VkRi33&J!Y3>meR2dQp{diw^##oZF<6M9UeY%| zk31C&ddWn|9%agiz(A{pkJf5mFo2U_GNl7TtmdPWM#e?A1VCw&ph%e?ok(y&NIa?A zN(;sCDVyn0g%2fVZ!6eUb3_@g>$i;5WLdtlxEp;H($}!DF&K1Fpy&$Aw0R}O^VeI{ z8o8X7{p}$hYoWoj(9fkeqNop#S%+g^CgUdEUWxFSMlG8-(n<#=IpnuR%C2UL+Eyhg zW{-PF>D-|1h#PF6CDZgfHKHmF!WRoP-9@vT%m>)0@0#Q0?UjBx_M)t}^1YWV$V&3r zJ-L7ummFxYYNDYPBhk7pv-F3O0f~4yOPYCW3*jfNo_XQAb#hoJby@nwxazwQ zw{-u~Xgx~eFj?erthBTzM_SoUXi_UGjQ9%Tol89?lf}EFVWXT64Qh_2X(HJgOlaewRu@@|E}ud% z$l(jl#$%}{1GlU7=hf=7ZXNq2`uN_%rmsnoxu{pigUncd~zi>8Sj z%yYC`R+p7CU#K@QLH6=eVRp#k(URXyT7}g+#3^9dMAMr+HS#4-7T!{4#K{bESh0G-cN5&FoPzPm<+n^e*>JQ;?k-tfSeDH~eYJ)2M98K|?)6|Cf>l|df`rgS8XO>z1;cI2g*;$TE}Lf# z`l<>=8sZM4tOXpg6Uq|dtoAw-0b1mN4wSdWelcEgmeHRcANc_vd8vbZkV|e4%g|6U z!@81bsd6ZlwJFQBFuHuhgFme&9qC>q6=YF?Swmu;ma{L1zgDsto})l6_Y;;VC)Frn zv{Okd_O7V2C#-pV= zFlfmvR)#89P@3lQL~|dW9KL{{-qv=m944h#YB-hN)JY(A<*vCf@{KJEYRQ9^XJHYo z75%lUnO>U2;NUlU@s6MjaUnz75+}=%#APwlN|UkMF6lHXfJzk)#g<7&5M}9I=?v7Gs+=3d6Qsy=P7{v}UC`EHyG2bK9oE z7;$hKO}&e6l;GK-Vx%Zkk{)di*`%G6nwqPYE8KA}Yi%~AaOvS~h{2=?S>}NEa@cHp z86nC~vKQ|&E;~hv?cAa>w*u6w^Pb!)2pqK*8qH(diDci^JAI9~hUA3FdoDW&72n%> zU>4M4SV&tkx#AqZIr=O6h85!^en!$OVZJ6k1PCU5Bb7s!-cXQc_o^8x{;zq}3J0FW z^)Vk#?>*dsU(WX~m()}hn-Xgi$u(LpYr4f6P4;6yy2t`mEdn!&kHM`fs%Q3oIt>HTC+uVBB>C}lzv_nay|j^mbR7?iBFzll zLPoVamTs3#PjBi>Cp0l;3;$}YaBlP&NoB=udcGo8JZs5a$`S+{!rXvuY4Qk~j*>fxLAU9F%9=FjRORmLO`C=KH;;`vKSCtURnpTcP0$KLSU{KoRj1V_!q;VQ- zvx>E2DFj>R>9_Xff8t6jnlOV-KUb2{Cs_l*FVB0Ol}x6s7_#cSh_%uZDp~-%Qh|+4 zw9L7_+Y;AvnMb87&7AdPyph_mifv`qA15-0(s39enPL5p+J@~dIfFx~l&?{OOQtsV z)i+W=`(|gs+VTRNSp{r@R`Wzv5K;p623bzsuHsU*KzP*3$I{)@Kv}he0wAX^&M3OC)htG! z)ktnM@zJ_h^$-Jr+?Kh7aae3GTMwhlKh;`?(#DLe@sOi59LA$C@4N;rB8oN5Z7J=` zh#qFmGU+d3UM3%1EbU?>aLEWXRlH)7W8?EyG@~$%xX(hChE`=Hdv=dsjgMq*##Y#PLwer2^PV%l?)l^AJuh8< z{)YAIHmtkw+;#k|*tKKV&CNYx1O!o8P*AHKz***)9c)XQW)P+8+N=( z)A1#?VTJAN+tFf2gC(WsNnyYNZP>Oppg~qQw6!Owi=gBFOr+Zu?`Kb5$`^+(LiFW# z<@&?uH)I1=saQkv_|$p3OHFB}-fys!p2Qk?W?LpgJ!q!R(lM67RNgwfct5@;N!t`9 z%E{bx)=Li!Fqb%nZQJJe@a^xqYVn?#I!&ijGxc7B%`6Y!{!ZWOcK~H!`~0$L9I%;s zliaS9+bY6YR_Zia@TCZRKCHmQ8R{n}X(HGv(XK{t_U8V;dNdJ-Rt-5~c!+)mO;Z|Y`{^2#O;HRk4X zG%L<+tpTBN25YEUoB|qY`*ak>1cgYyct6|yy1m8wXZezaMz!QRaSHZs{t)Y{L_$uk z%j(SmQM9))m)95XBTu*?xe^KLG}z6kJ%e^a#g;us$t2N~=+_R*HB+`H9vW!M%S+>% zrt#QoG&}O;Hr+$dip6{Shs0WWx(%0!^*Ls6OOnznYcr)R689C-TePOEGDT6$zS(_l z6c6n6ZH3;v76M2rAQ!aRY&%fLue8{5^vz-ZLK|gAAe`|vTS3CkL+i_kKs{=KK{gQ< z>tx=mD;!9#8_b~xG(USY*3mH{=arIWLx&C*!IFmp#}Vo5TD%Vdl_@|8EMTd{8tT8gXCyFkivY*MGD%(w0MrK4Oq$dk-=-a|lj9cMO+x zGXd&V7%a&PXdz|FX3DzhtIevqXsU3m4mI*ROmWSq3QM+fzkGZg580D8BXcEMpmr9d z`*^vg+T@Cb?@IC<`K!cLGixFxhJHI6J!w?hp-n%efYClx%S*qbj_Vs6nHKjYonnwu z45iAoZd}7tdx$ov?p8}9JcI^Xd?%_CKI}`srftYTo(c-|vVkc-?Z)#heOF;KxTjD8 zxLsCMk<;d^i}s+6Wr`NZ2tBkPt^;KdCVR74T?DdjSH~1RG^w3v%j6_%9i+jLsA-mN z%9-UukeP{-{mQ0WIf9{RE^mwIHmTTg?1AmSH&(-jr}I*k9rjkA z<|Dn*zvX>#V46%6*8(D@*iYpdO1oDe%LIZ zP^=w9dkR7zp6$*|y_Hd`-D+|+CAr7Up&(4CDh}etbW+Q#O}W{xN#s7jrfs9YK>gxNHlfMa{Pp$rZ>hx~vJG%NOrK1bY3ARSDI2f{(wzwlnmx zQ5_{^KK4>utn9@eZOH8xT^QXLd5=#9TVw2wC)lR~YsNq}djH}*bv$?@oax@+0*wdz zRxxU!BW8%r(L}9bU-hVary>RV4*@S2kGx7=5DjP6HV3ztF4!BRwF>)85$Ga*G3=5O zK+uoxj7ifuQrj{(_@l6c5w4IOj|4ZfhVxv&gAz`-%Bkus1)AfkU|4O@!A`R|D5c^nMcPMrv~*_d zNy#=|`J;NWwEu9iJ$$9_Z_UsG{@xL@5IqGLp881N2|E8?dJ`|L_Bg;K8Qit z*vLD_9$j-2Ebg4n#I%DTEkVZI0xaIg`qFk^?t=7!X^9x&p`%dOt%3NPr`f09aA#i( z@m)qJusANS90Jk`7AqoW5)it9Hj^%EhtM7UIhdV8$GP1N++-J&;j6~~_;(&n;Erlm z&^9;{a^jL*=AN7DORcMJULl#>z8o04n~k+Z_@qo~!)>)&eLrn3ZkD*t&-;`{G2|^; zNTw$d$-u+3wh1kVnF(TQ0uaBQ;1MLAd)oH9BR;>;7_?afh==HO4;oK_MU{Ety{=F( z2ebLS>QerYbiKP7=JG*2Im{3(=wC=KQi$VP-^HX6OfKHj0;jl}42t??tS-+k0#vLy3`3k!?wRnicqCOwWcKsLG}n;~0ZbRT-81uO1y zB&Qe-&d6*z0Sw2I(7WQ%xVf3jHO79qS(gZ<8V;c&YSf?M!V7pj|)J zWO7mo|H3*!F*p)I1I)V8YpILKkST0z&M^qM5@a?kob4C8b#IYZYQL8Dym{!u8l|&%jiJ zV`i=ld1Z%80htgmMfOJUN{5ZdOAGwp@$1E>%!$B#@COK5}fOZWE4cnm3jWMn? zIR5^PG*V!s3g?@5g#ysX%l>K(H0iL>@_A@D6Lmulnkh%U((hhekq5h+$3k z$UC6n^c(|Uu!NlZ((^F7@ha2Q&gx2E>8_ZyEBObdsF@s!u`!H#FJ7>*!|4)dJeGck zy~Joz`e^=sGO2V3nUA15Vf4A2c$!C9~^Oagq_Dw)?v0Q8=D!z(C%U~6#L0Uwn@og=q7iMyY)~Y#B@mw6kRq7*R2>Z zv?mYTtvzOL6T`3C#q4BdPF#eeOBs@fOE1Mm{$u|O!lJW#QY2IR;hs&hr(iaGeF2=;W1)}Q<*YrbI7=~ zdc_+st`Zv&(l*#0oHF4a+p<+%78d`YK*)kKV9~Vs!r{%VACyCd)6g~htC(pgE(pEF z8$*Gx00^}$Js&l#LS&iHnCT3vxTI%kgIHzT2tMYTnDvJm62?|{R@~c$eH5?_weluo zJ6C}i-{{K}8)+VfDa$x)?~`@jm1zxTNEOkr&3kJ!V>V8X&o@u=YKjvx^AbIgcEqV+ zArwVV%{r{g?|fn0bbq=>Qxx`XTl2vk*8Vcdrm-TN!5l&_dVo>t9AcRPA9mp)3w%>H zpQMvyzu8@!UMa1O>2eQAQhnIAZ0n9%tQH{DhV9hmH(*dH`J6<&t(Bdn?JAWmm#Co3 z7g>wQAGw^Q>V(%Gda^0{)h*GwVuBtt%5EmFIE*e+8)_)_2XZB$sA>i!;1u zLOcc?R=!+-jqAwiO6|@nBBXR?qwTW(QVb`xMP;!$jWdWY!eLQ?$|tzg>#+xc<%(E- z@S@f7&zMw%x4L4UW*N8weQFyP&**7!DM@1-Lz$MV<@cG%fOe8bI>@@yKowWq$~sF> zSdyTPapNvnqvBWg(|$gad+CRb+VY1Q^8b%MYnQl$TsoB=p7VVkz(f+G0AueFd+{F& zHt`vWati{;611h|LM|SKgNGtd3o4nh2#ObP!u5N&L&ZG{A~1kuklto78{$Ep@qT?P z4T_)4gFRcB-Gav?u@a`LI*pl5g$2=G6&_~FBARze>^A&3n*GyCLZ%#d9DPZwSjaU` z_9J-~)M&bCxYirY%(IzUlBIO9I&Wu6Ux}%L?yh=j<#u$by&&I6MJegNw9!@dvKM#Q zT6q&Kr(V44`(F5}yorjjmJ#9H$38#$LKvdp)so=F#VVnc)o47P?0`QA4sCF&3T8f* zx}rzum1JzbPlN@_z4SU}XN@F%)-o-wned*K=qL@B5i5k^+{%kIy#69if@D@R7zoGamlmP77fPIZ(A1ee|AznNlx~$wtCB0MX zQn`C0u3x-=7y1Gl88Re1Ete8Ch|M;Ah)Kr%WDNtpD?%&tQ_Z;H1)~lRS)60howy%Q zOB~O5B115|xg4)X>3hZ`zwD7()$G#{$&0cn2R?M+zljG6Ijt_lW zS7$NJCY!F5RhwKq+6wJ7uIMpjHhi5%I#ju68|r)1NEQh2WZMb+sxG?^7WYn(NHZ#A z3wF%WCum=gv!kMjD#46+M@?(e2Q5}DF@5IYgu14@K;^aMlT1M~ezHd7l@BW?w9N_^ z1v02g3Df(;au)NnahBMHk5eQaucR;{ILST>-fj#6X&TC``_x-_9h|igG4>;VxWt_x4O;PVt( z{oAG(9AOYhLX#aqM{&`z9iFIjeQCQ&rCQCaD7li5+TwB&&*4W2T=$|c;djMgBo56l z&xmp21@?NXoPgMx`%?-=C}Rv2K`dw{Wcn~&o!)dZuhK!%Vg%!s3Q8>4l@HA7HCnvE z&aH5g6f*jfZYex^8XYD13(+uA!ZH;2HBL*1%e0}pTRuAdI)Uy9 zPlS?Tsw{$N9SSad%v1j{Q(2F=j>dkifCX1pNQ?ou+!F3_t68omMES&yTUt|5CD%5U zzhE%FJN$yd&^xlhQ-V_Z+-yTZtzD)!S3Zv97@>w5)w(Wa9=T0=XYWWFUNs>&DakeEOR|FcJS;;PL^dU>~vX|GNW7d z4cybk;|-y#yNdHo?FE_)6&W+|VTqZiE@I}wNE6?${lKd4x(V3t2@&@_XrJ1=id4+E zk(s4rWll!?DWAe0BrW9*LrCW7hj^AN2zZ7eBw9#^D9?hn4xt{j9xXX|Zqd?{WhUNi zRoPL^bmdJ@wk%26jq3L>A0_@fG_VBeNDb&w>!LED+^SU5+|OV)U|3ky|$%A&*vN%CTgMSkxrZjqDoB>n#(XR0C1nN{lK+0YxTBj1Zsq zlSwRaN7<5OzbzFZ7ZT<*h%GauHB-wi$R3Zn)&p(NkE54qTSc}?1EV*3x><@u?^0wP zeG{cg73vS$C?k{fY{}j_vA+E}!z8XsqggIEQF!h5nnQ~n#G{34mt36+=~5TFWyL?# zHjKXVt>7NY?gdLuAQJz~gnU(L!I1IRPdc2*J=0zpkNIWYF{*E%`m*mUMQ6e)yvyEG z?NdltMc0zv(6Y-FKi}}c-TPTu6062>{dV5=AlYxTsEVamN@U8Qjd-6XHRW$g1v#d~ zW|mHYfmMM_yNvu8gxH8$K!wwko>v=pp>mOJTV(ON3!}+q#o5)+KSd zuTjE*2BaV6RJiA-45r~QR=e7IRdWn#!y*dFd67yRvO>1r3Jz#!{>2}bX*3D?kVYJP zSS3!d8}+M6pxCcSghJjlzh~#w;=`YY!{ftVIVc~tbr(#thE=Yd`ySpN2aab$+*4Zh zk`)v?RA!rD>Br2MF23-MAPm*L|Ckj*C(bIj02{JKMVcJqhq@Zyaha?Isw-$rBDoko zxE5jB`OYF@yPe;w;Q|FLTZN3H`a! zikH5mIflcWo>If+^QfDi`p~8u3&Y`V`HIV~LYKvtlqwrpW{mXN+^5KKaE}QI|56O= zQl;&N#4s)&@fqMn^V}2-7wJy@4h9KP=Y7wQ1WyY!r=Po!=*3KE5Kbr^GFp(57?Ksy zg??>H?t!+Lpol7dSn6v0%R2O;l52k0+IlUU`?du0I?8KJi@l!t@wsx*2H7WwBxz7Qt5koRbxJ4 z1CyoNH{ZN0ztdS+qN%Xw;SoBrbTP43EGd*2kkhn2ZW^wA9g>juKKgMQuc1St(vxs5 zYv*G(hf^HMb>v>UZnMsKTvT~c(Zxu@q{jQMCYLPi#osgbCzRY8ehehkp(AIIYRAbQ zY5?jawrs(C2~wVg*a%G;U0VrLrEa45%N9;5QFyg4n2=jmSqMYGW*xNcK{yx~6bS9y zxXdClZL#+pli3URY4k*;Nf~}yAvnzAvd+ezKi4ZKorE~$w(wcMavOy!uVekTfsCLU7RJF90i<*K{tf1e}_vP$y zM&d#U-|FMeej(*hsRwAO7l{B@MAmCx*APR4p{&zArfF!YwTjbJ?IH3BvtgH87`Jck zP+}v!5Z+?~v@po8osMK?59Y! zW)cIVMj4sP#TOy@9UruAY4!=hRi`f~HXDuA;c^FLx7T5>vHJ+Y6Iz4MC3VNriVD)0XNEb$f;-(;5!v+aon(tQ`zStZ=B!xC&=Vzrw532qe+^KTE$$vLuKKDtU*E z!prIv{egYN@9=++4<#5q3Tb#vqRqdXYSpd6ucDOcBK}=QE2UT}DgH8wEs^8Bo7ls^ z0y?Res}Vlx{VG#nZHbrB=OX=;s17MC%qus-{-wJd^NIuip_H~V-n_U&7!gOjtF;UKkQ_V@a9v zdf@K$#^=LQip+uiP7Cuke1w02Om-Cxi8~k{xcj{C?#W?eaA+f4RaAQ9cE%KpSTFo~ zidG0=pC)N7=b_<(H=J-KKB-x*^l6E#b`#t@5%cwC{gK?5n zlET{`y>!H1aB(+h7L+6S(|$F2HKlA3C7tR-fw{7IGZz1rs=;!}R* zCG6%K#+j9;$44|-a>bxN7!2wnHjGp858PR#`XoJ>8$m1o04_HBE|XZSq&(qBDV7n2 zUEV&Ha@%EcMTTR+z;L^KvlYdFk!@7IPI$?}>B>$=^vKW)_L?2*rw}jmwooIv{oBN; zC+OKUG{-N2mhv;w5R~4l-+%F)MToFek~ut5n49=%o_ZUTBFBVcG_ha!Nf_--3}S|| zDt`@TlyM|Wm0yF=HbGY1n=&?D->iSOkR_S?08W`oP{|%@M7u!aBjXaKwG=!0_2b*g zw%f1Ypr$<4TNy)C{Jx7G8!Ph}wtDIM{ml{WnXE^&>Llp3Kp&$k2p-YQX|e95P>qFybs~!H2B5Db4R) z;SaZ0D0D|94u3d+p+)!DsBZfmtBzpw?aadOTE9&VX<2C?uZCblwb{{}-XQAcT9ET+MPe8v%ekOm#oZQ8HQ ml&K(mN~Q0zS=(&IG+(9Pqw)0W@b_z&Jmm|h0hK>sll(uY_$aRc diff --git a/languages/wc-calypso-bridge-de_DE.po b/languages/wc-calypso-bridge-de_DE.po index f49724e5..f29820d4 100644 --- a/languages/wc-calypso-bridge-de_DE.po +++ b/languages/wc-calypso-bridge-de_DE.po @@ -41,343 +41,25 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Blog-Startseite" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Engagiere einen Experten" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "Deine Suche war nicht erfolgreich? Engagiere eine unserer erfahrenen Agenturen! Von neuen Erweiterungen bis hin zu kompletten Shops: Unsere Woo-Experten helfen dir dabei, den Shop deiner Träume zu gestalten." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "Du möchtest die E-Commerce-Funktionen deines Shops erweitern? Der Woo-Marktplatz bietet Hunderte vertrauenswürdiger Erweiterungen, die speziell für deinen Shop entwickelt wurden." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "Von SEO-Tools bis zu mehrsprachigen Funktionen – mit WordPress-Plugins kannst du deine Website individuell anpassen." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Anpassen Ihrer Website" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Füge mit nur einem Button-Klick zusätzliche Funktionen und Features zu deiner Website hinzu. Führe ein Upgrade auf einen kostenpflichtigen Tarif durch und erhalte Zugang zu Tausenden von kostenlosen und kostenpflichtigen WordPress-Plugins. Möchtest du wissen, was alles möglich ist?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "Ganz auf deine Art" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Erweiterungen entdecken" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Deinen Shop ausbauen" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Plugins durchsuchen" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "Ideen umsetzen mit Plugins" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Erhalte verbesserte Funktionen und schnellere Fehlerbehebungen, indem du nicht vertrauliche Informationen über die {{link}}Nutzungsverfolgung{{/link}} übermittelst, die uns zeigt, wie WooCommerce verwendet wird. Es werden keine persönlichen Daten nachverfolgt oder gespeichert." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Digitale Geschenkkarten erstellen" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Verkaufe und akzeptiere digitale Geschenkkarten, um die Kundenbindung zu festigen, mehr Einnahmen zu generieren und neue Kunden für deinen Shop zu gewinnen." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Bessere Kundenbindung mit Geschenkkarten" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Mache mit Werbung in den sozialen Medien Millionen von aktiven Käufern, die auf TikTok, Pinterest und den Plattformen von Meta unterwegs sind, auf deine Produkte aufmerksam." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Mehr Kunden erreichen über soziale Medien" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Erreiche auf Google aktive Käufer mit Produkteinträgen und Werbung, die du direkt in deinem Dashboard erstellen und verwalten kannst." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Auf Google für deine Produkte werben" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "AutomateWoo testen" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Steigere deinen Umsatz und binde deine Kunden durch automatisierte Marketingnachrichten, die auf die Kaufdaten deiner Kunden reagieren." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Automatisiere dein Marketing" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Entdecke unsere integrierten Marketingtools, mit denen du mehr Kunden erreichen und deine Verkaufszahlen steigern kannst" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Hunderte von Erweiterungen für den Ausbau deines Geschäfts" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Nutze unsere integrierten Tools für Marketing und Werbung, um mehr Kunden zu erreichen und dein Geschäft auszubauen. Führe ein Upgrade auf einen kostenpflichtigen Tarif durch, um Zugang zu unseren leistungsstarken Marketingtools zu erhalten und noch heute mit dem Ausbau deines Geschäfts zu beginnen!" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "Bereit für den Ausbau deines Geschäfts?" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Abbildung zum Design" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Abbildung zu Produkten" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Es sieht alles ausgezeichnet aus, weiter so!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Woo! Der letzte Schritt ist erreicht! Gut gemacht" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Jetzt sind nur noch ein paar Aufgaben übrig!" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Willkommen in deinem Woo Express-Shop" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "Willkommen bei %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d von %2$d abgeschlossen." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "Du bist fast bereit, mit dem Verkauf zu beginnen! Gehe zum Einrichten deines Test-Shops wie folgt vor." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Einrichtungsliste ausblenden" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "Der Shop-Einrichtungsvorgang erfüllt meine Bedürfnisse." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "Die Shop-Einrichtung lässt sich einfach durchführen." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Wir freuen uns über dein Feedback!" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "Was ist dein Eindruck?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Ausblenden" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Liste mit Einrichtungsaufgaben anzeigen" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Aufgabenlisten-Optionen" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "Glückwunsch! Nimm dir einen Moment Zeit zum Feiern. Sobald du bereit für die Veröffentlichung deines Shops bist, musst du lediglich ein Upgrade auf einen kostenpflichtigen Tarif durchführen. Dann sind auch die beiden nächsten Aufgaben auf der Aufgabenliste verfügbar." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "Juhuuuh! Dein Test-Shop ist eingerichtet!" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "Du bist großartig! Ein Eintrag weniger auf deiner To-do-Liste ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Beim Einrichten von automatisierten Steuern ist ein Problem aufgetreten. Bitte versuche es erneut." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "Solange der Gratis-Test läuft, kannst du zwar Einstellungen für die Umsatzsteuer einrichten, aber du kannst sie nicht erheben. {{br/}}{{link}}Führe jetzt ein Upgrade durch,{{/link}} um Produkte verkaufen zu können." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "Ich berechne keine Umsatzsteuer" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Steuersätze manuell einrichten" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Steuerpartner auswählen" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax kann deine Umsatzsteuerberechnungen für dich automatisieren." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Steuern automatisieren" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Steuern automatisieren" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Wechsle zur Anzeige für Steuersatzeinstellungen, um deine Steuersätze zu konfigurieren" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Steuersätze konfigurieren" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "Die Adresse, an der dein Unternehmen tätig ist" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Shop-Standort einstellen" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Bitte wählen Sie ein Land / eine Region aus" - -#: build/index.js:1 -msgid "Post code" -msgstr "Postleitzahl" - -#: build/index.js:1 -msgid "Address" -msgstr "Adresse" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "Land / Region" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "Wenn du auf „Konfigurieren“ klickst, aktivierst du Steuersätze und -berechnungen. Weitere Informationen findest du {{link}}hier{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "Konfigurieren" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Mit der Einrichtung fortfahren" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "Durch die Installation von WooCommerce Tax und Jetpack stimmst du den {{link}}Geschäftsbedingungen{{/link}} zu." - -#: build/index.js:1 -msgid "100% free" -msgstr "100 % kostenlos" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "Bereitgestellt von {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Compliance mit dem wirtschaftlichen Nexus – {{strong}}einfach{{/strong}} " - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Umsatzsteuerberechnung in Echtzeit" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Das Beste für neue Stores" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Steuer" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Steigern Sie Ihre Verkaufszahlen" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Führe ein Upgrade auf einen kostenpflichtigen Tarif durch, um von neuen Funktionen zu profitieren und Produkte verkaufen zu können" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Du nutzt derzeit einen Gratis-Test! Bitte führe ein Upgrade auf einen kostenpflichtigen Tarif durch, um Zugang zu allen Funktionen zu erhalten." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Abbildung 1 zur Navigation im modalen Willkommensfenster" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Abbildung 2 zur Navigation im modalen Willkommensfenster" -#: build/index.js:1 -msgid "Setup required" -msgstr "Einrichten erforderlich" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Erziele und verwalte wiederkehrende Einnahmen und erhalte automatische Einzahlungen auf dein angegebenes Bankkonto." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Verkaufe auf internationalen Märkten und akzeptiere mehr als 135 Währungen mit lokalen Zahlungsmethoden." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Biete deinen Kunden ihre bevorzugte Zahlungsmethode an, darunter Debit- und Kreditkartenzahlungen, Apple Pay, Sofort, SEPA, iDeal und viele mehr." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Zu den akzeptierten Zahlungsarten gehören:" - -#: build/index.js:1 -msgid "& more." -msgstr "und mehr." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" -msgstr "Erweiterungen durchsuchen " +msgstr "Erweiterungen durchsuchen" #: includes/tasks/class-wc-calypso-task-headstart-products.php:95 msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." @@ -417,7 +99,7 @@ msgstr "Dein Theme wählen" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Plugins" @@ -453,27 +135,27 @@ msgstr "Einführung" msgid "A custom navigation experience that is optimized for selling." msgstr "Ein individuelles Navigationserlebnis, das für den Verkauf optimiert ist." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Das Erledigen von Aufgaben mit WooCommerce geht jetzt noch schneller. Erhalte weitere Informationen über unsere neue Navigation – oder leg einfach los und probiere sie selbst aus." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Bewege dich schneller mit unserer neuen Navigation" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Jedes Mal, wenn du zu deinem WordPress.com-Dashboard zurückkehrst, erhältst du Tipps und Einblicke zur Performance deines Shops." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Lerne deine neue Startseite kennen" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Wähle eine neue Website-Adresse für deinen Shop oder übertrage eine, die dir bereits gehört." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Domain-Abbildung hinzufügen" @@ -521,53 +203,43 @@ msgstr "Bankverbindung erfolgreich hinzugefügt" msgid "Please enter an account number or IBAN" msgstr "Bitte gib eine gültige Kontonummer oder IBAN ein" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Nur Administratoren und Shop-Manager können während des Gratis-Tests Bestellungen aufgeben. Wenn du bereit bist, Zahlungen von Kunden zu empfangen, führe ein {{link}}Upgrade auf einen kostenpflichtigen Tarif{{/link}} durch." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Offline-Zahlungsmethoden" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Mehr anzeigen" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Probiere einen der alternativen Zahlungsanbieter aus." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Weitere Zahlungsanbieter" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Biete deinen Kunden weitere Zahlungsmöglichkeiten." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Zusätzliche Zahlungsoptionen" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "So bereitest du dich auf den Empfang von Online Zahlungen vor" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Zahlungsanbieter wählen" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Bei der Verbindung mit WooCommerce Payments ist ein Fehler aufgetreten. Bitte versuche es erneut oder stelle die Verbindung später in den Shop-Einstellungen her." @@ -584,196 +256,180 @@ msgstr "Durch deine Zustimmung zur Übermittlung nicht vertraulicher {{link}}Nut msgid "Help us build a better WooCommerce Payments experience" msgstr "Unterstütze uns bei der Optimierung von WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Durch die Verwendung von WooCommerce Payments stimmst du unseren {{tosLink}}Geschäftsbedingungen{{/tosLink}} zu und bestätigst, dass du unsere {{privacyLink}}Datenschutzerklärung{{/privacyLink}} gelesen hast " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Sei bereit, Zahlungen zu empfangen" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Ja, ich bin dabei!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Baue einen besseres WooCommerce auf" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Beim Aktualisieren deiner Einstellungen ist ein Problem aufgetreten" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Konfiguriere dein %(title)s-Konto" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" -msgstr "Installiere %s" +msgstr "%s installieren " -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Du kannst die Einstellungen dieses Zahlungs-Gateways verwalten, indem du auf den Button unten klickst" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Verbinden" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Weiter" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Beim Speichern deiner Zahlungseinstellungen ist ein Problem aufgetreten" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s erfolgreich konfiguriert" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Empfohlen" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Partner vor Ort" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" -msgstr "Einrichtung fertigstellen" +msgstr "Einrichtung abschließen" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" -msgstr "Freischalten" +msgstr "Aktivieren" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Ohne Überprüfung starten" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Ein paar Kleinigkeiten, die vor dem Starten deines Shops zu überprüfen sind" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Vor dem Starten" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Wähle eine Adresse für deine neue Website oder übertrage eine Domain, die dir bereits gehört." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Produkte auflisten" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Füge Produkte oder Dienstleistungen zu deinem Shop hinzu und beginne mit dem Verkauf. Erstelle deine Produkte manuell oder importiere sie aus einem bestehenden Shop." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Liste deine Produkte auf" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Biete deinen Kunden eine einfache und bequeme Möglichkeit zu bezahlen! Richte eine (oder mehrere) unserer schnellen und sicheren Online- oder persönlichen Zahlungsmethoden ein." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Erhalte Zahlungen" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Du kannst dies jederzeit unter Einstellungen rückgängig machen." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Es ist an der Zeit, zu feiern – du bist bereit, deinen Shop zu starten! Woo!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" -msgstr "Sind Sie bereit, Ihren Shop zu starten?" +msgstr "Bist du bereit, deinen Shop zu starten?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Du hast deine Meinung geändert? Du kannst deinen Shop wieder privat machen, indem du deine Privatsphäre-Einstellungen aktualisierst." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Deinen Shop ansehen" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Glückwunsch zum Starten deines WooCommerce-Shops. Nimm dir einen Moment Zeit zum Feiern und teile die Neuigkeiten!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! Geschafft!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Deinen Shop starten" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Kopiert" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Blende dieses Informationsbanner für den Gratis-Test aus." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Dies ist dein Test-Shop im Rahmen des Gratis-Tests, in dem du erkunden kannst, was es alles gibt! Wenn du mehr über den Gratis-Test erfahren möchtest, klicke auf „Weitere Informationen“." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Beim Speichern deines Shop-Standorts ist ein Problem aufgetreten" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Durch Klicken auf „Zahlungen testen“ stimmst du den {{tosLink}}Geschäftsbedingungen{{/tosLink}} zu" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Mache mehr aus deinen Zahlungen mit einer einfachen All-in-one-Option. Überprüfe die Daten deines Unternehmens, um mit dem Testen von Transaktionen mit WooCommerce Payments zu beginnen." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Zahlungen testen" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Biete deinen Kunden eine einfache und bequeme Möglichkeit zu bezahlen! Richte einige unserer schnellen und sicheren Online- oder persönlichen Zahlungsmethoden ein und teste sie." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Es ist an der Zeit, Zahlungen zu testen" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Zahlungs-Abbildung" @@ -834,7 +490,6 @@ msgstr "Passe deinen Shop mit WooCommerce-Erweiterungen perfekt an deine geschä #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Bringe deinen Shop mit Erweiterungen auf ein neues Level" @@ -848,7 +503,7 @@ msgstr "Es ist an der Zeit, zu feiern! Bist du bereit, deinen Shop zu starten?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Veröffentliche deinen Shop" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Du hast deinen Shop bereits gestartet" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 Minuten" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Domain" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Domain hinzufügen" @@ -884,7 +539,7 @@ msgstr "Du hast deine Domain hinzugefügt" #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:67 msgid "Save up to $800 in fees by managing transactions with WooCommerce Payments. With WooCommerce Payments, you can securely accept major cards, Apple Pay, and payments in over 100 currencies." -msgstr "Sparen Sie bis zu 800 $ Gebühren, indem Sie Transaktionen in WooCommerce Payments verwalten. Mit WooCommerce Payments können Sie sichere Zahlungen in über 100 Währungen akzeptieren – über alle geläufigen Kreditkarten und Apple Pay." +msgstr "Spare bis zu 800 USD Gebühren, indem du Transaktionen in WooCommerce Payments verwaltest. Mit WooCommerce Payments kannst du sichere Zahlungen in über 100 Währungen akzeptieren – über alle geläufigen Kreditkarten und Apple Pay." #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:41 msgid "To deliver a smooth checkout experience to your shoppers, we have supercharged your store with our brand-new, conversion-optimized checkout. Please take a few minutes to review some important information on Extension compatibility with the new Cart and Checkout Blocks. Then, go ahead and customize your store's Cart and Checkout pages." @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Jetzt upgraden" @@ -918,18 +572,18 @@ msgstr "Während des Gratis-Tests kannst du nur Testbestellungen aufgeben! Um Be msgid "Start selling to everyone" msgstr "Beginne mit dem Verkauf an alle" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" -msgstr "Mein Konto" +msgstr "Mein Account" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "Kontakt" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" -msgstr "Startseite" +msgstr "Home" #: includes/class-wc-calypso-bridge-setup-tasks.php:59 msgid "This site has already been launched" @@ -975,10 +629,9 @@ msgstr "Anti-Spam" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" -msgstr "Discover" +msgstr "Entdecken" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Verwalten" @@ -993,7 +646,7 @@ msgstr "Erweiterungen" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" -msgstr "Kunden" +msgstr "Kunde" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" @@ -1017,21 +670,17 @@ msgstr "Meine Startseite" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" -msgstr "Feedback" +msgstr "Rückmeldungen" #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:70 msgid "Save big with WooCommerce Payments" -msgstr "Mit WooCommerce Payments können Sie viel Geld sparen" +msgstr "Mit WooCommerce Payments kannst du viel Geld sparen" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" -msgstr "Nein, danke" +msgstr "Nein danke" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1070,19 +719,19 @@ msgstr "Zahle diese Bestellung mit einem Scheck." #: store-on-wpcom/inc/wc-calypso-bridge-add-bacs-accounts.php:92 msgid "An invalid setting value was passed." -msgstr "Ein ungültiger Einstellwert wurde übergeben." +msgstr "Ein ungültiger Einstellungswert wurde übergeben." #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:118 msgid "Cannot create order note, please try again." -msgstr "Bestellhinweis kann nicht erstellt werden. Bitte versuchen Sie es nochmal." +msgstr "Auftragsnotiz kann nicht erstellt werden, bitte versuche es erneut." #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:116 msgid "Order details manually sent to customer." -msgstr "Die Auftragsdaten wurden manuell an den Kunden gesendet." +msgstr "Auftragsdetails manuell an Kunden gesendet." #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:107 msgid "Invalid order ID." -msgstr "Ungültige Bestellnummer." +msgstr "Ungültige Bestellnummer-ID." #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 @@ -1091,7 +740,7 @@ msgstr "WooCommerce" #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:70 msgid "Sorry, you cannot view this resource." -msgstr "Entschuldigung, Sie können diese Ressource nicht anzeigen." +msgstr "Dir ist es nicht erlaubt, diese Ressource anzusehen." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:374 msgid "Featured image for the product." @@ -1115,7 +764,7 @@ msgstr "Status der Bewertung" #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:343 msgid "Shows if the reviewer bought the product or not." -msgstr "Zeigt an, ob der Bewertende das Produkt gekauft hat oder nicht." +msgstr "Zeigt, ob der Rezensent das Produkt gekauft hat oder nicht." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:338 msgid "URLs for the reviewer's avatar." @@ -1123,23 +772,23 @@ msgstr "URLs für den Avatar des Rezensenten." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:333 msgid "Reviewer email." -msgstr "E-Mail-Adresse des Bewertenden." +msgstr "E-Mail-Adresse des Rezensenten." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:328 msgid "Reviewer name." -msgstr "Name des Bewertenden." +msgstr "Name des Rezensenten." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:323 msgid "Review rating (0 to 5)." -msgstr "Bewertung (von 0 bis 5)." +msgstr "Bewertung (0 bis 5)." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:318 msgid "The date the review was created, as GMT." -msgstr "Das Datum, an dem die Bewertung erstellt wurde, als GMT." +msgstr "Das Datum, an dem die Bewertung erstellt wurde, gemäß GMT." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:313 msgid "The date the review was created, in the site's timezone." -msgstr "Das Datum, an dem die Bewertung erstellt wurde (in der Zeitzone der Seite)." +msgstr "Das Datum, an dem die Bewertung erstellt wurde, in der Zeitzone der Website." #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:308 msgid "The content of the review." @@ -1176,7 +825,7 @@ msgstr "Ergebnismenge auf Bewertungen mit einem bestimmten Status begrenzen." #: store-on-wpcom/api/class-wc-calypso-bridge-mailchimp-settings-controller.php:111 msgid "Sorry, you cannot edit this resource." -msgstr "Entschuldigung, Sie können diese Ressource nicht bearbeiten." +msgstr "Du kannst diese Ressource nicht bearbeiten." #: store-on-wpcom/api/class-wc-calypso-bridge-data-counts-controller.php:278 msgid "Collection of review totals by comment status." @@ -1193,7 +842,7 @@ msgstr "Sammlung der Gesamtzahl der Aufträge nach Auftragsstatus." #: store-on-wpcom/api/class-wc-calypso-bridge-data-counts-controller.php:60 #: store-on-wpcom/api/class-wc-calypso-bridge-product-reviews-controller.php:63 msgid "Sorry, you cannot list resources." -msgstr "Entschuldigung, es können keine Ressourcen aufgelistet werden." +msgstr "Du kannst Ressourcen leider nicht auflisten." #: includes/class-wc-calypso-bridge-themes-setup.php:97 msgid "You can change this text by editing the \"Parallax Hero\" Section via the \"Powerpack\" settings in the Customizer on the left hand side of your screen." @@ -1209,7 +858,7 @@ msgstr "Willkommen!" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:43 msgid "Add New" -msgstr "Erstellen" +msgstr "Hinzufügen" #: includes/class-wc-calypso-bridge-plugins.php:181 msgid "WooCommerce can't be deactivated on the eCommerce plan." @@ -1223,19 +872,15 @@ msgstr "Shop" msgid "Stats" msgstr "Statistiken" -#: build/index.js:1 -msgid "City" -msgstr "Stadt" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" -msgstr "Weiter" +msgstr "Fortsetzen" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" -msgstr "Mehr erfahren" +msgstr "Weitere Informationen." #: includes/class-wc-calypso-bridge-addons.php:89 msgid "WooCommerce extensions" diff --git a/languages/wc-calypso-bridge-es_CL.mo b/languages/wc-calypso-bridge-es_CL.mo index 16e14d72987b778e8171aa6ca6287aa2359ea598..126971b29d3d5ccc78f7872b1ffaafeef4a5005e 100644 GIT binary patch delta 5183 zcmYk<30PHS9>?+bAc(tyfQqOWu@Dgi0~N&tQGr|l6_=Dvyx=9dmtipp^@d{ZN%Lx{ zshBNhE~B0rD>F4?GMBW`X2xo?MVqXrnrEhLTBe!r|DNOXcpiTD^S)p z_S^NY;k_2@zgclyCK2T2wo3Ifl$z98T9rB!q?Cz=u{%10l?umtY=@h$J?_BKxCe9b zCMM!AzSId9U>B^zKy0$wy=py$UNmgQsc2ensJ0!WadN!+gAkuVNBs ziN$Yl9`@?VsNoWn8+sR;@N>I;0gW;eub|w>TNumv)fEbHC})j_cywR^mf|v$A^Xhs zE0m%C7cyJw7i7?sUvH)QVHo;G0vQ~YCUvGXAK#!}#5@ndh(1brrK3p{S zuEJk&H8we{_Rf(?`BNW2MIr=aO**jzj5iDax8TjMCpnC>MCkuK$V* zrs}|ol@T83rI1Wv2=bnCqI_YEUEhv!!jmX>eh%dhFWc>3qRjQbQC9tb?e@@nl-ft# zfv54jU2ndZlTuHOwx-(aq##$KQ99U$a%V?SF60!-39ldvS>3YV_oEk?(;$@hl?uW8QvaksoQ7)uyJfp_>)o=>5sWN;BH(?se zCfxw(I0rAHtdUs0U4=O)yXGY38cO|$G6h*&mGtL9Hj>(b^1b8O5kJKe{06-;H#sa_ z8S)}zdR4jYM(jrYD9RVlpxoINl#%!jgV8_98mS&QoO&YikW?;A!ADVc(d#I4e;yO@ zvn0lU6NM1Az(m}O+`Re$WiAJBdu5o3a;FD*$-|o%hQm2qFn2x$Td9{Y&OBRGG-s9X zPe54%E|jUQ#w=WdHQ1WM_@_}w8EHL2A3?d&$FVc+Lb=0(DEsyl%Fta$`CK|HQ+B~L zMY(y>F3lKRy+oz@wCJx7>?e{6q+e~i_@eb-MaJ3wx1$D z>N{R!iW0{v^#CqK2cE$SyoEB<(>a@1fO4m0C~K<nk12-U_^QwasWGIeerlHgY zJVQNnymjJhC>=T`SP!5WWc{eIC>=kH`_YT?xxty%NG4+!>ggzJBG+#BpghPLu!HRX zO%!CvTd)rvLh0x|Y{b9fE}WfZEyAC1C-uZ^wiaGOmVIVuk_brTXFWiTduoam;6-=c!=AkUgN|cToP(Hr_ig{1c_)j#K2($Y`L<;TUAcsBC0ssulM8uOT~8eT4G4 zV0xE1j<8KcxsVCAQ&Fa(5aql}a~S{g6t>cE1Iu!GIN-!QYmR$PwVaHBv@b`wSntG5$|cNT)&W{3^=ae~oe{-y_qn z+E2HBujirMQ3J{eS0O*@30@do^#u;Z`|_dr(NfnpqtL+~+NjZb5D98hdMDMz4;P=;+C_NKlEWok~N zEarU|`iS&hPu1d?M1X?}Vf95h8al$IE27uVnr9 zYoPpRvWgUwHl&=qLOkSE@;f3obLXh1@D6Dro$bb_(fbEpw%84qFp|i8$q;uTGBR?E zCk`oaoUl+UFn}B->@f8(d6RI%zN0;_$L(?)K1BxEbzzgN;W7#bNH21V$YPS?kcD~+ z7m=NI{TQwxo9%i()MN*F(Qey-GUsx1AhI>9i7ec0I7i_*GSF^diTIA`Ub`R*>VjRC{rUu1 zN1}=BhB~s84aN7$7Z zEFcp|Jb8e~w(3cSk}T4e+&L!Og(O^HmxF8{!hDiJ_S$U&Y=w5DJ86{tznj9NWEZ(} zETfP>E|N2LqfFJiq%R4!+n%v4!9I3b7<*UwLCPt2)iWu-O`ar0xxAbvcOTDESxn}T z3i3KRNrsch$U<`WQA4GZ-LOv=^t=#R<0$pG%UtDk)z0~jn!3_bXH896-NJ?SD$!Bt za@W=B#l0@+itrZmgWl~79oT2G&Y#guZ|gHd`}ZAS4)5z{=$-v01=Q8J+~xXkLYOXf zoY9{|Ue;&&f2m)IdP2`1;EixQOKVkz$6Z@uOV3Uks$9W5lTvK=Mm)lR2QNxW*N4*k^7e^0t?&KWk^&pb9_h!Id%&ewJL$esG*k#qI)slCll zQV$zCbxfp#!Y;| z(Djoy>cS~cnXx%P8T$Ub{_X6+@|aC|?G1fm>Upzhda|M4%FkiA>h*Us63m2|NrwJp zR*t!0c95aHbH35b=l-ID3#0U&f)iR7uF$^~^$np$keo=}V=_ zf%84ghRdVpI1jcXKTgetSWJj&Q9rGb%#;bi&LKZB#~g z&UU*>T^^NQ>a42u=zW#9%#-eAerD(Dbi@3*=5;^w+@eS$Fn6IfHjc&n^v{dSw4-5= z>1l}b)5Xi8^nqn(ja;4R4$<+Cex-*uI`oRhZD#ZG-o}xpm;Ckd)vNX9H9K_9T8|#H XZmo`3KizCu|Cyo3Z*117&3pe3a_Z@+ literal 37154 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 diff --git a/languages/wc-calypso-bridge-es_CL.po b/languages/wc-calypso-bridge-es_CL.po index d41260be..5ada3e2e 100644 --- a/languages/wc-calypso-bridge-es_CL.po +++ b/languages/wc-calypso-bridge-es_CL.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Inicio del blog" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Contrata a un experto" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "¿No encuentras lo que estás buscando? ¡Contrata una de nuestras agencias expertas! Nuestros expertos de Woo pueden ayudarte a crear la tienda de tus sueños, desde nuevas extensiones hasta la creación total de la tienda." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "¿Quieres expandir la función de comercio electrónico de tu tienda? El mercado de Woo tiene cientos de extensiones fiables designadas específicamente para tu tienda." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "Desde herramientas de SEO a funciones con varios idiomas, con los plugin de WordPress puedes personalizar tu sitio web para cualquier cosa que necesites hacer." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Personaliza tu sitio" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Añade funciones y características extra a tu sitio web con solo clicar un botón. Mejora tu plan a uno de pago y accede a miles de plugins gratuitos y de pago de WordPress. ¿Quieres saber qué se puede hacer?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "Hazlo a tu manera" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Descubre las extensiones" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Amplía tu tienda" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Explorar plugins" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "Haz que todo funcione con los plugins" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Consigue características mejoradas y correcciones más rápidas compartiendo datos no sensibles mediante el {{link}}seguimiento de uso{{/link}}, que nos muestra cómo se usa WooCommerce. No se almacena ni registra ningún dato personal." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Crea tarjetas regalo digitales" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Empieza a vender y aceptar tarjetas regalo digitales para aumentar la fidelidad de los clientes, obtener más ingresos e introducir nuevos clientes en tu tienda." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Fideliza a tus clientes con tarjetas regalo" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Haz llegar tus productos a millones de compradores comprometidos que navegan por las plataformas TikTok, Pinterest y Meta con publicidad en redes sociales." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Llega a más clientes a través de las redes sociales" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Llega a compradores activos a través de Google con listas de productos y anuncios, que puedes crear y gestionar directamente desde tu escritorio." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Promociona tus productos en Google" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "Prueba AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Impulsa las ventas y fideliza mediante mensajes de marketing automatizados que responden a los datos de compra de tus clientes." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Automatiza tu marketing" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Prueba nuestras herramientas de marketing integradas para llegar a más clientes y aumentar las ventas" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Haz crecer tu negocio con cientos de extensiones" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Llega a más clientes y haz crecer tu negocio con nuestras herramientas integradas de marketing y publicidad. Mejora tu plan a uno de pago para desbloquear nuestras potentes herramientas de marketing y empieza a hacer crecer tu negocio hoy mismo." - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "Prepárate para hacer crecer tu negocio" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Ejemplo de apariencia" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Ejemplo de productos" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Todo tiene muy buen aspecto. ¡Sigue así!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "¡Bravo! Hemos llegado al último paso. ¡Bien hecho!" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Solo quedan algunas tareas por hacer." - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Te damos la bienvenida a tu tienda Woo Express" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "Te damos la bienvenida a %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d de %2$d completadas." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "¡Ya casi estás listo/a para empezar a vender! Sigue estos pasos para configurar tu tienda de prueba." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Ocultar lista de configuración" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "El proceso de configuración de la tienda satisface mis necesidades." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "La configuración de la tienda es muy fácil." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Agradecemos tus comentarios." - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "¿Cómo ha sido tu experiencia?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Ocultar esto" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Mostrar lista de tareas de configuración" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Opciones de la lista de tareas" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "¡Enhorabuena! Dedica un instante a celebrarlo. Cuando estés listo/a para publicar tu tienda, lo único que tienes que hacer es mejorar a un plan de pago. Esto también desbloqueará las dos próximas tareas en la lista de tareas." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "¡Estupendo! Se ha creado tu tienda de prueba." - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "¡Estás haciendo un gran trabajo! Un elemento menos en tu lista de tareas ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Ha habido un problema al configurar los impuestos automáticos. Inténtalo de nuevo." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "Durante el periodo de prueba puedes configurar los ajustes del impuesto sobre las ventas, pero no recaudarlo. {{br/}}Para empezar a vender productos, {{link}}mejora tu plan ahora{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "No cobro impuestos" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Configura los impuestos manualmente" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Elige un socio fiscal" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax puede calcular por ti los impuestos de tus ventas." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Automatizar impuestos" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Automatizar impuestos" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Dirígete a la pantalla de ajustes de las tasas de impuestos para configurar tus tasas de impuestos" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Configurar las tasas de impuestos" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "La dirección desde la que opera tu negocio" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Establecer la ubicación de la tienda" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Selecciona un país o región" - -#: build/index.js:1 -msgid "Post code" -msgstr "Código postal" - -#: build/index.js:1 -msgid "Address" -msgstr "Dirección" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "País / Región" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "Al hacer clic en «Configurar», estás activando tasas de impuestos y cálculos. Más información {{link}}aquí{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "Configurar" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Continuar con la configuración" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "Al instalar WooCommerce Tax y Jetpack, aceptas las {{link}}Condiciones del servicio{{/link}}." - -#: build/index.js:1 -msgid "100% free" -msgstr "100 % gratis" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "Con la tecnología de {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Cumplimiento del nexo económico {{strong}}único{{/strong}}" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Cálculo de impuestos en tiempo real" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Lo mejor para las nuevas tiendas" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Consigue más ventas" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Mejora tu plan a uno de pago para desbloquear más funciones y empezar a vender" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Estás utilizando una versión de prueba gratuita. Para acceder a todas las funciones, mejora tu plan a uno de pago." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Ilustración de navegación modal de bienvenida 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Ilustración de navegación modal de bienvenida 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "Configuración necesaria" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Genera y gestiona ingresos recurrentes y obtén depósitos automáticos en tu cuenta bancaria designada." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Vende a mercados internacionales y acepta más de 135 monedas con los métodos de pago locales." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Ofrece a tus clientes el método de pago que prefieran, incluidos los pagos con tarjeta de débito y crédito, Apple Pay, Sofort, SEPA, iDeal y muchos más." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Entre los métodos de pago aceptados se incluyen:" - -#: build/index.js:1 -msgid "& more." -msgstr "y mucho más." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "Navegar por las extensiones" @@ -417,7 +99,7 @@ msgstr "Elige un tema" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Plugins" @@ -453,27 +135,27 @@ msgstr "Incorporación de empleados" msgid "A custom navigation experience that is optimized for selling." msgstr "Una experiencia de navegación personalizada y optimizada para la venta." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Ahora es más rápido hacer operaciones con WooCommerce. Obtén más información sobre nuestra nueva navegación o anímate a descubrirla por tu cuenta." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Desplázate más rápido con nuestra nueva navegación" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtén consejos e información detallada sobre el rendimiento de tu tienda cada vez que accedas a tu escritorio de WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Conoce tu nueva página de inicio" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Elige una nueva dirección de sitio web para tu tienda o transfiere una que ya tengas." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ejemplo de añadir un dominio" @@ -521,53 +203,43 @@ msgstr "Datos para transferencia bancaria directa añadidos correctamente" msgid "Please enter an account number or IBAN" msgstr "Introduce un número de cuenta o IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, {{link}}mejora tu plan a uno de pago{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Métodos de pago sin conexión" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Ver más" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Prueba uno de los proveedores de pago alternativos." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Otros proveedores de pago" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Ofrece a tus clientes opciones adicionales para pagar." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Opciones de pago adicionales" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Prepararse para aceptar pagos en línea" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Elige un proveedor de pago" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Se ha producido un error al conectar con WooCommerce Payments. Inténtalo de nuevo o conéctate más tarde desde los ajustes de la tienda." @@ -584,196 +256,180 @@ msgstr "Si aceptas compartir {{link}}datos sobre el uso{{/link}} no confidencial msgid "Help us build a better WooCommerce Payments experience" msgstr "Ayúdanos a mejorar la experiencia en WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Si utilizas WooCommerce Payments, aceptas regirte por nuestras {{tosLink}}Condiciones del servicio{{/tosLink}} y confirmas que has leído nuestra {{privacyLink}}Política de privacidad{{/privacyLink}}. " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Prepárate para aceptar pagos" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "¡Sí, cuenta conmigo!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Ayúdanos a mejorar WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Ha habido un problema al actualizar tus preferencias" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configura tu cuenta de %(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Instalar %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Puedes gestionar los ajustes de esta pasarela de pago haciendo clic en el siguiente botón." -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Conectar" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Proceder" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ha habido un problema al guardar tus ajustes de pago" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s se ha configurado correctamente" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recomendado" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Colaborador local" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Finalizar configuración" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activado" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Publicar de todas maneras" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Hay que comprobar unas cuantas cosas antes de publicar tu tienda" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Antes de publicarla" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Elige una dirección para tu nuevo sitio web o transfiere un dominio que ya tengas." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Crea una lista de productos" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Para empezar a vender, añade productos o servicios a tu tienda. Crea tus productos manualmente o impórtalos desde una tienda." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Crea tu lista de productos" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura uno (¡o más!) de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Recibe los pagos" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Puedes revertir esta opción en cualquier momento en Ajustes." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Es hora de celebrarlo: ¡ya estás a punto para publicar tu tienda! ¡Bravo!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "¿Estás preparado para lanzar tu tienda?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "¿Has cambiado de idea? Puedes volver a hacer que tu tienda sea privada si actualizas lo ajustes de Privacidad." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Visualiza tu tienda" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Enhorabuena por publicar tu sitio de WooCommerce. ¡Dedica un momento a celebrarlo y compartir la noticia!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "¡Bravo! Lo has conseguido." -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Publicación de tu tienda" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Copiado" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Descarta este banner informativo de prueba gratuita." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Esta es tu tienda de prueba gratuita en la que puedes empezar a explorar las funciones disponibles. Para obtener más detalles sobre la prueba gratuita, haz clic en \"Más información\"." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Ha habido un problema al guardar la ubicación de tu tienda" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Al hacer clic en \"Pagos de prueba\", aceptas las {{tosLink}}Condiciones del servicio{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Mejora los pagos con una opción sencilla e integral. Verifica los detalles de tu negocio para empezar a probar transacciones con WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Pagos de prueba" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura y prueba algunos de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Es hora de probar los pagos" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ejemplo de pago" @@ -834,7 +490,6 @@ msgstr "Personaliza tu tienda con extensiones de WooCommerce para que funcione a #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Mejora el nivel de tu tienda con extensiones" @@ -848,7 +503,7 @@ msgstr "¡Es hora de celebrarlo! ¿Todo listo para publicar tu tienda?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Pon en marcha tu tienda" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Ya has publicado tu tienda" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutos" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "dominio" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Añadir un dominio" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mejora tu plan ahora" @@ -918,16 +572,16 @@ msgstr "Durante el período de prueba, solo puedes hacer pedidos de prueba. Para msgid "Start selling to everyone" msgstr "Empieza a vender a todo el público" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Mi cuenta" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "contacto" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Inicio" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Discover" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gestionar" @@ -1023,15 +676,11 @@ msgstr "Comentarios" msgid "Save big with WooCommerce Payments" msgstr "Ahorra a lo grande con WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "No gracias " -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Tienda" msgid "Stats" msgstr "Estadísticas" -#: build/index.js:1 -msgid "City" -msgstr "Ciudad" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuar" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Saber más." diff --git a/languages/wc-calypso-bridge-es_ES.mo b/languages/wc-calypso-bridge-es_ES.mo index fb0d3ac48ad49d59c4ccc979f924d009112e2387..663dce097b5d4f3999bbe45a2a59b519d511a861 100644 GIT binary patch delta 5195 zcmYk<3s{s@9>?)Bh=Q0JiWsOcDy4{^7@#O7cnR>r#l$-rjsp(D3~@1uawIVoZ?s2C z%UkYRdFg_0H>J=l%ha;c+%DFZ*=9XYwbf>}wcCFGyvOJ9ef-VmoHH}$ec%5%@2G#@ z9q_?h4*zG}0yis;v!pk9u7gq$4y7h{mQkgi4OPm*X6%mcZc0UBEe7Kz?1e2AmoSO5 z#Nl_i03&XqYIrZo4ZVd8_@xL`> zf)C+N(@%-AOF9~5dt{-Ua5~C7OHl66Z(L`_x1#K=-6%_O1buiaiu%i1j$)P+JdUgI z4_u86PJ6s_U!?-+k4LFQw&~|1`%F#8uINFzky_k>8&LMZfPQw#hv8WI(tn!%FDPr(uD?BT50nW9p?oeGN8osr3GYMMGtDUTeS&g<-Ao1cYX@x4$qqL%P4F8Gs>?2uNm)gvr_x%JMlF< zZTd~Oa8mkd1MH>tyJ^UkXp{*aLAkSoC>Qc7$_dXQ8(Dp0-Vb0FS<_II_Y;u0)i?~o zQe2CbC`*a^SDBK!{hvNpMFT`Bo| zWO-GIaU}}MQ&dGg0hw|++HzeqTK1zyyW9o7>>g^TUYKp2anUAN1gd?Q8AoVzCR9S z4-}&;tq-%X7OU`BD)mpNkuuW$3B4QTO4nj%+>UaG`%#|TR+Q3RK>6Hl>`ZwI@{m8O zoR=`%i`%dj<^4JAWL8ftMY)hCQ7UoJPa}lJ36v6_MJf3|a2);%yJOO5+brW;l(nru z+09LO0bjuRsBcs1B>s%ttZE&@j>oGw9ewHcQu^PZ(Zs+Pcn4Ny*mwSh@f`9;UF1cU zC}ylu6R`rF*n*{a0j1QLT(y{oa;LLU_Ld8!GKoQ!tS@*KR~^a{iBjmCN9MTSZVsvnRX=yU>C-3McET$QRXQ^`5`OC5PAMr(2$aE zz&^MW<%_RiJ)Xv0n3H91!XI!4{adoxA9x(u4$4JYI^YiD9+V%Z11R%1qiot^C^!5O z?&bXI2O6^WTdA*H=^mVnuOrK+Lh1CvJd{mYhO+tY!3bQ3@&oj^>9?ZH_aVyWy@a#y zSIouyDfVW44E-|kr!*q*HJj#uW^6ejzQVG<%cuK)I7BWck&t7>ji% zceDrPgw4nw)xrzaRW}y!7Y-I;3^t-H%`+$`d=umF48DiI`)SCoe4B?-N`4*_@hZv* z2hFfcJ`Hc7--uFyW|X~i3j5=vnfBiBq3rJaP%7{c$^~slslZ9&#~4lD|1FIK8X@eE zY)r)_T!Bd#Hrw7T*(m*$*ocRbRZ|n@D0K)oqZf1MnqNv>N&f=MybB81xIEqmZ~*;? z`ECDV@~aFQawRn=YqJ@{umxA+yVxCP-D&?)mZMZ?sc|35X1ai~G*>Ya1B>jv5RE

Tc3XxZ$>=Bd@QRc04{z2ARIFN%n9tji-pL&8y@Pk>gn#bqtq~9j4!cYshBP zk48_x$H~)eE&D$rvcu)@l4NotIZI}eX0ndRX7xYL%e^F$bRq}HwWBMIaq=Jkl{m4GTPeR*qTI%21bYiiP+)fh6L?VyX zO=K9!A|1%JV~S}c;Ud!xH7>>iGLGyuV=+b{m~!lIz>e9%a z)(5?U9XhDb6y4aTSO-SMSi_?N9C}Ce(E9V{c@AAY;7`43U{`%nvrnEp&uPOqLZ)Ot+Jg(C6#WsPEGvC zN*nftLw}ld#hQ~cI>2ffF~rfnri8ES$dNnrg^_dhp0r-p=V{Fjoi^sUUZ4J@zCR;Y zf0S{r-aYn;_3^mh+UYMd>-5g7Dm^57hWsxI@=Y*{J8`JZ#0~UUBGA z`Tc@Tp?p?-en*FXdFp9v?zCiwK2k74&z@eZ|2=)6zE~D!Wz2ALO*3=eVB^%5YVCmK0U$y~Twg*_7tBrz(r8-P&3-On3Hdv__Qn2;jt{I%j)5OrSDc z?uu%k-c|m+b=bQ;zzVM{a9F|BhXbt3OA;JGd1ZEmCNABtV`_`_#JWM&*1E(1y_Ieij^wGvdeWWo- ZSFdf<`Rk@x=hj_x=zBIc>ARZt{vR6F^o0Nb literal 37207 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 Xd9-#v_!SA?*}<9=xheZuiRk|V>_t#z diff --git a/languages/wc-calypso-bridge-es_ES.po b/languages/wc-calypso-bridge-es_ES.po index 09f3ea2b..22befff3 100644 --- a/languages/wc-calypso-bridge-es_ES.po +++ b/languages/wc-calypso-bridge-es_ES.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Inicio del blog" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Contrata a un experto" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "¿No encuentras lo que estás buscando? ¡Contrata una de nuestras agencias expertas! Nuestros expertos de Woo pueden ayudarte a crear la tienda de tus sueños, desde nuevas extensiones hasta la creación total de la tienda." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "¿Quieres expandir la función de comercio electrónico de tu tienda? El mercado de Woo tiene cientos de extensiones fiables designadas específicamente para tu tienda." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "Desde herramientas de SEO a funciones con varios idiomas, con los plugin de WordPress puedes personalizar tu sitio web para cualquier cosa que necesites hacer." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Personaliza tu sitio" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Añade funciones y características extra a tu sitio web con solo clicar un botón. Mejora tu plan a uno de pago y accede a miles de plugins gratuitos y de pago de WordPress. ¿Quieres saber qué se puede hacer?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "Hazlo a tu manera" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Descubre las extensiones" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Amplía tu tienda" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Explorar plugins" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "Haz que todo funcione con los plugins" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Consigue características mejoradas y correcciones más rápidas compartiendo datos no sensibles mediante el {{link}}seguimiento de uso{{/link}}, que nos muestra cómo se usa WooCommerce. No se almacena ni registra ningún dato personal." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Crea tarjetas regalo digitales" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Empieza a vender y aceptar tarjetas regalo digitales para aumentar la fidelidad de los clientes, obtener más ingresos e introducir nuevos clientes en tu tienda." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Fideliza a tus clientes con tarjetas regalo" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Haz llegar tus productos a millones de compradores comprometidos que navegan por las plataformas TikTok, Pinterest y Meta con publicidad en redes sociales." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Llega a más clientes a través de las redes sociales" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Llega a compradores activos a través de Google con listas de productos y anuncios, que puedes crear y gestionar directamente desde tu escritorio." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Promociona tus productos en Google" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "Prueba AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Impulsa las ventas y fideliza mediante mensajes de marketing automatizados que responden a los datos de compra de tus clientes." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Automatiza tu marketing" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Prueba nuestras herramientas de marketing integradas para llegar a más clientes y aumentar las ventas" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Haz crecer tu negocio con cientos de extensiones" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Llega a más clientes y haz crecer tu negocio con nuestras herramientas integradas de marketing y publicidad. Mejora tu plan a uno de pago para desbloquear nuestras potentes herramientas de marketing y empieza a hacer crecer tu negocio hoy mismo." - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "Prepárate para hacer crecer tu negocio" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Ejemplo de apariencia" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Ejemplo de productos" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Todo tiene muy buen aspecto. ¡Sigue así!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "¡Bravo! Hemos llegado al último paso. ¡Bien hecho!" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Solo quedan algunas tareas por hacer." - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Te damos la bienvenida a tu tienda Woo Express" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "Te damos la bienvenida a %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d de %2$d completadas." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "¡Ya casi estás listo/a para empezar a vender! Sigue estos pasos para configurar tu tienda de prueba." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Ocultar lista de configuración" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "El proceso de configuración de la tienda satisface mis necesidades." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "La configuración de la tienda es muy fácil." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Agradecemos tus comentarios." - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "¿Cómo ha sido tu experiencia?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Ocultar esto" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Mostrar lista de tareas de configuración" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Opciones de la lista de tareas" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "¡Enhorabuena! Dedica un instante a celebrarlo. Cuando estés listo/a para publicar tu tienda, lo único que tienes que hacer es mejorar a un plan de pago. Esto también desbloqueará las dos próximas tareas en la lista de tareas." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "¡Estupendo! Se ha creado tu tienda de prueba." - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "¡Estás haciendo un gran trabajo! Un elemento menos en tu lista de tareas ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Ha habido un problema al configurar los impuestos automáticos. Inténtalo de nuevo." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "Durante el periodo de prueba puedes configurar los ajustes del impuesto sobre las ventas, pero no recaudarlo. {{br/}}Para empezar a vender productos, {{link}}mejora tu plan ahora{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "No cobro impuestos" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Configura los impuestos manualmente" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Elige un socio fiscal" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax puede calcular por ti los impuestos de tus ventas." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Automatizar impuestos" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Automatizar impuestos" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Dirígete a la pantalla de ajustes de las tasas de impuestos para configurar tus tasas de impuestos" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Configurar las tasas de impuestos" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "La dirección desde la que opera tu negocio" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Establecer la ubicación de la tienda" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Selecciona un país o región" - -#: build/index.js:1 -msgid "Post code" -msgstr "Código postal" - -#: build/index.js:1 -msgid "Address" -msgstr "Dirección" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "País / Región" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "Al hacer clic en «Configurar», estás activando tasas de impuestos y cálculos. Más información {{link}}aquí{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "Configurar" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Continuar con la configuración" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "Al instalar WooCommerce Tax y Jetpack, aceptas las {{link}}Condiciones del servicio{{/link}}." - -#: build/index.js:1 -msgid "100% free" -msgstr "100 % gratis" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "Con la tecnología de {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Cumplimiento del nexo económico {{strong}}único{{/strong}}" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Cálculo de impuestos en tiempo real" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Lo mejor para las nuevas tiendas" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Consigue más ventas" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Mejora tu plan a uno de pago para desbloquear más funciones y empezar a vender" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Estás utilizando una versión de prueba gratuita. Para acceder a todas las funciones, mejora tu plan a uno de pago." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Ilustración de navegación modal de bienvenida 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Ilustración de navegación modal de bienvenida 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "Configuración necesaria" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Genera y gestiona ingresos recurrentes y obtén depósitos automáticos en tu cuenta bancaria designada." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Vende a mercados internacionales y acepta más de 135 monedas con los métodos de pago locales." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Ofrece a tus clientes el método de pago que prefieran, incluidos los pagos con tarjeta de débito y crédito, Apple Pay, Sofort, SEPA, iDeal y muchos más." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Entre los métodos de pago aceptados se incluyen:" - -#: build/index.js:1 -msgid "& more." -msgstr "y mucho más." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "Ver las extensiones" @@ -417,7 +99,7 @@ msgstr "Elige un tema" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Plugins" @@ -453,27 +135,27 @@ msgstr "Incorporación de empleados" msgid "A custom navigation experience that is optimized for selling." msgstr "Una experiencia de navegación personalizada y optimizada para la venta." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Ahora es más rápido hacer operaciones con WooCommerce. Obtén más información sobre nuestra nueva navegación o anímate a descubrirla por tu cuenta." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Desplázate más rápido con nuestra nueva navegación" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtén consejos e información detallada sobre el rendimiento de tu tienda cada vez que accedas a tu escritorio de WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Conoce tu nueva página de inicio" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Elige una nueva dirección de sitio web para tu tienda o transfiere una que ya tengas." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ejemplo de añadir un dominio" @@ -521,53 +203,43 @@ msgstr "Datos para transferencia bancaria directa añadidos correctamente" msgid "Please enter an account number or IBAN" msgstr "Introduce un número de cuenta o IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, {{link}}mejora tu plan a uno de pago{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Métodos de pago sin conexión" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Ver más" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Prueba uno de los proveedores de pago alternativos." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Otros proveedores de pago" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Ofrece a tus clientes opciones adicionales para pagar." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Opciones de pago adicionales" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Prepararse para aceptar pagos en línea" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Elige un proveedor de pago" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Se ha producido un error al conectar con WooCommerce Payments. Inténtalo de nuevo o conéctate más tarde desde los ajustes de la tienda." @@ -584,196 +256,180 @@ msgstr "Si aceptas compartir {{link}}datos sobre el uso{{/link}} no confidencial msgid "Help us build a better WooCommerce Payments experience" msgstr "Ayúdanos a mejorar la experiencia en WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Si utilizas WooCommerce Payments, aceptas regirte por nuestras {{tosLink}}Condiciones del servicio{{/tosLink}} y confirmas que has leído nuestra {{privacyLink}}Política de privacidad{{/privacyLink}}. " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Prepárate para aceptar pagos" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "¡Sí, cuenta conmigo!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Ayúdanos a mejorar WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Ha habido un problema al actualizar tus preferencias" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configura tu cuenta de %(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Instalar %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Puedes gestionar los ajustes de esta pasarela de pago haciendo clic en el siguiente botón." -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Conectar" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Ejecutar" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ha habido un problema al guardar tus ajustes de pago" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s se ha configurado correctamente" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recomendado" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Colaborador local" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Finalizar configuración" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activar" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Publicar de todas maneras" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Hay que comprobar unas cuantas cosas antes de publicar tu tienda" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Antes de publicarla" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Elige una dirección para tu nuevo sitio web o transfiere un dominio que ya tengas." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Crea una lista de productos" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Para empezar a vender, añade productos o servicios a tu tienda. Crea tus productos manualmente o impórtalos desde una tienda." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Crea tu lista de productos" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura uno (¡o más!) de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Recibe los pagos" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Puedes revertir esta opción en cualquier momento en Ajustes." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Es hora de celebrarlo: ¡ya estás a punto para publicar tu tienda! ¡Bravo!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "¿Estás preparado para lanzar tu tienda?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "¿Has cambiado de idea? Puedes volver a hacer que tu tienda sea privada si actualizas lo ajustes de Privacidad." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Visualiza tu tienda" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Enhorabuena por publicar tu sitio de WooCommerce. ¡Dedica un momento a celebrarlo y compartir la noticia!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "¡Bravo! Lo has conseguido." -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Publicación de tu tienda" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Copiado" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Descarta este banner informativo de prueba gratuita." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Esta es tu tienda de prueba gratuita en la que puedes empezar a explorar las funciones disponibles. Para obtener más detalles sobre la prueba gratuita, haz clic en \"Más información\"." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Ha habido un problema al guardar la ubicación de tu tienda" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Al hacer clic en \"Pagos de prueba\", aceptas las {{tosLink}}Condiciones del servicio{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Mejora los pagos con una opción sencilla e integral. Verifica los detalles de tu negocio para empezar a probar transacciones con WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Pagos de prueba" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura y prueba algunos de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Es hora de probar los pagos" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ejemplo de pago" @@ -834,7 +490,6 @@ msgstr "Personaliza tu tienda con extensiones de WooCommerce para que funcione a #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Mejora el nivel de tu tienda con extensiones" @@ -848,7 +503,7 @@ msgstr "¡Es hora de celebrarlo! ¿Todo listo para publicar tu tienda?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Pon en marcha tu tienda" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Ya has publicado tu tienda" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutos" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Dominio" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Añadir un dominio" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mejora tu plan ahora" @@ -918,16 +572,16 @@ msgstr "Durante el período de prueba, solo puedes hacer pedidos de prueba. Para msgid "Start selling to everyone" msgstr "Empieza a vender a todo el público" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Mi cuenta" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "contacto" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Inicio" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Descubre" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gestionar" @@ -1023,15 +676,11 @@ msgstr "Mensajes" msgid "Save big with WooCommerce Payments" msgstr "Ahorra a lo grande con WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "No, gracias" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Tienda" msgid "Stats" msgstr "Estadísticas" -#: build/index.js:1 -msgid "City" -msgstr "Ciudad" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuar" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Saber más." diff --git a/languages/wc-calypso-bridge-es_MX.mo b/languages/wc-calypso-bridge-es_MX.mo index e2c9aea982f4386959c4711fdc8aafa772550737..62d6ef975dd003605689592bfbef7b16f45908cc 100644 GIT binary patch delta 5191 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

@YNg1*Xf!t6qxFJulV&J0 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 diff --git a/languages/wc-calypso-bridge-es_MX.po b/languages/wc-calypso-bridge-es_MX.po index 01b337d9..a3ed80a3 100644 --- a/languages/wc-calypso-bridge-es_MX.po +++ b/languages/wc-calypso-bridge-es_MX.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Inicio del blog" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Contrata a un experto" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "¿No encuentras lo que estás buscando? ¡Contrata una de nuestras agencias expertas! Nuestros expertos de Woo pueden ayudarte a crear la tienda de tus sueños, desde nuevas extensiones hasta la creación total de la tienda." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "¿Quieres expandir la función de comercio electrónico de tu tienda? El mercado de Woo tiene cientos de extensiones fiables designadas específicamente para tu tienda." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "Desde herramientas de SEO a funciones con varios idiomas, con los plugin de WordPress puedes personalizar tu sitio web para cualquier cosa que necesites hacer." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Personaliza tu sitio" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Añade funciones y características extra a tu sitio web con solo clicar un botón. Mejora tu plan a uno de pago y accede a miles de plugins gratuitos y de pago de WordPress. ¿Quieres saber qué se puede hacer?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "Hazlo a tu manera" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Descubre las extensiones" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Amplía tu tienda" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Explorar plugins" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "Haz que todo funcione con los plugins" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Consigue características mejoradas y correcciones más rápidas compartiendo datos no sensibles mediante el {{link}}seguimiento de uso{{/link}}, que nos muestra cómo se usa WooCommerce. No se almacena ni registra ningún dato personal." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Crea tarjetas regalo digitales" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Empieza a vender y aceptar tarjetas regalo digitales para aumentar la fidelidad de los clientes, obtener más ingresos e introducir nuevos clientes en tu tienda." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Fideliza a tus clientes con tarjetas regalo" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Haz llegar tus productos a millones de compradores comprometidos que navegan por las plataformas TikTok, Pinterest y Meta con publicidad en redes sociales." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Llega a más clientes a través de las redes sociales" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Llega a compradores activos a través de Google con listas de productos y anuncios, que puedes crear y gestionar directamente desde tu escritorio." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Promociona tus productos en Google" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "Prueba AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Impulsa las ventas y genera lealtad a través de mensajes de marketing automatizados que respondan a los datos de compra de tus clientes." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Automatiza tu marketing" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Prueba nuestras herramientas de marketing integradas para llegar a más clientes y aumentar las ventas" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Haz crecer tu negocio con cientos de extensiones" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Llega a más clientes y haz crecer tu negocio con nuestras herramientas integradas de marketing y publicidad. Mejora tu plan a uno de pago para desbloquear nuestras potentes herramientas de marketing y empieza a hacer crecer tu negocio hoy mismo." - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "Prepárate para hacer crecer tu negocio" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Ejemplo de apariencia" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Ejemplo de productos" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Todo tiene muy buen aspecto. ¡Sigue así!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "¡Bravo! Hemos llegado al último paso. ¡Bien hecho!" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Solo quedan algunas tareas por hacer." - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Te damos la bienvenida a tu tienda Woo Express" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "Te damos la bienvenida a %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d de %2$d completadas." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "¡Ya casi estás listo/a para empezar a vender! Sigue estos pasos para configurar tu tienda de prueba." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Ocultar la lista de configuración" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "El proceso de configuración de la tienda satisface mis necesidades." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "La configuración de la tienda es muy fácil." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Agradecemos tus comentarios." - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "¿Cómo ha sido tu experiencia?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Ocultar esto" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Mostrar lista de tareas de configuración" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Opciones de la lista de tareas" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "¡Enhorabuena! Dedica un instante a celebrarlo. Cuando estés listo/a para publicar tu tienda, lo único que tienes que hacer es mejorar a un plan de pago. Esto también desbloqueará las dos próximas tareas en la lista de tareas." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "¡Estupendo! Se ha creado tu tienda de prueba." - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "¡Estás haciendo un gran trabajo! Un elemento menos en tu lista de tareas ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Ha habido un problema al configurar los impuestos automáticos. Inténtalo de nuevo." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "Durante el periodo de prueba puedes configurar los ajustes del impuesto sobre las ventas, pero no recaudarlo. {{br/}}Para empezar a vender productos, {{link}}mejora tu plan ahora{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "No cobro impuestos" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Configura los impuestos manualmente" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Elige un socio fiscal" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax puede calcular por ti los impuestos de tus ventas." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Automatizar impuestos" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Automatizar impuestos" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Dirígete a la pantalla de ajustes de las tasas de impuestos para configurar tus tasas de impuestos" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Configurar las tasas de impuestos" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "La dirección desde la que opera tu negocio" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Establecer la ubicación de la tienda" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Por favor, selecciona un país / región" - -#: build/index.js:1 -msgid "Post code" -msgstr "Código postal" - -#: build/index.js:1 -msgid "Address" -msgstr "Dirección" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "País/Región" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "Al hacer clic en «Configurar», estás activando tasas de impuestos y cálculos. Más información {{link}}aquí{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "Configurar" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Continuar con la configuración" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "Al instalar WooCommerce Tax y Jetpack, aceptas las {{link}}Condiciones del servicio{{/link}}." - -#: build/index.js:1 -msgid "100% free" -msgstr "100 % gratis" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "Con la tecnología de {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Cumplimiento del nexo económico {{strong}}único{{/strong}}" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Cálculo de impuestos en tiempo real" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Lo mejor para las nuevas tiendas" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "Impuesto de WooCommerce" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Consigue más ventas" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Mejora tu plan a uno de pago para desbloquear más funciones y empezar a vender" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Estás utilizando una versión de prueba gratuita. Para acceder a todas las funciones, mejora tu plan a uno de pago." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Ilustración de navegación modal de bienvenida 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Ilustración de navegación modal de bienvenida 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "Configuración necesaria" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Genera y gestiona ingresos recurrentes y obtén depósitos automáticos en tu cuenta bancaria designada." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Vende a mercados internacionales y acepta más de 135 monedas con los métodos de pago locales." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Ofrece a tus clientes el método de pago que prefieran, incluidos los pagos con tarjeta de débito y crédito, Apple Pay, Sofort, SEPA, iDeal y muchos más." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Entre los métodos de pago aceptados se incluyen:" - -#: build/index.js:1 -msgid "& more." -msgstr "y mucho más." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "Navegar por las extensiones" @@ -417,7 +99,7 @@ msgstr "Elige un tema" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Plugins" @@ -453,27 +135,27 @@ msgstr "Inducción" msgid "A custom navigation experience that is optimized for selling." msgstr "Una experiencia de navegación personalizada y optimizada para la venta." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Ahora es más rápido hacer operaciones con WooCommerce. Obtén más información sobre nuestra nueva navegación o anímate a descubrirla por tu cuenta." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Desplázate más rápido con nuestra nueva navegación" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtén consejos e información detallada sobre el rendimiento de tu tienda cada vez que accedas a tu escritorio de WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Conoce tu nueva página de inicio" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Elige una nueva dirección de sitio web para tu tienda o transfiere una que ya tengas." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ejemplo de añadir un dominio" @@ -521,53 +203,43 @@ msgstr "Datos para transferencia bancaria directa añadidos correctamente" msgid "Please enter an account number or IBAN" msgstr "Introduce un número de cuenta o IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Solo los administradores y los gerentes de tienda pueden hacer pedidos durante la prueba gratuita. Si ya lo tienes todo listo para aceptar pagos de clientes, {{link}}mejora tu plan a uno de pago{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Métodos de pago sin conexión" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Ver más" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Prueba uno de los proveedores de pago alternativos." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Otros proveedores de pago" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Ofrece a tus clientes opciones adicionales para pagar." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Opciones de pago adicionales" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Prepararse para aceptar pagos en línea" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Elige un proveedor de pago" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Se ha producido un error al conectar con WooCommerce Payments. Inténtalo de nuevo o conéctate más tarde desde los ajustes de la tienda." @@ -584,196 +256,180 @@ msgstr "Si aceptas compartir {{link}}datos sobre el uso{{/link}} no confidencial msgid "Help us build a better WooCommerce Payments experience" msgstr "Ayúdanos a mejorar la experiencia en WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Si utilizas WooCommerce Payments, aceptas regirte por nuestras {{tosLink}}Condiciones del servicio{{/tosLink}} y confirmas que has leído nuestra {{privacyLink}}Política de privacidad{{/privacyLink}}. " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Prepárate para aceptar pagos" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "¡Sí, cuenta conmigo!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Ayúdanos a mejorar WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Ha habido un problema al actualizar tus preferencias" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configura tu cuenta de %(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Instalar %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Puedes gestionar los ajustes de esta pasarela de pago haciendo clic en el siguiente botón." -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Conectar" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Ejecutar" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ha habido un problema al guardar tus ajustes de pago" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s se ha configurado correctamente" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recomendado(s)" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Colaborador local" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Finalizar configuración" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activar" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Publicar de todas maneras" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Hay que comprobar unas cuantas cosas antes de publicar tu tienda" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Antes de publicarla" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Elige una dirección para tu nuevo sitio web o transfiere un dominio que ya tengas." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Crea una lista de productos" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Para empezar a vender, añade productos o servicios a tu tienda. Crea tus productos manualmente o impórtalos desde una tienda." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Crea tu lista de productos" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura uno (¡o más!) de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Recibe los pagos" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Puedes revertir esta opción en cualquier momento en Ajustes." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Es hora de celebrarlo: ¡ya estás a punto para publicar tu tienda! ¡Bravo!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "¿Estás preparado para lanzar tu tienda?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "¿Has cambiado de idea? Puedes volver a hacer que tu tienda sea privada si actualizas lo ajustes de Privacidad." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Visualiza tu tienda" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Enhorabuena por publicar tu sitio de WooCommerce. ¡Dedica un momento a celebrarlo y compartir la noticia!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "¡Bravo! Lo has conseguido." -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Publicación de tu tienda" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Copiado" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Descarta este banner informativo de prueba gratuita." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Esta es tu tienda de prueba gratuita en la que puedes empezar a explorar las funciones disponibles. Para obtener más detalles sobre la prueba gratuita, haz clic en \"Más información\"." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Ha habido un problema al guardar la ubicación de tu tienda" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Al hacer clic en \"Pagos de prueba\", aceptas las {{tosLink}}Condiciones del servicio{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Mejora los pagos con una opción sencilla e integral. Verifica los detalles de tu negocio para empezar a probar transacciones con WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Pagos de prueba" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Ofrece a tus clientes una manera de pagar fácil y cómoda. Configura y prueba algunos de nuestros métodos de pago en línea o en persona rápidos y seguros." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Es hora de probar los pagos" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ejemplo de pago" @@ -834,7 +490,6 @@ msgstr "Personaliza tu tienda con extensiones de WooCommerce para que funcione a #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Mejora el nivel de tu tienda con extensiones" @@ -848,7 +503,7 @@ msgstr "¡Es hora de celebrarlo! ¿Todo listo para publicar tu tienda?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Pon en marcha tu tienda" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Ya has publicado tu tienda" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutos" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "dominio" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Añadir un dominio" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mejora tu plan ahora" @@ -918,16 +572,16 @@ msgstr "Durante el período de prueba, solo puedes hacer pedidos de prueba. Para msgid "Start selling to everyone" msgstr "Empieza a vender a todo el público" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Mi Cuenta" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "Contacto" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Inicio" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Discover" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gestionar" @@ -1023,15 +676,11 @@ msgstr "Sugerencias" msgid "Save big with WooCommerce Payments" msgstr "Ahorra a lo grande con WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "No, gracias" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Tienda" msgid "Stats" msgstr "Estadísticas" -#: build/index.js:1 -msgid "City" -msgstr "Ciudad" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuar" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Aprende más" diff --git a/languages/wc-calypso-bridge-fr_BE.mo b/languages/wc-calypso-bridge-fr_BE.mo index a8410a867d9b0de5bcd41e014efb084fac79567d..492c69ea07ccfa79c6c7a10958bd6a3239f65680 100644 GIT binary patch delta 5211 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 AaR2}S literal 38684 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 diff --git a/languages/wc-calypso-bridge-fr_BE.po b/languages/wc-calypso-bridge-fr_BE.po index 280d9a6b..13112dad 100644 --- a/languages/wc-calypso-bridge-fr_BE.po +++ b/languages/wc-calypso-bridge-fr_BE.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Page d’accueil du blog" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Faire appel à un expert" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "Vous ne trouvez pas ce que vous cherchez ? Faites appel aux services de l’une de nos agences spécialisées ! Que vous recherchiez de nouvelles extensions ou souhaitiez créer une boutique de A à Z, nos experts Woo peuvent vous aider à créer la boutique de vos rêves." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "Vous souhaitez développer les fonctionnalités eCommerce de votre boutique ? Le Woo Marketplace propose des centaines d’extensions de confiance conçues spécifiquement pour votre boutique." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "Des outils d’optimisation des moteurs de recherche aux fonctionnalités multilingues, les extensions WordPress facilitent la personnalisation de votre site Web pour qu’il réponde à tous vos besoins." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Personnaliser votre site Web" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Ajoutez des fonctionnalités supplémentaires à votre site Web en un clic. Passez à un plan payant et accédez à des milliers d’extensions WordPress gratuites et payantes. Votre curiosité vous pousse à découvrir tous les possibles ?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "Faites-le à votre manière" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Découvrir les extensions" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Développer votre boutique" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Parcourir les extensions" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "Donnez vie à vos idées avec les extensions." - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Profitez de fonctionnalités optimisées et de résolutions plus rapides en partageant les données non sensibles via le {{link}}suivi de votre utilisation{{/link}} de WooCommerce. Aucune donnée personnelle n’est suivie ou enregistrée." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Créer des cartes-cadeaux numériques" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Commencez à vendre et à accepter des cartes-cadeaux numériques pour fidéliser votre clientèle, augmenter votre chiffre d’affaires et attirer de nouveaux clients sur votre boutique." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Fidéliser davantage vos clients grâce aux cartes-cadeaux" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Mettez vos produits en avant auprès de millions d’acheteurs engagés qui parcourent TikTok, Pinterest et Meta grâce à la publicité sur les réseaux sociaux." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Atteindre plus de clients sur les réseaux sociaux" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Atteignez les acheteurs actifs sur Google avec des listes de produits et des publicités que vous pouvez créer et gérer directement à partir de votre tableau de bord." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Faire la publicité de vos produits sur Google" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "Essayer AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Stimulez les ventes et fidélisez vos clients grâce à des messages marketing automatisés qui répondent à leurs données d’achat." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Automatisez votre marketing" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Découvrez nos outils de marketing intégrés pour atteindre plus de clients et stimuler vos ventes." - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Développer votre activité grâce à des centaines d’extensions" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Atteignez plus de clients et développez votre activité grâce à nos outils de marketing et de publicité intégrés. Passez à un plan payant pour profiter de nos puissants outils marketing et commencez à développer votre activité dès aujourd’hui !" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "Soyez prêt à développer votre activité" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Illustration d’Apparence" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Illustration de produits" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Tout se déroule à merveille, continuez comme ça !" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Génial ! Nous voilà à la dernière étape ! Bon travail !" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Il ne reste plus que quelques tâches à accomplir !" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Bienvenue dans votre boutique Woo Express" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "Bienvenue dans %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d sur %2$d terminés." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "Vous êtes presque prêt à vendre ! Procédez comme suit pour configurer votre boutique test." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Masquer la liste de configuration" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "Le processus de configuration de la boutique répond à mes besoins." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "La configuration de la boutique est facile à réaliser." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Nous apprécions votre avis !" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "Comment s’est passée votre expérience ?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Masquer ceci" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Afficher la liste des tâches de configuration" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Options de la liste de tâches" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "Bravo ! Prenez le temps de fêter l’événement. Lorsque vous êtes prêt à lancer votre boutique, passez simplement à une formule payante. Cette action vous donnera accès aux deux tâches suivantes de la liste des tâches." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "Woohoo ! Votre boutique test a été créée !" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "Vous êtes formidable ! Une tâche de moins sur votre liste de choses à faire ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Un problème est survenu lors de la configuration des taxes automatisées. Veuillez réessayer." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "Pendant la période d’essai gratuite, vous avez accès aux réglages des taxes de vente, mais ces dernières ne sont pas collectables. {{br/}}Pour commencer à vendre des produits, {{link}}passez à la version payante dès maintenant{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "Je ne facture pas la TVA" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Configurer les taxes manuellement" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Choisir un partenaire fiscal" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax peut automatiser le calcul des taxes de vente pour vous." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Automatiser les taxes" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Automatiser les taxes" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Consultez l’écran des réglages des taux de taxe pour configurer ces derniers" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Configurer les taux de taxe" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "Adresse physique de l’entreprise" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Localiser la boutique" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Veuillez choisir un pays/région" - -#: build/index.js:1 -msgid "Post code" -msgstr "Code postal" - -#: build/index.js:1 -msgid "Address" -msgstr "Adresse " - -#: build/index.js:1 -msgid "Country / Region" -msgstr "Pays/région" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "En cliquant sur « Configurer », vous activez les taux de taxe, ainsi que les calculs. Vous trouverez plus d’informations {{link}}ici{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "Configurer" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Poursuivre la configuration" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "En installant Jetpack et WooCommerce Tax, vous acceptez les {{link}}Conditions d’utilisation{{/link}}." - -#: build/index.js:1 -msgid "100% free" -msgstr "100 % gratuit" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "Optimisé par {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Conformité au lien économique {{strong}}unique{{/strong}}" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Calcul des taxes de vente en temps réel" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Idéal pour les nouvelles boutiques" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce 101" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Augmenter les ventes" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Passer à un plan payant pour accéder à de nouvelles fonctionnalités et commencer à vendre" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Vous utilisez actuellement une version d’essai gratuite ! Pour accéder à l’ensemble des fonctionnalités, passez à un plan payant." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Illustration de la navigation modale de bienvenue 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Illustration de la navigation modale de bienvenue 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "Configuration requise" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Gagnez et gérez des revenus récurrents et obtenez des dépôts automatiques sur votre compte bancaire désigné." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Vendez sur les marchés internationaux et acceptez plus de 135 devises avec des moyens de paiement locaux." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Permettez à vos clients d’utiliser leur moyen de paiement préféré, y compris les cartes de débit et de crédit, Apple Pay, Sofort, SEPA, iDeal et bien d’autres encore." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Moyens de paiement acceptés :" - -#: build/index.js:1 -msgid "& more." -msgstr "et plus." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "Parcourir les extensions" @@ -417,7 +99,7 @@ msgstr "Choisir votre thème" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Extensions" @@ -453,27 +135,27 @@ msgstr "Intégration" msgid "A custom navigation experience that is optimized for selling." msgstr "Une expérience de navigation personnalisée et optimisée pour la vente." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Faire avancer les choses avec WooCommerce est devenu plus rapide. Apprenez-en plus sur notre nouvelle navigation ou découvrez-la par vous-même." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Allez plus vite grâce à notre nouvelle navigation" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtenez des conseils et des tendances sur les performances de votre boutique chaque fois que vous revenez dans votre tableau de bord WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Découvrez votre nouvel accueil" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Choisissez une nouvelle adresse de site Web pour votre boutique ou transférez-en une que vous possédez déjà." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ajouter une illustration de domaine" @@ -521,53 +203,43 @@ msgstr "Les coordonnées de virement bancaire ont bien été ajoutées." msgid "Please enter an account number or IBAN" msgstr "Veuillez entrer un numéro de compte ou un numéro IBAN." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, {{link}}passez à un plan payant{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Moyens de paiement hors ligne" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "En savoir plus" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Testez l’un des fournisseurs de paiement alternatifs." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Autres fournisseurs de paiement" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Offrez à vos clients des choix supplémentaires en matière de moyens de paiement." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Options de paiement supplémentaires" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Pour se préparer à accepter des paiements en ligne" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Choisir un fournisseur de paiement" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Une erreur est survenue lors de la connexion à WooCommerce Payments. Réessayez ou connectez-vous plus tard dans les réglages de la boutique." @@ -584,196 +256,180 @@ msgstr "En acceptant de partager des {{link}}données d’utilisation{{/link}} n msgid "Help us build a better WooCommerce Payments experience" msgstr "Aidez-nous à améliorer l’expérience de WooCommerce Payments." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "En utilisant WooCommerce Payments, vous acceptez de vous soumettre à nos {{tosLink}}Conditions d’utilisation{{/tosLink}} et vous reconnaissez avoir lu notre {{privacyLink}}Politique de confidentialité{{/privacyLink}}. " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Se préparer à accepter des paiements" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Oui, vous pouvez compter sur moi !" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Créer un meilleur WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Un problème est survenu lors de la mise à jour de vos préférences" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configurer votre compte %(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Installer %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Vous pouvez gérer les réglages de ce portail de paiement en cliquant sur le bouton ci-dessous." -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Connecter" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Continuer" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Un problème est survenu lors de l’enregistrement de vos réglages de paiement" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "Configuration de %s réussie" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recommandé" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Partenaire local" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Terminer la configuration" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activer" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lancer quand même" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Quelques points à vérifier avant de lancer votre boutique" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Avant le lancement" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Choisissez une adresse pour votre nouveau site Web ou transférez un domaine que vous possédez déjà." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Répertorier des produits" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Commencez à vendre en ajoutant des produits ou services à votre boutique. Créez vos produits manuellement ou importez-les depuis une boutique existante." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Répertorier vos produits" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez un (ou plusieurs) de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Faites-vous payer" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Vous pouvez toujours l’annuler dans Réglages." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Félicitations, vous êtes prêt à lancer votre boutique ! Génial !" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Prêt à lancer votre boutique ?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Vous avez changé d’avis ? Vous pouvez rendre votre boutique à nouveau privée en mettant à jour vos réglages de Confidentialité." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Voir votre boutique" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Félicitations pour le lancement de votre boutique WooCommerce. Prenez un moment pour célébrer la nouvelle et la partager !" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Génial ! Vous l’avez fait !" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Lancement de votre boutique" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Copié" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Ignorez cette bannière d’information sur l’essai gratuit." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Ceci est votre boutique d’essai gratuit où vous pouvez commencer à explorer ce qui est disponible ! Pour en savoir plus sur l’essai gratuit, cliquez sur Lire la suite." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Un problème est survenu lors de l’enregistrement de la localisation de votre boutique" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "En cliquant sur « Tester les paiements », vous acceptez les {{tosLink}}conditions d’utilisation{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Optimisez vos paiements à l’aide d’une solution simple et tout-en-un. Vérifiez les détails de votre entreprise pour commencer à tester les transactions avec WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Tester les paiements" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez et testez certains de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Il est temps de tester les paiements" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Illustration de paiements" @@ -834,7 +490,6 @@ msgstr "Personnalisez votre boutique pour qu’elle fonctionne parfaitement pour #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Passer votre boutique au niveau supérieur, avec des extensions" @@ -848,7 +503,7 @@ msgstr "L’heure de la fête est venue ! Prêt à lancer votre boutique ?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lancez votre boutique" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Vous avez déjà lancé votre boutique" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutes" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Domaine" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Ajouter un domaine" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mettre à niveau maintenant" @@ -918,16 +572,16 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Mon compte :" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "contact" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Accueil" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Découvrir" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gérer" @@ -1023,15 +676,11 @@ msgstr "Remarque" msgid "Save big with WooCommerce Payments" msgstr "Faites de grosses économies avec WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Non merci" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Boutique" msgid "Stats" msgstr "Statistiques" -#: build/index.js:1 -msgid "City" -msgstr "Ville" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuer" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Informations détaillées." diff --git a/languages/wc-calypso-bridge-fr_CA.mo b/languages/wc-calypso-bridge-fr_CA.mo index baa150769b2d5d3d389e901c9eed08b35158d6d3..c7da051be5c47b056394042cfefaf2e26952808f 100644 GIT binary patch delta 5214 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 literal 38665 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 diff --git a/languages/wc-calypso-bridge-fr_CA.po b/languages/wc-calypso-bridge-fr_CA.po index 082e5e77..7b336805 100644 --- a/languages/wc-calypso-bridge-fr_CA.po +++ b/languages/wc-calypso-bridge-fr_CA.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Page d’accueil du blog" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Faire appel à un expert" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "Vous ne trouvez pas ce que vous cherchez ? Faites appel aux services de l’une de nos agences spécialisées ! Que vous recherchiez de nouvelles extensions ou souhaitiez créer une boutique de A à Z, nos experts Woo peuvent vous aider à créer la boutique de vos rêves." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "Vous souhaitez développer les fonctionnalités eCommerce de votre boutique ? Le Woo Marketplace propose des centaines d’extensions de confiance conçues spécifiquement pour votre boutique." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "Des outils d’optimisation des moteurs de recherche aux fonctionnalités multilingues, les extensions WordPress facilitent la personnalisation de votre site Web pour qu’il réponde à tous vos besoins." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Personnaliser votre site Web" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Ajoutez des fonctionnalités supplémentaires à votre site Web en un clic. Passez à un plan payant et accédez à des milliers d’extensions WordPress gratuites et payantes. Votre curiosité vous pousse à découvrir tous les possibles ?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "Faites-le à votre manière" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Découvrir les extensions" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Développer votre boutique" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Parcourir les extensions" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "Donnez vie à vos idées avec les extensions." - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Profitez de fonctionnalités optimisées et de résolutions plus rapides en partageant les données non sensibles via le {{link}}suivi de votre utilisation{{/link}} de WooCommerce. Aucune donnée personnelle n’est suivie ou enregistrée." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Créer des cartes-cadeaux numériques" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Commencez à vendre et à accepter des cartes-cadeaux numériques pour fidéliser votre clientèle, augmenter votre chiffre d’affaires et attirer de nouveaux clients sur votre boutique." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Fidéliser davantage vos clients grâce aux cartes-cadeaux" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Mettez vos produits en avant auprès de millions d’acheteurs engagés qui parcourent TikTok, Pinterest et Meta grâce à la publicité sur les réseaux sociaux." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Atteindre plus de clients sur les réseaux sociaux" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Atteignez les acheteurs actifs sur Google avec des listes de produits et des publicités que vous pouvez créer et gérer directement à partir de votre tableau de bord." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Faire la publicité de vos produits sur Google" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "Essayer AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Stimulez les ventes et fidélisez vos clients grâce à des messages marketing automatisés qui répondent à leurs données d’achat." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Automatisez votre marketing" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Découvrez nos outils de marketing intégrés pour atteindre plus de clients et stimuler vos ventes." - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Développer votre activité grâce à des centaines d’extensions" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Atteignez plus de clients et développez votre activité grâce à nos outils de marketing et de publicité intégrés. Passez à un plan payant pour profiter de nos puissants outils marketing et commencez à développer votre activité dès aujourd’hui !" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "Soyez prêt à développer votre activité" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Illustration d’Apparence" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Illustration de produits" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Tout se déroule à merveille, continuez comme ça !" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Génial ! Nous voilà à la dernière étape ! Bon travail !" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Il ne reste plus que quelques tâches à accomplir !" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Bienvenue dans votre boutique Woo Express" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "Bienvenue dans %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d sur %2$d terminés." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "Vous êtes presque prêt à vendre ! Procédez comme suit pour configurer votre boutique test." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Masquer la liste de configuration" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "Le processus de configuration de la boutique répond à mes besoins." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "La configuration de la boutique est facile à réaliser." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Nous apprécions votre avis !" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "Comment s’est passée votre expérience ?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Masquer ceci" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Afficher la liste des tâches de configuration" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Options de la liste de tâches" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "Bravo ! Prenez le temps de fêter l’événement. Lorsque vous êtes prêt à lancer votre boutique, passez simplement à une formule payante. Cette action vous donnera accès aux deux tâches suivantes de la liste des tâches." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "Woohoo ! Votre boutique test a été créée !" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "Vous êtes formidable ! Une tâche de moins sur votre liste de choses à faire ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Un problème est survenu lors de la configuration des taxes automatisées. Veuillez réessayer." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "Pendant la période d’essai gratuite, vous avez accès aux réglages des taxes de vente, mais ces dernières ne sont pas collectables. {{br/}}Pour commencer à vendre des produits, {{link}}passez à la version payante dès maintenant{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "Je ne facture pas la TVA" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Configurer les taxes manuellement" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Choisir un partenaire fiscal" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax peut automatiser le calcul des taxes de vente pour vous." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Automatiser les taxes" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Automatiser les taxes" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Consultez l’écran des réglages des taux de taxe pour configurer ces derniers" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Configurer les taux de taxe" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "Adresse physique de l’entreprise" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Localiser la boutique" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Veuillez choisir un pays/région" - -#: build/index.js:1 -msgid "Post code" -msgstr "Code postal" - -#: build/index.js:1 -msgid "Address" -msgstr "Adresse" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "Pays/région" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "En cliquant sur « Configurer », vous activez les taux de taxe, ainsi que les calculs. Vous trouverez plus d’informations {{link}}ici{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "Configurer" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Poursuivre la configuration" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "En installant Jetpack et WooCommerce Tax, vous acceptez les {{link}}Conditions d’utilisation{{/link}}." - -#: build/index.js:1 -msgid "100% free" -msgstr "100 % gratuit" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "Optimisé par {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Conformité au lien économique {{strong}}unique{{/strong}}" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Calcul des taxes de vente en temps réel" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Idéal pour les nouvelles boutiques" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Augmenter les ventes" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Passer à un plan payant pour accéder à de nouvelles fonctionnalités et commencer à vendre" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Vous utilisez actuellement une version d’essai gratuite ! Pour accéder à l’ensemble des fonctionnalités, passez à un plan payant." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Illustration de la navigation modale de bienvenue 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Illustration de la navigation modale de bienvenue 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "Configuration requise" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Gagnez et gérez des revenus récurrents et obtenez des dépôts automatiques sur votre compte bancaire désigné." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Vendez sur les marchés internationaux et acceptez plus de 135 devises avec des moyens de paiement locaux." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Permettez à vos clients d’utiliser leur moyen de paiement préféré, y compris les cartes de débit et de crédit, Apple Pay, Sofort, SEPA, iDeal et bien d’autres encore." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Moyens de paiement acceptés :" - -#: build/index.js:1 -msgid "& more." -msgstr "et plus." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "Parcourir les extensions" @@ -417,7 +99,7 @@ msgstr "Choisir votre thème" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Extensions" @@ -453,27 +135,27 @@ msgstr "Intégration" msgid "A custom navigation experience that is optimized for selling." msgstr "Une expérience de navigation personnalisée et optimisée pour la vente." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Faire avancer les choses avec WooCommerce est devenu plus rapide. Apprenez-en plus sur notre nouvelle navigation ou découvrez-la par vous-même." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Allez plus vite grâce à notre nouvelle navigation" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtenez des conseils et des tendances sur les performances de votre boutique chaque fois que vous revenez dans votre tableau de bord WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Découvrez votre nouvel accueil" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Choisissez une nouvelle adresse de site Web pour votre boutique ou transférez-en une que vous possédez déjà." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ajouter une illustration de domaine" @@ -521,53 +203,43 @@ msgstr "Les coordonnées de virement bancaire ont bien été ajoutées." msgid "Please enter an account number or IBAN" msgstr "Veuillez entrer un numéro de compte ou un numéro IBAN." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, {{link}}passez à un plan payant{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Moyens de paiement hors ligne" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Voir plus" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Testez l’un des fournisseurs de paiement alternatifs." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Autres fournisseurs de paiement" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Offrez à vos clients des choix supplémentaires en matière de moyens de paiement." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Options de paiement supplémentaires" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Pour se préparer à accepter des paiements en ligne" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Choisir un fournisseur de paiement" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Une erreur est survenue lors de la connexion à WooCommerce Payments. Réessayez ou connectez-vous plus tard dans les réglages de la boutique." @@ -584,196 +256,180 @@ msgstr "En acceptant de partager des {{link}}données d’utilisation{{/link}} n msgid "Help us build a better WooCommerce Payments experience" msgstr "Aidez-nous à améliorer l’expérience de WooCommerce Payments." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "En utilisant WooCommerce Payments, vous acceptez de vous soumettre à nos {{tosLink}}Conditions d’utilisation{{/tosLink}} et vous reconnaissez avoir lu notre {{privacyLink}}Politique de confidentialité{{/privacyLink}}. " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Se préparer à accepter des paiements" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Oui, vous pouvez compter sur moi !" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Créer un meilleur WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Un problème est survenu lors de la mise à jour de vos préférences" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configurer votre compte %(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Installer %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Vous pouvez gérer les réglages de ce portail de paiement en cliquant sur le bouton ci-dessous." -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Connexion" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Continuer" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Un problème est survenu lors de l’enregistrement de vos réglages de paiement" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "Configuration de %s réussie" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recommandée" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Partenaire local" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Terminer la configuration" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activer" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lancer quand même" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Quelques points à vérifier avant de lancer votre boutique" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Avant le lancement" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Choisissez une adresse pour votre nouveau site Web ou transférez un domaine que vous possédez déjà." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Répertorier des produits" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Commencez à vendre en ajoutant des produits ou services à votre boutique. Créez vos produits manuellement ou importez-les depuis une boutique existante." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Répertorier vos produits" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez un (ou plusieurs) de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Faites-vous payer" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Vous pouvez toujours l’annuler dans Réglages." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Félicitations, vous êtes prêt à lancer votre boutique ! Génial !" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Prêt à lancer votre boutique ?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Vous avez changé d’avis ? Vous pouvez rendre votre boutique à nouveau privée en mettant à jour vos réglages de Confidentialité." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Voir votre boutique" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Félicitations pour le lancement de votre boutique WooCommerce. Prenez un moment pour célébrer la nouvelle et la partager !" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Génial ! Vous l’avez fait !" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Lancement de votre boutique" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Copié" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Ignorez cette bannière d’information sur l’essai gratuit." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Ceci est votre boutique d’essai gratuit où vous pouvez commencer à explorer ce qui est disponible ! Pour en savoir plus sur l’essai gratuit, cliquez sur Lire la suite." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Un problème est survenu lors de l’enregistrement de la localisation de votre boutique" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "En cliquant sur « Tester les paiements », vous acceptez les {{tosLink}}conditions d’utilisation{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Optimisez vos paiements à l’aide d’une solution simple et tout-en-un. Vérifiez les détails de votre entreprise pour commencer à tester les transactions avec WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Tester les paiements" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez et testez certains de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Il est temps de tester les paiements" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Illustration de paiements" @@ -834,7 +490,6 @@ msgstr "Personnalisez votre boutique pour qu’elle fonctionne parfaitement pour #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Passer votre boutique au niveau supérieur, avec des extensions" @@ -848,7 +503,7 @@ msgstr "L’heure de la fête est venue ! Prêt à lancer votre boutique ?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lancez votre boutique" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Vous avez déjà lancé votre boutique" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutes" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Domaine" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Ajouter un domaine" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mettre à niveau maintenant" @@ -918,16 +572,16 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Mon compte" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "contact" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Accueil " @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Découvrir" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gérer" @@ -1023,15 +676,11 @@ msgstr "Remarque" msgid "Save big with WooCommerce Payments" msgstr "Faites de grosses économies avec WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Non merci" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Boutique" msgid "Stats" msgstr "Statistiques" -#: build/index.js:1 -msgid "City" -msgstr "Ville" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuer" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "En savoir plus" diff --git a/languages/wc-calypso-bridge-fr_FR.mo b/languages/wc-calypso-bridge-fr_FR.mo index ce98ae31a048cf9efaa0a671396724c08b4a8805..65d797915cbd438842809c41b5e35a782add9617 100644 GIT binary patch delta 5173 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 XspqerVEVio;H7_A^MP)@?$G}M@y_E& literal 38652 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 CK)Qqg diff --git a/languages/wc-calypso-bridge-fr_FR.po b/languages/wc-calypso-bridge-fr_FR.po index 0b8d3868..3c47c2bf 100644 --- a/languages/wc-calypso-bridge-fr_FR.po +++ b/languages/wc-calypso-bridge-fr_FR.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Page d’accueil du blog" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Faire appel à un expert" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "Vous ne trouvez pas ce que vous cherchez ? Faites appel aux services de l’une de nos agences spécialisées ! Que vous recherchiez de nouvelles extensions ou souhaitiez créer une boutique de A à Z, nos experts Woo peuvent vous aider à créer la boutique de vos rêves." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "Vous souhaitez développer les fonctionnalités eCommerce de votre boutique ? Le Woo Marketplace propose des centaines d’extensions de confiance conçues spécifiquement pour votre boutique." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "Des outils d’optimisation des moteurs de recherche aux fonctionnalités multilingues, les extensions WordPress facilitent la personnalisation de votre site Web pour qu’il réponde à tous vos besoins." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Personnaliser votre site Web" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Ajoutez des fonctionnalités supplémentaires à votre site Web en un clic. Passez à un plan payant et accédez à des milliers d’extensions WordPress gratuites et payantes. Votre curiosité vous pousse à découvrir tous les possibles ?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "Faites-le à votre manière" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Découvrir les extensions" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Développer votre boutique" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Parcourir les extensions" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "Donnez vie à vos idées avec les extensions." - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Profitez de fonctionnalités optimisées et de résolutions plus rapides en partageant les données non sensibles via le {{link}}suivi de votre utilisation{{/link}} de WooCommerce. Aucune donnée personnelle n’est suivie ou enregistrée." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Créer des cartes-cadeaux numériques" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Commencez à vendre et à accepter des cartes-cadeaux numériques pour fidéliser votre clientèle, augmenter votre chiffre d’affaires et attirer de nouveaux clients sur votre boutique." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Fidéliser davantage vos clients grâce aux cartes-cadeaux" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Mettez vos produits en avant auprès de millions d’acheteurs engagés qui parcourent TikTok, Pinterest et Meta grâce à la publicité sur les réseaux sociaux." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Atteindre plus de clients sur les réseaux sociaux" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Atteignez les acheteurs actifs sur Google avec des listes de produits et des publicités que vous pouvez créer et gérer directement à partir de votre tableau de bord." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Faire la publicité de vos produits sur Google" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "Essayer AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Stimulez les ventes et fidélisez vos clients grâce à des messages marketing automatisés qui répondent à leurs données d’achat." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Automatisez votre marketing" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Découvrez nos outils de marketing intégrés pour atteindre plus de clients et stimuler vos ventes." - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Développer votre activité grâce à des centaines d’extensions" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Atteignez plus de clients et développez votre activité grâce à nos outils de marketing et de publicité intégrés. Passez à un plan payant pour profiter de nos puissants outils marketing et commencez à développer votre activité dès aujourd’hui !" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "Soyez prêt à développer votre activité" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Illustration d’Apparence" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Illustration de produits" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Tout se déroule à merveille, continuez comme ça !" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Génial ! Nous voilà à la dernière étape ! Bon travail !" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Il ne reste plus que quelques tâches à accomplir !" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Bienvenue dans votre boutique Woo Express" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "Bienvenue dans %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d sur %2$d terminés." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "Vous êtes presque prêt à vendre ! Procédez comme suit pour configurer votre boutique test." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Masquer la liste de configuration" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "Le processus de configuration de la boutique répond à mes besoins." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "La configuration de la boutique est facile à réaliser." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Nous apprécions votre avis !" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "Comment s’est passée votre expérience ?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Masquer ceci" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Afficher la liste des tâches de configuration" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Options de la liste de tâches" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "Bravo ! Prenez le temps de fêter l’événement. Lorsque vous êtes prêt à lancer votre boutique, passez simplement à une formule payante. Cette action vous donnera accès aux deux tâches suivantes de la liste des tâches." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "Woohoo ! Votre boutique test a été créée !" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "Vous êtes formidable ! Une tâche de moins sur votre liste de choses à faire ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Un problème est survenu lors de la configuration des taxes automatisées. Veuillez réessayer." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "Pendant la période d’essai gratuite, vous avez accès aux réglages des taxes de vente, mais ces dernières ne sont pas collectables. {{br/}}Pour commencer à vendre des produits, {{link}}passez à la version payante dès maintenant{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "Je ne facture pas la TVA" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Configurer les taxes manuellement" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Choisir un partenaire fiscal" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax peut automatiser le calcul des taxes de vente pour vous." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Automatiser les taxes" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Automatiser les taxes" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Consultez l’écran des réglages des taux de taxe pour configurer ces derniers" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Configurer les taux de taxe" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "Adresse physique de l’entreprise" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Localiser la boutique" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Veuillez sélectionner un pays ou une région." - -#: build/index.js:1 -msgid "Post code" -msgstr "Code postal" - -#: build/index.js:1 -msgid "Address" -msgstr "Adresse" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "Pays/région" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "En cliquant sur « Configurer », vous activez les taux de taxe, ainsi que les calculs. Vous trouverez plus d’informations {{link}}ici{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "Configurer" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Poursuivre la configuration" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "En installant Jetpack et WooCommerce Tax, vous acceptez les {{link}}Conditions d’utilisation{{/link}}." - -#: build/index.js:1 -msgid "100% free" -msgstr "100 % gratuit" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "Optimisé par {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Conformité au lien économique {{strong}}unique{{/strong}}" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Calcul des taxes de vente en temps réel" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Idéal pour les nouvelles boutiques" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Augmenter les ventes" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Passer à un plan payant pour accéder à de nouvelles fonctionnalités et commencer à vendre" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Vous utilisez actuellement une version d’essai gratuite ! Pour accéder à l’ensemble des fonctionnalités, passez à un plan payant." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Illustration de la navigation modale de bienvenue 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Illustration de la navigation modale de bienvenue 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "Configuration requise" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Gagnez et gérez des revenus récurrents et obtenez des dépôts automatiques sur votre compte bancaire désigné." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Vendez sur les marchés internationaux et acceptez plus de 135 devises avec des moyens de paiement locaux." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Permettez à vos clients d’utiliser leur moyen de paiement préféré, y compris les cartes de débit et de crédit, Apple Pay, Sofort, SEPA, iDeal et bien d’autres encore." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Moyens de paiement acceptés :" - -#: build/index.js:1 -msgid "& more." -msgstr "et plus." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "Parcourir les extensions" @@ -417,7 +99,7 @@ msgstr "Choisir votre thème" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Extensions" @@ -453,27 +135,27 @@ msgstr "Intégration" msgid "A custom navigation experience that is optimized for selling." msgstr "Une expérience de navigation personnalisée et optimisée pour la vente." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Faire avancer les choses avec WooCommerce est devenu plus rapide. Apprenez-en plus sur notre nouvelle navigation ou découvrez-la par vous-même." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Allez plus vite grâce à notre nouvelle navigation" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Obtenez des conseils et des tendances sur les performances de votre boutique chaque fois que vous revenez dans votre tableau de bord WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Découvrez votre nouvel accueil" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Choisissez une nouvelle adresse de site Web pour votre boutique ou transférez-en une que vous possédez déjà." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Ajouter une illustration de domaine" @@ -521,53 +203,43 @@ msgstr "Les coordonnées de virement bancaire ont bien été ajoutées." msgid "Please enter an account number or IBAN" msgstr "Veuillez entrer un numéro de compte ou un numéro IBAN." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Seuls les administrateurs et les gérants de boutique peuvent passer des commandes pendant l’essai gratuit. Si vous êtes prêt à accepter les paiements des clients, {{link}}passez à un plan payant{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Moyens de paiement hors ligne" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "En savoir plus" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Testez l’un des fournisseurs de paiement alternatifs." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Autres fournisseurs de paiement" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Offrez à vos clients des choix supplémentaires en matière de moyens de paiement." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Options de paiement supplémentaires" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Pour se préparer à accepter des paiements en ligne" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Choisir un fournisseur de paiement" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Une erreur est survenue lors de la connexion à WooCommerce Payments. Réessayez ou connectez-vous plus tard dans les réglages de la boutique." @@ -584,196 +256,180 @@ msgstr "En acceptant de partager des {{link}}données d’utilisation{{/link}} n msgid "Help us build a better WooCommerce Payments experience" msgstr "Aidez-nous à améliorer l’expérience de WooCommerce Payments." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "En utilisant WooCommerce Payments, vous acceptez de vous soumettre à nos {{tosLink}}Conditions d’utilisation{{/tosLink}} et vous reconnaissez avoir lu notre {{privacyLink}}Politique de confidentialité{{/privacyLink}}. " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Se préparer à accepter des paiements" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Oui, vous pouvez compter sur moi !" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Créer un meilleur WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Un problème est survenu lors de la mise à jour de vos préférences" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configurer votre compte %(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Installer %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Vous pouvez gérer les réglages de ce portail de paiement en cliquant sur le bouton ci-dessous." -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Connecter" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Continuer" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Un problème est survenu lors de l’enregistrement de vos réglages de paiement" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "Configuration de %s réussie" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recommandée" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Partenaire local" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Terminer la configuration" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Activer" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lancer quand même" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Quelques points à vérifier avant de lancer votre boutique" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Avant le lancement" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Choisissez une adresse pour votre nouveau site Web ou transférez un domaine que vous possédez déjà." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Répertorier des produits" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Commencez à vendre en ajoutant des produits ou services à votre boutique. Créez vos produits manuellement ou importez-les depuis une boutique existante." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Répertorier vos produits" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez un (ou plusieurs) de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Faites-vous payer" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Vous pouvez toujours l’annuler dans Réglages." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Félicitations, vous êtes prêt à lancer votre boutique ! Génial !" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Envie de lancer votre boutique ?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Vous avez changé d’avis ? Vous pouvez rendre votre boutique à nouveau privée en mettant à jour vos réglages de Confidentialité." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Voir votre boutique" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Félicitations pour le lancement de votre boutique WooCommerce. Prenez un moment pour célébrer la nouvelle et la partager !" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Génial ! Vous l’avez fait !" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Lancement de votre boutique" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Copié" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Ignorez cette bannière d’information sur l’essai gratuit." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Ceci est votre boutique d’essai gratuit où vous pouvez commencer à explorer ce qui est disponible ! Pour en savoir plus sur l’essai gratuit, cliquez sur Lire la suite." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Un problème est survenu lors de l’enregistrement de la localisation de votre boutique" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "En cliquant sur « Tester les paiements », vous acceptez les {{tosLink}}conditions d’utilisation{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Optimisez vos paiements à l’aide d’une solution simple et tout-en-un. Vérifiez les détails de votre entreprise pour commencer à tester les transactions avec WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Tester les paiements" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Proposez à vos clients un moyen de paiement à la fois simple et pratique ! Configurez et testez certains de nos moyens de paiement rapides et sécurisés en ligne ou en personne." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Il est temps de tester les paiements" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Illustration de paiements" @@ -834,7 +490,6 @@ msgstr "Personnalisez votre boutique pour qu’elle fonctionne parfaitement pour #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Passer votre boutique au niveau supérieur, avec des extensions" @@ -848,7 +503,7 @@ msgstr "L’heure de la fête est venue ! Prêt à lancer votre boutique ?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lancez votre boutique" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Vous avez déjà lancé votre boutique" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutes" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Domaine" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Ajouter un domaine" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Mettre à niveau maintenant" @@ -918,16 +572,16 @@ msgstr "Pendant la période d’essai, vous ne pouvez passer que des commandes d msgid "Start selling to everyone" msgstr "Commencer à vendre à tout le monde" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Mon compte :" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "contact" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Accueil" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Découvrir" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gérer" @@ -1023,15 +676,11 @@ msgstr "Remarque" msgid "Save big with WooCommerce Payments" msgstr "Faites de grosses économies avec WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Non merci" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Boutique" msgid "Stats" msgstr "Statistiques" -#: build/index.js:1 -msgid "City" -msgstr "Ville" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuer" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Informations détaillées." diff --git a/languages/wc-calypso-bridge-he_IL.mo b/languages/wc-calypso-bridge-he_IL.mo index 60646f5c40861b304083540a2b90d5c3d5d07b25..24497b2b0cea445cd12529c172687773a907a1a3 100644 GIT binary patch delta 5213 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 U%2sW5+g9kIt9D+|KksV&KX5-8-T(jq literal 42510 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 Ln^W>1zfJx(IN&{G diff --git a/languages/wc-calypso-bridge-he_IL.po b/languages/wc-calypso-bridge-he_IL.po index 606b1019..a03d300f 100644 --- a/languages/wc-calypso-bridge-he_IL.po +++ b/languages/wc-calypso-bridge-he_IL.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "עמוד הבית של הבלוג" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "לשכור מומחה" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "לא הצלחת למצוא את מה שחיפשת? אפשר לשכור אחד מסוכנויות המומחים שלנו! החל בהרחבות חדשות וכלה בבניה של חנות שלמה, המומחים של WooCommerce יכולים לעזור לך ליצור את החנות עליה תמיד חלמת." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "רוצה להרחיב את הפונקציונליות של המסחר האלקטרוני בחנות שלך? ב-Woo Marketplace יש מאות הרחבות מהימנות שנועדו במיוחד עבור החנות שלך." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "החל מכלים ל-SEO וכלה בפונקציונליות למגוון שפות, התוספים של WordPress יעזרו לך להתאים אישית את האתר שלך כדי לבצע בו כל מה שצריך." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "התאמה אישית של האתר שלך" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "להוסיף פונקציונליות ואפשרויות לאתר שלך בלחיצת כפתור. משדרגים לתוכנית בתשלום ומקבלים גישה לאלפי תוספים של WordPress – חינמיים ובתשלום. רוצה לדעת מה אפשרי?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "לעבוד בדרך שלך" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "לגלות הרחבות" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "להרחיב את החנות שלך" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "לעיין בתוספים" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "אפשר לעשות כל דבר בעזרת תוספים" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "לקבל כלים משופרים ותיקונים מהירים יותר בעזרת שיתוף של נתונים לא רגישים באמצעות {{link}}מעקב שימוש{{/link}}, פונקציה המציגה את אופן השימוש שלך ב-WooCommerce. אין מעקב אחר נתונים אישיים או אחסון של נתונים כאלה." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "ליצור כרטיסי שי דיגיטליים" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "באפשרותך להתחיל למכור ולקבל כרטיסי שי דיגיטליים כדי להגביר את נאמנות הלקוחות, להפיק יותר הכנסות ולמשוך לקוחות חדשים לחנות שלך." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "להגביר את נאמנות הלקוחות בעזרת כרטיסי שי" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "לחשוף את המוצרים שלך למיליוני קונים פעילים שמסיירים בפלטפורמות כמו TikTok‏, Pinterest ו-Meta באמצעות פרסום ברשתות חברתיות." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "להגיע ליותר לקוחות ברשתות החברתיות השונות" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "להגיע למיליוני קונים פעילים ברחבי Google עם מודעות ופרסומות על מוצרים שבאפשרותך ליצור ולנהל היישר מלוח הבקרה שלך." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "לפרסם את המוצרים שלך ב-Google" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "לנסות את AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "לקדם מכירות ולתגבר נאמנות באמצעות הודעות שיווק אוטומטיות בתגובה לנתוני רכישות של לקוחות." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "ליצור תהליכי שיווק אוטומטיים" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "לאתר את כלי השיווק המובנים שלנו כדי להגיע ליותר לקוחות ולהגביר מכירות" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "להרחיב את העסק שלך בעזרת מאות הרחבות" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "להגיע ליותר לקוחות ולהרחיב את העסק שלך בעזרת כלי השיווק והפרסום המובנים שלנו. מומלץ לשדרג לתוכנית בתשלום כדי ליהנות מכלי השיווק העוצמתיים שלנו ולהתחיל בהרחבת העסק כבר היום!" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "להתכונן להרחבת העסק שלך" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "מראה לדוגמה" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "מוצרים לדוגמה" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "הכול נראה נהדר, כדאי להמשיך ככה!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "הידד! הגענו לשלב האחרון! כל הכבוד" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "רק עוד מספר משימות שצריך לבצע!" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "ברוך בואך אל חנות Woo Express שלך" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "ברוך בואר אל %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "הושלמו ⁦%1$d⁩ מתוך ⁦%2$d⁩." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "עוד מעט אפשר להתחיל למכור! להגדרת החנות הניסיונית שלך עליך לבצע את הפעולות הבאות." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "להסתיר רשימה הגדרות התקנה" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "תהליך הגדרת החנות עונה על צרכיי." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "קל לבצע את תהליך הגדרת החנות." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "אנו מודים לך על המשוב!" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "מה דעתך לגבי החוויה?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "להסתיר את המידע" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "להציג את רשימת משימות ההגדרה" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "אפשרויות רשימת המשימות" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "איחולינו! מומלץ להקדיש מספר דקות כדי לחגוג. ברגע שהחנות שלך תהיה מוכנה להשקה, כל שעליך לעשות הוא לשדרג לתוכנית בתשלום. פעולה זו גם תציג לפניך את שתי המשימות הבאות ברשימת המשימות." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "איזה כיף! החנות הניסיונית שלך הוגדרה והותקנה!" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "אדיר! פריט אחד ירד מרשימת המשימות שלך ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "בעיה בהגדרת מיסים אוטומטיים. נא לנסות שוב." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "בתקופת ההתנסות חינם ניתן לשנות את הגדרת מס הקנייה אך לא לגבות את המס. {{br/}}כדי להתחיל למכור מוצרים עליך {{link}}לשדרג עכשיו{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "אני לא גובה מס מכירות" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "להגדיר את המיסים באופן ידני" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "לבחור שותף לנושא מיסים" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "באפשרותך לחשב מס מכירה באופן אוטומטי באמצעות שירות WooCommerce Tax." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "חישוב מיסים אוטומטי" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "חישוב מיסים אוטומטי" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "יש לגשת אל מסך של הגדרות שיעורי המס כדי להגדיר את שיעורי המס הרצויים" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "להגדיר שיעורי מס" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "הכתובת שממנה פועל העסק שלך" - -#: build/index.js:1 -msgid "Set store location" -msgstr "לקבוע את מיקום החנות" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "נא לבחור מדינה / אזור" - -#: build/index.js:1 -msgid "Post code" -msgstr "מיקוד" - -#: build/index.js:1 -msgid "Address" -msgstr "כתובת" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "מדינה / אזור" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "לחיצה על 'להגדיר תצורה' תגרום להפעלת שיעורי מס וחישובים. מידע נוסף זמין {{link}}כאן{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "תצורה" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "המשך ההתקנה" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "התקנת WooCommerce Tax ו-Jetpack מהווה הסכמה מצדך לאמור ב{{link}}תנאי השירות{{/link}}." - -#: build/index.js:1 -msgid "100% free" -msgstr "לגמרי בחינם" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "מופעל על ידי {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "התאמה לתנאים של רשת כלכלית {{strong}}יחידה{{/strong}}" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "חישוב מס מכירות בזמן אמת" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "מומלץ לחנויות חדשות" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "להרחיב את היקף המכירות" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "לשדרג לתוכנית בתשלום כדי ליהנות מיותר אפשרויות חדשות ולהתחיל למכור" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "המינוי שלך כרגע הוא לתקופת ניסיון חינם! לקבלת גישה לכל האפשרויות, יש לשדרג לתוכנית בתשלום." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "ניווט בחלון קופץ 'ברוך בואך', דוגמה 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "ניווט בחלון קופץ 'ברוך בואך', דוגמה 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "נדרשת הגדרה" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "להרוויח הכנסה חוזרת ולנהל אותה, ולקבל הפקדות אוטומטיות לחשבון הבנק שבחרת." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "למכור לשווקים בינלאומיים ולקבל יותר מ-135 מטבעות בשיטות תשלום מקומיות." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "באפשרותך להציע ללקוחות שלך את אמצעי התשלום המועדף עליהם, כולל כרטיסי אשראי או חיוב, Apple Pay,‏ Sofort,‏ SEPA,‏ iDeal ואפשרויות רבות נוספות." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "בין אמצעי התשלום שאנחנו מקבלים:" - -#: build/index.js:1 -msgid "& more." -msgstr "ועוד." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "לעיין בהרחבות" @@ -417,7 +99,7 @@ msgstr "לבחור את ערכת העיצוב שלך" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "תוספים" @@ -453,27 +135,27 @@ msgstr "הצטרפות" msgid "A custom navigation experience that is optimized for selling." msgstr "חוויית ניווט בהתאמה אישית, כולל מיטוב למכירות." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "עכשיו אפשר לבצע פעולות עם WooCommerce מהר יותר. אפשר לעיין במידע נוסף לגבי הניווט החדש שלנו – או להמשיך ולבדוק אותו בעצמך." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "לנוע מהר יותר עם הניווט החדש שלנו" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "לקבל טיפים ותובנות לגבי ביצועי החנות שלך בכל ביקור בלוח הבקרה של WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "היכרות עם דף הבית החדש שלך" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "יש לבחור כתובת חדשה של אתר אינטרנט לחנות שלך או להעביר כתובת שכבר בבעלותך." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "הוספת אילוסטרציה של דומיין" @@ -521,53 +203,43 @@ msgstr "הפרטים לביצוע העברה בנקאית ישירה נוספו msgid "Please enter an account number or IBAN" msgstr "יש להזין מספר חשבון או מספר IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "מנהלי המערכות ומנהלי החנויות שלנו יכולים לבצע הזמנות במהלך תקופת הניסיון. אם הכול מוכן לקבל תשלומים מלקוחות, אפשר {{link}}לשדרג לתוכנית בתשלום{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "אמצעי תשלום לא מקוונים" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "עוד" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "רוצה לנסות את אחד מספקי התשלום החלופיים?" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "ספקי תשלום אחרים" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "רוצה לתת ללקוחות אפשרויות נוספות לביצוע התשלום?" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "אפשרויות תשלום נוספות" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "להתכונן לקבל תשלומים מקוונים" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "לבחור ספק תשלום" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "אירעה שגיאה במהלך ההתחברות אל WooCommerce Payments. ניתן לנסות שוב או להתחבר מאוחר יותר בהגדרות החנות." @@ -584,196 +256,180 @@ msgstr "על ידי הסכמה לשיתוף של {{link}}נתוני שימוש{{ msgid "Help us build a better WooCommerce Payments experience" msgstr "יש לך הזדמנות לעזור לנו ליצור חוויית שימוש טובה יותר ב-WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "השימוש ב-WooCommerce Payments מהווה את הסכמתך לפעול בכפוף {{tosLink}}לתנאי השימוש{{/tosLink}}, ומאשר שקראת את {{privacyLink}}מדיניות הפרטיות{{/privacyLink}} שלנו " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "להתכונן לקבל תשלומים" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "כן, אני רוצה להצטרף!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "לבנות אתר WooCommerce טוב יותר" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "אירעה בעיה בעדכון ההעדפות שלך" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "הגדרת החשבון שלך ב-%(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "התקן %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "ניתן לנהל את ההגדרות של אמצעי תשלום זה על ידי לחיצה על הלחצן שלהלן" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "להתחבר" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "המשך" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "אירעה בעיה בשמירת הגדרות התשלומים" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s הוגדר בהצלחה" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "מומלץ" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "שותף מקומי" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "להשלים את ההגדרה" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "אפשר" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "להשיק בכל זאת" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "מספר דברים שעליך לבדוק לפני השקת החנות שלך" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "לפני ההשקה" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "עליך לבחור כתובת לאתר האינטרנט החדש או להעביר דומיין שכבר בבעלותך." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "לציין מוצרים" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "להתחיל למכור על ידי הוספת מוצרים ושירותים לחנות שלך. ניתן ליצור את המוצרים באופן ידני או לייבא אותם מחנות קיימת." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "לציין את המוצרים שלך" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "כדאי לאפשר ללקוחות שלך דרך נוספת לשלם בבטחה ובנוחות! להגדיר אחד (או יותר!) מאמצעי התשלום המהירים והמאובטחים שלנו באינטרנט או באופן אישי." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "לקבל תשלום" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "אפשר תמיד לחזור למצב הקודם במקטע הגדרות." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "זה הזמן לחגוג – הכול מוכן להשקת החנות שלך! WooCommerce!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "רוצה להשיק חנות משלך?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "שינית את דעתך? אפשר להגדיר שוב את החנות שלך כפרטית על ידי עדכון של הגדרות הפרטיות שלך." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "הצגת החנות שלך" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "ברכותינו על השקת החנות שלך של WooCommerce. כדאי לעצור לרגע כדי לחגוג ולשתף את החדשות!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "WooCommerce! הצלחת!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "השקת החנות שלך" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "הועתק" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "לבטל את הבאנר עם המידע לגבי תקופת הניסיון." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "זוהי חנות הבדיקה שלך לתקופת הניסיון שבה באפשרותך להתחיל לגלות אילו אפשרויות זמינות! כדי לגלות עוד על תקופת הניסיון, ניתן ללחוץ על 'מידע נוסף'." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "אירעה בעיה בשמירת המיקום של החנות שלך" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "בלחיצה על 'בדיקת תשלומים', אנחנו מקבלים את הסכמתך {{tosLink}}לתנאי השירות שלנו{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "לחזק את התשלומים שלך עם אפשרות פשוטה ומקיפה. עליך לאמת את פרטי העסק כדי להתחיל לבדוק עסקאות עם WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "בדיקת תשלומים" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "כדאי לאפשר ללקוחות שלך דרך נוספת לשלם בבטחה ובנוחות! להגדיר ולבדוק חלק מאמצעי התשלום המהירים והמאובטחים שלנו באינטרנט או באופן אישי." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "זה הזמן לבדוק את התשלומים" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "אילוסטרציית תשלום" @@ -834,7 +490,6 @@ msgstr "כדאי להתאים אישית את החנות לעבודה מושלמ #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "לשדרג את החנות שלך לרמה הבאה באמצעות הרחבות" @@ -848,7 +503,7 @@ msgstr "הגיע הזמן לחגוג! רוצה להשיק חנות משלך?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "להשיק את החנות שלך" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "כבר השקת את החנות שלך" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "שתי דקות" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "דומיין" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "הוספת דומיין" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "זה הזמן לשדרג" @@ -918,16 +572,16 @@ msgstr "במהלך תקופת הניסיון אפשר לבצע הזמנות ני msgid "Start selling to everyone" msgstr "להתחיל למכור לכולם" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "החשבון שלי" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "טופס יצירת קשר" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "דף הבית" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "היכרות" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "לנהל" @@ -1023,15 +676,11 @@ msgstr "משוב" msgid "Save big with WooCommerce Payments" msgstr "לחסוך בגדול עם WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "לא תודה" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "חנות" msgid "Stats" msgstr "נתונים סטטיסטיים" -#: build/index.js:1 -msgid "City" -msgstr "עיר" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "המשך" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "מידע נוסף." diff --git a/languages/wc-calypso-bridge-id_ID.mo b/languages/wc-calypso-bridge-id_ID.mo index 04c18ae29504d9b787a34fbb8511bf5488d9dff5..77ffd5a472c5be07e4be85d1de8b1834678da78c 100644 GIT binary patch delta 5213 zcmYk<3shBA9>?*05dqOuKv4nlV)#G=g?Ol8fnuPk-~%KT^$HibfIwWx5cOsurj?P~ z6ihR1GR>(;Z}#$$SVH$%N=)l?NwLVY*{gmoYKMcoW95M$rAJ=0w%0#YU zEQau9nMfKAz)TFrBJ7DJ=JQ${N52U}lt-z9zJ^k78$U)l@wXU<-NLB?CSU=6hOc4@ zSBb|iT#ADRQZ-zOazpQ63w~+FD;ShY974H~6By6+)j1joC|6B{M6_cumf&iXl6_(P z7fR`WKvqlriWE)xMJhD}!_ij>q&O;5`YdSy9-+UObsmFJgO&2giKf$#FBYIoq!Q)C z?YISZntoceRnmzl+anj{f`usOxd-JAJ;sO4cn8Yf+KsXlZ(uE+j;8*ymbY@2G(3sx z@Hc!ATkO{OO)*OO)6Yh!#8lIth3qp`h<(t7awARHjvG<-z=)w%$&+ys{cOAi*A4Yp zGds+H+|hZIUHVVc{|RNSy4`G@xIfAXN1=Q#6~|#V$_ZDY?3n{7=lciB1iv%=-;iRe zV0Nrjc%+9$DvdG7XUd843+qjPJIV!*qulvvlsi0Y#=k{b>mN~e{qJVH|1hQY)3@VW z*lGH0!?`H^j1ksSdz>_6CK}}g+feT8Aj(AEM7iKOWFxEZ%;$cbMbzyU*Q`39(giV-Dst{;|7#F zZ8QC6Fq!^-l!<+YvgTKiCsO$*Sfw6ozKL*^oyypEJXlUm8FYD zxv_D^Oq@tR7v(&yLb<~j zcI0p$zhF%BoAJa)@aO4w>_M?3xJP}cl3 zUceu45q5H$=P~{^>%#urWdr@uI1_i_AoTo~#wHrUnbzO!9Vip}9%XM_MOl&_S-kad z97?|gWr;Rn1s+0~c=ROmW<%+ZL0N+FC`*=wvP4DJ=N?r@BZ`3)=x#I8U3*frJ_GzFZ>(9@-$R+$QIrdu zz+gO$veqA)&woVubNfG(H4o1>6UPAhdHK|T3ynesq!L{yGn2PNUkFB7ib#|T&qcXV zov|6y>9-n>VFdjv*at&qTT2y#a>21U2GjB1Sni<_N@EUh6{08M0 z2hO!loQrMri%>T0cPJANDzMf(6s1CTjKyKt3#Xy%oq0x2nfXE^%4XY!d+;4h#kxXk zjrZVa`e(2fuOSbLs-36QU+@q%qqE4W)MYHE|2y6y<9D%PdAvJtIQ>87`)qXU*4P+bnJK03!`o1-jX1@F|$3gTXJIP;3CXuz@NZuu~ zgU66(h?B@MlML{+tRHPRv`^Fi6B%j7N{n;4zVC?V=X<6tkJ)47Au@vWBaLJg$s=;y zOg=$&y2+yg&-0}*2wzrrg0y6id;Wd(-=$MC#TGyEY&+C znuMCMT}B5EHf>?j4ej}~$KTM;q5U@5LKf%q<1KRI@id)#$pTVIUMI&%I%y@<pflq=o^X%qdthsTYvb#E-^*LB2%C-o;27V2j*BE6R~4%l?Y?I-mknP2Mr zv*PrHtd)BAq$}QwldpEuU*_bi|Th1FLGQ zomFm^-sDIO$gY)Q>ARN>(m5qMD66W$RaWJw(R)e@`_?%cXqt*KAN^rjvQ8|o_C{9( z`{}1Dr-V&%);nrS9cqrF$zgXp8yYJcbyL+5Z$;3LU>;*Z%=Z-smU* literal 35591 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

I+48 zjQtDq1O6`tTIX=}1i@`t;87pp6^8^PQXyq@w5qo%-_xm)L%fq{^Lo{sB`fZf-ptV8 zcgyfMTH57t@aUo3s^iazH=L%p5#F<9cDk!PYfEIh$}YU*Pu)J( zkuGkqU?CzMPbWz&*s;Qhht0LFs#Ln z-H>07sW%A&J=ErBzDZc%d2LiKr^^$jRz>M4&f8|`K5nnSqKD0|k5Ll*B7?X5xNmd> zq&NaIR8RcUbmfpQS0vpqA7n0JNqn&74r_?bE45Lpj`cF6QVH6a$_|EO4{RiwX*V=h zaW{B{xFT#QtOOhZdnj>Xr zb;vi&1*&Ua{!E!l7_x~Uy(;%HhDb~kRi4^HO%Mz&xchUg&9tGpa2{Yd2x$S7wkKAd zc`6&$I9o)@^S{Gq7)ew6&}FPjbv>5ugEpF8*El2ETCu){Z7M77TazE+TB@|w@nz-0 z!_Fx4zm|JKktG6A)R8#7*fHBX5i&DwaLl~;M$4+wNn;lFXvcbQ)LtixhnQ6Nrx`_# XFT#OdHZ;XEzB)mJx+SY0?Learn more about our new navigation — or go ahead and explore on your own." msgstr "Menyelesaikan pekerjaan dengan WooCommerce jadi lebih cepat. Pelajari selengkapnya tentang navigasi baru kami—atau jelajahi secara mandiri." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Gerak lebih cepat dengan navigasi baru kami" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Dapatkan tips dan wawasan mengenai performa toko Anda setiap kali Anda masuk ke dasbor WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Selamat datang di Beranda baru Anda" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Tentukan alamat situs baru untuk toko Anda atau alihkan yang sudah Anda punya." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Tambahkan ilustrasi domain" @@ -521,53 +203,43 @@ msgstr "Detail transfer bank langsung berhasil ditambahkan" msgid "Please enter an account number or IBAN" msgstr "Harap masukkan nomor akun atau IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Hanya Administrator dan Pengelola Toko yang bisa membuat pesanan selama percobaan gratis. Jika Anda siap menerima pembayaran dari pelanggan, {{link}}lakukan upgrade ke paket berbayar{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Metode pembayaran offline" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Lihat Selengkapnya" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Coba salah satu penyedia pembayaran alternatif." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Penyedia pembayaran lainnya" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Berikan pilihan tambahan bagi pelanggan terkait metode pembayaran." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Pilihan pembayaran tambahan" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Siap menerima pembayaran secara online" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Pilih penyedia pembayaran" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Ada error saat menyambunkan ke WooCommerce Payments. Silakan coba lagi atau hubungkan nanti di pengaturan toko." @@ -584,196 +256,180 @@ msgstr "Dengan setuju untuk membagikan {{link}}data penggunaan{{/link}} yang tid msgid "Help us build a better WooCommerce Payments experience" msgstr "Bantu kami membangun pengalaman WooCommerce Payments yang lebih baik" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Dengan menggunakan WooCommerce Payments, Anda sepakat untuk terikat pada {{tosLink}}Ketentuan Layanan{{/tosLink}} kami dan mengonfirmasi bahwa Anda sudah membaca {{privacyLink}}Kebijakan Privasi{{/privacyLink}} kami " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Bersiaplah menerima pembayaran" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Ya, saya ikut!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Buat WooCommerce yang lebih baik" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Ada kendala saat memperbarui preferensi Anda" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Konfigurasikan %(title)s akun Anda" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Instal %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Anda dapat mengelola pengaturan gateway pembayaran ini dengan mengeklik tombol di bawah" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Hubungkan" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Lanjutkan" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ada masalah saat menyimpan pengaturan pembayaran Anda" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s berhasil dikonfigurasi" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Disarankan" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Mitra Lokal" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Selesaikan Penyiapan" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Aktifkan" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Tetap luncurkan" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Beberapa hal yang perlu diperiksa sebelum meluncurkan toko Anda" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Sebelum Anda meluncurkan" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Tentukan alamat untuk situs baru Anda atau alihkan domain yang sudah Anda punya." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Buat daftar produk" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Mulai berjualan dengan menambahkan produk atau layanan ke toko Anda. Buat produk-produk Anda secara manual, atau impor dari toko yang sudah ada." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Buat daftar produk Anda" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Hadirkan metode pembayaran yang praktis dan mudah untuk pelanggan! Siapkan satu (atau lebih!) metode pembayaran langsung atau online yang cepat dan aman." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Terima pembayaran" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Anda selalu bisa mengembalikan perubahan ini di Pengaturan." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Sudah tiba waktunya – toko Anda siap diluncurkan! Yey!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Siap meluncurkan toko Anda?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Berubah pikiran? Anda bisa mengatur agar toko kembali berstatus privat dengan memperbarui pengaturan Privasi." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Lihat toko Anda" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Selamat! Anda berhasil meluncurkan toko WooCommerce. Luangkan waktu untuk merayakan dan memberitakannya!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Yey! Anda berhasil!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Meluncurkan toko Anda" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Disalin" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Tutup banner informasi percobaan gratis ini." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Ini adalah toko percobaan gratis. Anda bisa mulai menjelajahi semua fitur yang tersedia! Untuk mempelajari selengkapnya tentang percobaan gratis, klik \"Pelajari selengkapnya\"." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Ada masalah saat menyimpan lokasi toko Anda" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Dengan mengeklik \"Uji pembayaran,\" Anda setuju dengan {{tosLink}}Ketentuan Layanan{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Perkuat sistem pembayaran Anda dengan pilihan lengkap dan mudah. Periksa detail bisnis Anda untuk mulai menguji transaksi dengan WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Uji pembayaran" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Hadirkan metode pembayaran yang praktis dan mudah untuk pelanggan! Siapkan dan uji beberapa metode pembayaran langsung atau online yang cepat dan aman." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Kini saatnya menguji pembayaran" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ilustrasi pembayaran" @@ -834,7 +490,6 @@ msgstr "Sesuaikan toko Anda agar optimal untuk bisnis dengan Ekstensi WooCommerc #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Tingkatkan toko Anda dengan ekstensi" @@ -848,7 +503,7 @@ msgstr "Saatnya merayakan! Siap meluncurkan toko Anda?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Luncurkan toko Anda" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Anda sudah meluncurkan toko" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 menit" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Domain" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Tambah domain" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Upgrade sekarang" @@ -918,16 +572,16 @@ msgstr "Selama periode percobaan, Anda hanya bisa membuat pesanan uji coba! Untu msgid "Start selling to everyone" msgstr "Mulai berjualan ke semua orang" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Akun Saya" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "kontak" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Beranda" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Temukan" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Atur" @@ -1023,15 +676,11 @@ msgstr "Umpan Balik" msgid "Save big with WooCommerce Payments" msgstr "Hemat besar-besaran dengan WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Tidak, terima kasih" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Toko" msgid "Stats" msgstr "Statistik" -#: build/index.js:1 -msgid "City" -msgstr "Kota" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Lanjutkan" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Pelajari lebih lanjut." diff --git a/languages/wc-calypso-bridge-it_IT.mo b/languages/wc-calypso-bridge-it_IT.mo index e7c565d456a2a037bdceea0fc117db053ecc6b98..bd2217ff44a9d05b20f62b16ca56b152549846df 100644 GIT binary patch delta 5225 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 literal 37586 zcmdU&3792US@$atLKd=;gg{7AJ;|gKGu^Y0Kr&f|*^&&-OosGK77&u^zSZ58x%bx1 zU8XY`6A}rV0l_b*Y)0Hz1O<^DJ_W|@69qy1K2bqHC5k92AR@T@{_lHE-MZa9$prnL zNBc?5|5n|qQ|G+r-Oqb&K7Y!QKbG)!?h#4yRPf?slH^5v-hPU%CdsX5B+0LU8Tdr- zv?nLYQ@{%YZUG<9`7Pkl;2cO3Nhjc);FX-;2krtt2CfC4NF!t5R`3bn9C!lQ2i4vS z!}a??9!XvUUJt$t{5bfyGyS%dFFp9A&Y&w--T*TVT@&-Ux5 zfogXgRDYfhUI;!Ld?$DSY=EoINs>L_kAlww9|GSGZcUTqBJkh9cZ1)@Af~}T1Gj^l zRydtr37*RNTfzIlUj_C3=5w81uL9N2p9GHt-vO%KcY_n)7r;sIg!6oSSArVPHDC%p z7n}iq5d01B3!v!wrj?Gr1d0#d3u?T-1|9`|0z3))Ls0YiWl-%V=O+n6Oil$w&x=9z z|0#>6|}rJV`zb_QBQQ+6(+W8K`z{1NGe9;12KsP~-U`sD7LXv5x}J27BO2 z@b%zp!5;@N`MxB1KKQ$!?z;%0@My9Q6uq7cYW`c`@!%bx`u$??Xz)#-`1l>*3&0P9 z?**?|<=4Lssvqif@zXKxDCXAZDC$IJMF;L&H2c-fwfNJM@ zQ1qP!Ujr_HkS;lCozrDKcrxc(!A;ECVvj9UngJY?VJH>+-pGfYXhkFUk{!E&V}#q0Y%qWhVS1F zp3nJ5!4&)}Q2jqGmM zlM#mV!0W+rZ~?pz{3%fVJ#Vwi?;emxlKVil_nY8e@EhPW!CSW^$t%F02A>PAM%d2< z?*}{JJ3z^OdNp?T2;>D6KfL7{r_(1vwfkq_IpFcv`tuW@=I`0yGr{M98TcS5`X<|) z&rSj#&*=m>4qg)QdEoJ!zX%)y9{@G3_kbsXUk26ww?NV7vCne)o(*bVp9Ve|yc*Q| zZUse$4v5Gk?*dN;zXDze9`XH20&6E1ftrsT6kjZWYr$85uLge&P2kbsbilpfah&(V`8^<0k-Q9Sfu8~;FB`7Mwu1-2Gr>238sEpj6Tm+Lp9nq# zt^~gWiXX1id@O@iKYtWF2K;4E?R^MTKfVa6 z|7YFc^L9QcI&2Jh6ZlllOYm6m<)Fs*6XE=4L0B;PB~X0uO;GnAb)%2x+<=#X`u;jl z-`@&81H23T6!;#n1YdHK`#awP>00ufoAGhLcY+f-e-2{7b4%GQSfoFsN9P;z%SsPA74-o`vX z2x>l$nNE_=f-Ar)!S8~4&-xi}XEUgA-2~2od%?@VKLADd;~U=o+2GxrpAQ}ce;#~0 zSmdq`PDe=8k2}B%zc!MB2%|BryjgC7sye->0f9>Yr|_s4;+0?!A(2EGpzpT2qC z`}qM-{rm)&f?otB?~f_G{Z-%r&YuBl{(c2~5WMWRB-sM~5vcRC_PYK5FsO0f+;l#C z0DLCre+-@ro{7*M4Q>GS-fO`l!RLbKfVYB=2k!yT178}x|3y%Adso1NpyuT>px*yg zP<(TL+vVZIpyu5p;F;j(!u4;14{?5EAKnMQ3hMl; z1Ggui+2{KCyP)K3?SjkU94I+xgX-t~;4$E%cQO|4=yp47i%}Z-Se_l`nAm7T^V(KL|b@{4MZg@ZZ3n0#CZf z0{FlY@WM-pu{r-BjcD8tfts&xgOlJzKkWSS9Pm`m?*&n1$&Z7uQu43h zlfl9LPM=qT$8i33a3lEMfd34h$@zLZB|fVKksCM5E9tZv&DE|5^C^~)vRKJdY zg}>(<@I=lp14WN*p!njopyuP#pycJR!A;;fFsIs|2KD|0P~&?5d>i;1;H}{8uk`0W z4X)?>=vNU-fSbV-`~wh{OTGcN!S0Vb9lr=_KF0r-zyCf^eDrz{@>*_S9{d(Z{QDFi zU_*=Fb?r?YKgq#VReyiYrwNWG$Bi6Mp|O>q{yyYj|DM2gSS7iQ<2fAa`yCvA%(3`S z{9J^KPvW^}@OdN0ZjOHq*Z&N>f#ZL3e2k;Pp}%__s(-ie=_uOJ-*0k!mqT=TkmD?_ zUju%XV<$((@oOAU;`n)v-{9EC@p=yZUC;5`9Mc?c<L1z}1AdI-mpGLFcq+%c z`FtjLB=`hS^QyUze@uOH1lPsq^*_m#{@%gy2OK5G#T-X*Jf8y=P0r!De+IwI@mY=o z9A|LtTJR!{k8}JfhyGw4`#Xhy-^uYO9Dl^|YL3VA46I@?B9I)*x&9;@DF^Ife=iF7 zC9uyS-rW(d30}kT2967L!r!kr*uT%>-*JvF*qQ%xEFk?d$MIB-Sq}aEv_tay;NOPN z;?r9=Ucj-58OMnn(mi`PR&eO=|8gvF{EJS)-_-$kfo}<)&jtU1 z`5ebDbNnO6I*$1FT0T53ocsm&mGJo_ z@X54!7Wn@-Qa=Ay`0iG4!0}v;$8!Dg;QKlBcRJ_q0w1z7&$H^|UE%zb0at@#+`9%m zgJUXO{~&lB$5S{?<@h%a{k_z|{Iy>A{7>MW91n0@6|P121Rs8nM z{2<5obKJ!7ZI0tOPNqMf2KDzh4iKoJ z82`S*hgWiZgX70_@z`UIIc8%&?a$|Ft8C@%e!9OLq**t&OJ%#cKP}sNx-eg+Gg&+B z<+*O?roDdI%_q~{W!lR2)~}`6zN~0w(@k0^(|ljv-A@Cn(oQqadinY7>0amZE3$OH zo6lZ3zOpx-7L6;%r?YlD@7^*!==aO^_*H|>TsLc216kV1iUv<-?JHJiS54C2WX10J zqCMAB`;9Vf=Xdm1BrDgR*GS7jKP_j|mFxICQ?__zKc7ri_Bd(J7ITAc-bj0cnVG!T zn;kTp`;+q-G{Z>Nrmdnq=;z7WHEUL;v)w#T)`d&GWMeurV7RTco$V{;vVKvv)BKK3 z-YxR>jOdj0)1sG_oqo|O?&KA-CG^RgO*%Qr)3bTj=hcj1FjutI>rS`aS1`W89ckX4 z&uB%I@7aTcUf!j#*>p-2hWP1?Ww)`bOP?nhlQ+1)TO$c(=JT1o>2%Ip^R$@_+B5p9 zHcQDyM%?Msu}-$%rnr^&=gUSfE!s29K_g$UJIVob-_Bb3@MO@M&b!IRMkC#sFBoPJ zypBCtJ%sLJK?@b$dAIYg*bz0k`*sB*y+Mr$BK7f0xW|lS_uS}*>^W_4R znDrON>zW7{ZeM{+I1TcC+Rd}ZehsA8&$|7{%ITNxc_7VVk3$2@;%vDpEn3-J-dklY zH1gg|w?G)mw$EMR^ImbE1cmR^ZE-b-lIRz`phbpVYp2(gSV2CW2cj6U5V8q)*K+kVz}Me9Xaofr~T1Wn~_%5-J9!8 z@wR?3lWf|yIbEGjEfll;WRs@MnIWDs0h5roVb!9A7|>ypcXfEh=BV*ks3YTaJ#S-_Y%tj!sq~I_U?ywM z4A45puIUabQSo#&HndV+jcUItj~jDc>`WBmRHO388a@05}NCDi+$P5ey7PUKS_6$=;{4XWaQg4*^FCI z_R|@jM`|&HFf$h_ZzAn?#iXe1N!<&(Aw5#QQoMlyWfaSDuZEA%ZAh;zxFVN^sn7_` zlEX%G81o|Ujipz2W$KZ?p?rzfau_B|Brzq37ursbLsCQ&XQ1Ch!r?%;(->ZZ4;`22 z`;)wr>)jN^m$lH2n=$@#7-qYO3)0w7vG`(TZ={i3Gb_dP3_1v$hGh?5kzEz2DK{yq zNqa?EqCPSkQe_-n^_r@&$3yqJP&8}zW}&l4#8+w7baPNHh{*GyvFJ%iqVZ(9!*5Wg zh(x!KKUcdrkB8$-F>NZYz}vAGPxHRUc+cj@xM()do2#S^+U{8vHj(s)_oq%T(-kvi zv+T;`M2plc=deWbH3Hc?vPr`}W7-#wTC*HUf+4KN9^ITn5`gaEC^m(_Dh7jXHsS7$a;UE&W+q#8I0;~<^`c&{_bE+hE3xhntM0AJ$SvmCVWaY zJ*NC>*K7bQFX$KjW_}@B(VaovApa~XM_IK+?qyw{7zYs$C>qFOEP>q2&59Cjz!>C`-R#TDAi}ZIycs z^*JB}I;d+&ZF+861X1ln9z2*^=X~OF_BAgKelH+6GQO8rK-3TQF6M0?P&r z6rE*6SmCAaVp5x~Q{V}?7dFstK9kFLif)5lHZCXrxopKl*N>;bDK?^$>2* zotYf&94uE`UYESHwlmvaQ5VXBC#8c`O>7KB-8 zOBb6`G$s$$ist3t=gC%OoGd#cg&$o%0-3D8D&3ps9dXd0GnSZE2(FhYLBHZ5R!wEB z>?K!wlA+;ouBk?;fMBjC`95z<lL3VWkWz1HR|Y>bA->MhRnV<-V873 z7adm|#9+nTJenU@$0b&Ma`DG7N+HSpu%xC1ohIqG4O$&E6b{3XNvmm8&W_Rc=BG;x zx=)HV9hk@52@k?C0|-k#1JyaLM1ZDgcd>VOxp!5%ODQyz7L2V~ z-9i4SmOwLh>XkDxQ&~u{@U(To;s)cF9?YZst`Y+ES-TA{A)P}pIj>A&nXcMSRs~HD zNi4>2+bb&|Kf0D2{n9B0LhYhY$j;&!WR}R{u`vQ~3BKK7YOhDWJ4S&TrG3+r zQc^bwo&lvP1J_3WN<;SaKidzH{Q_PfdX8QApXQze?CEY^qfcJ$+b)m z{}7>(y}`o&6LCEN2kvQBhPw5K^%YLw^hVUWd) zB7=w17y`Waxi*S7OM9JsrkKSIskrCi9<&*#Jru+6`ZK1)SXf{N$rbxb4UgcaNi%PU z8{)gvNzQCI6|-(HNmn9Po?h7=@>+Br(U9f~iRauh0i=6JT@1;>kUSfRdUMNP)q*18 zWh{6-LhE7(AjVLA;FARcMe-19*WyK+kjZ3+B?6*XGM{0?+98CDX==O0I^=6uutHcj zoSakx@)ChNiq?RPoUKM_2(0dqNoCOHYqGSa$wEyJr;~?sCN-F*Rh8#tt=qeZw)`G@ zz3i8%n;n*)cJIihbE$PpcI;0#h71WG?XjIKn=Mf^JFC^g1kZ=Cw!OEPTsN!SnvXe# z=~BT3OJA&r=3OmO4viMW(h8mUx{*)AvS!}6hmT4SM4Np zt-Cg|HnT->s2;?7*>C1%QvEOk7o;!RwB)+B`6;}RkId@E2F^BoNEU)@o3%1!>ykb@ zT#{$%u|$X&YBBOKGMY@c8Shz4eJICmNw^WC;T0=;D;{o9_`g$Mt2OOM8@c~Cp!edi z5*e$lzgG@F>?7XL3h#o)_kD6BB^;4~qOX`Pr zwDwQLROj#_LWuUerAxl9%NphI3%TK(x}uZ6;$gGGC(|gC`qI*`Bg^5ttn2}2UI7=P z65d#;vu#pcE! z6el+`VXGas=sKC+K*DNvziXhF*@M8g@+_U|F}p0Yl#XSPV)n`!ug3^sz@)LQFK8}^ zK_P~EN#FcD@>DSB6%!@9lqn+u18p^YbglN;12_pLQ#v5TYCbw?WL$Jh08~Z^id6a0 z$pjaK#FM(Mv``G6vY9Tc@L@^W+X{Bo98rer`Yj_hSuI~#+>O2p>1){77!0~7P;`Z5 z+PoIx`Rgreja*L4{`L@$wb0;M=;z`aQPfLg*5TNf$+$_k*CIToQDqZ{s&rtILw;MN z>}aM~+o~nS>~Rk%og360af1!CVw!&0AgaW7u9+z z-}{mUSxG*-Cl}D-l6?hL6NM^9qIF%S^oJz_67h1DH1pQTAs%K4jWneSnxc^#ebyG| z;Vg~yf;EzcODroPi$s&(qrKLSN(#mc_liH%fh_4{tsniF3QZ6{93Q97@Dub3p z8Dp;MurA}Is!1cT!~;n5UVRZ7G4{D54}dR zt|xVa8n;U#nkqEpznBrxRW5e(+Xt2;@>AI$4=JaVg2Jn}2kRF}w)k?1`}&NOrLy&FwPPkE@CBXboZMU0M>7FKRc4cuU$bK3m#O(Cbt6 ztf_fiK80eCr7J`}8;1xASFzA69cU^hBw1asnLty!whkBkW968b+o1r{_mRG!-Ibl8 zAAwe~fe<>B4~;&XhD9xFuDU-?p;v%;Bnaud?3-bjg$X;G4%#th~E&1J~RjA$}MyYpv(i$S~D%pvnvHXW7 zm@tgV!-DN#x4GWz_4-ZBpH{UH zRmpj4zh#)=ZSGUfhNDe#cTsg=wQLsFS6etwglwARZWqQOSd|6pkr0|pg99Y8V7RSZ z$O8uDvUz5|S5+v|5O)}5E#QcqP?iX1wOg_X&>|1CuevSvi}8xHjQ;fa&=2^?D;?y6 zTy%RVLqo+3*Og35RYR%OrYzUOX!(W*f2t=P>0TriWYGe%hQvHAXJ3}SRGt7vTMDGK}|pVaeaNU`)ad7Ay8l zrFc46<58&&3|cXZEkjiml%}~n(cFh8hc6(gx7yAX!=&^I4X4(dc@l^nxoa+rd}C!n zEqT!LEG(k6MSoQ_(@T>W9Q>ji?+D5e7c#Uhak3mqEQ^^|n$%q%oEUq*kDAxXW+1oj z9tAt>L9!}YJRVt;q2Vbvyjp^{iZ!@jOYty>nT^h%%jz`7kPJ1c@ZBt3P%YENSq5dy zhq)hCGgw41JL>9H(l(6-<1yBZ@+PK%m?Z7BN{VkiiqUHNFwHtN2f>L(V`}(vs|RQ^ zPrBCE&}x3F3VSBVtT0o`$9J``HWADHNYV!a3>nueM=YkaVr;WUVc3?d_snUA)~u}# zOO0%exouNnj5s)rrryOjO7LvfVx%ZkksfUh*`%G6nwqOGSGeO|t+m;d!lg^w5Q9k( zQs#j7vShY>86nC~vK#L+mYpKSc5cy`TLIRq^RC<~2pqK*8qH(d$z;#<+r36yLvq68 zU6&n%itnu+n1Xr?3u#LxSDfQFM}K9{aK$)@pON%hn6F6>0fI^2$jYHhZ&;8{_Mkgx zo_{s3s&L?0Tp#n{^xmZo{Bpi`RZ>$|Y)Y(6CO4>F)^v+Cn%s!}=pYNMY9WZObi(56 z7+*FqVR=N{o(67aZDFb&nWt+H^S*V}eGG18uYP9lr_(SXeZoG5PLdx_Z`8V>d@pTe zAYI49qDV7Cw~$fojHTDerl+@+(+N$CS>a!U3g@EFNNN?kwa@ThbAN{drA^&}D$Dw9 zDNe9kxBC6=9gW^Mm>$+=k9@P6Rg?O|oSVju1}@A)Rm4z>g}RHs%? zJ$%zH?4VY0O)jeYlbcn#?i(P;;}-3)`jo%`VlBl-P<0QIW;H zNQbCqF#?SvxzWT&>t5GG3*BpDl=dg{{eGvne)Z}FC}|2*)e@_d0|!`e zp!oEzyQW~erpoW*1-UmW0Gd%4N8D#2OQEWaWY={Q*W)9Zo3RBpUZ1X8v+ijVYc88u z_l$Jy#p~CuS-xd=c2~E&4W%%# ztugF)ou(6uY{Rj>vybEqf~MN3US6clakdQ2VCxw=nH%|FX=iZoUFp6Y^`+f1X@8&{ zb#vvNMM=T!EROih{K2;_`Ubs1iFBcAIk{Rig7WLLd9PTN=B#k_`-ALbZ;Y!q)ryE$ z@l|Dv&GBrG@>d)l?_q`(O*>4cyCZXcdAREj5};aI1>C5ry}2Un`fC)v2FwPkLd|95I~fD7 z=&;p+OMyH%>@>9JCXDG^vq)Jb!ON2y&+a^%FMM*uY;><6xmE@}qxI&7Ruz=?p&91d zlA(GF))#MT$?Q{EL7@x0Z9QSvL6{^IY#+iEm>(@oB8}@QFpv&l=oG`+OZ2bOhp7CW z12!Hlxw_E@UZgt*<-RPbPT>HIElZAN{n~hR+`=3(<|TKL+Jpg^Aks%7t*w36=!r

*@Eb&M(K{v%?)Hvw@GkKDkRsmyVCYq7SDt=&1 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 more about our new navigation — or go ahead and explore on your own." msgstr "Fare le cose con WooCommerce è diventato ancora più veloce. Leggi tutto sulla nostra nuova navigazione oppure prosegui e scopri le novità tu stesso." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Muoviti più velocemente grazie alla nostra nuova navigazione" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Ottieni suggerimenti e una panoramica sulle prestazioni del tuo negozio ogni volta che torni alla bacheca di WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Scopri la tua nuova Home" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Scegli un nuovo indirizzo web per il tuo negozio o trasferiscine uno che già possiedi." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Aggiungi un'illustrazione del dominio" @@ -521,53 +203,43 @@ msgstr "Dettagli del bonifico bancario diretto aggiunti correttamente" msgid "Please enter an account number or IBAN" msgstr "Inserisci un numero di conto o un IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Solo gli amministratori e i responsabili del negozio possono effettuare ordini durante il periodo di prova. Se tutto è pronto per accettare i pagamenti dai clienti, {{link}}effettua l'aggiornamento a un piano a pagamento{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Metodi di pagamento offline" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Scopri di più" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Prova uno dei fornitori di pagamento alternativi." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Altri fornitori di pagamento" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Offri ai tuoi clienti ulteriori scelte sulle modalità di pagamento." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Opzioni di pagamento aggiuntive" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Per prepararti ad accettare pagamenti online" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Scegli un fornitore dei pagamenti" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Si è verificato un errore durante la connessione a WooCommerce Payments. Riprova o connettiti più tardi nelle impostazioni del negozio." @@ -584,196 +256,180 @@ msgstr "Accettando di condividere i {{link}}dati di utilizzo{{/link}} non sensib msgid "Help us build a better WooCommerce Payments experience" msgstr "Aiutaci a creare una migliore esperienza di WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Utilizzando WooCommerce Payments, accetti i {{tosLink}}Termini di servizio{{/tosLink}} e confermi di aver letto la {{privacyLink}}Politica sulla privacy{{/privacyLink}} " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Preparati ad accettare pagamenti" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Sì, conta su di me!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Crea un WooCommerce migliore" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Si è verificato un problema durante l'aggiornamento delle tue preferenze" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configura l'account %(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Installa %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Puoi gestire le impostazioni di questo gateaway di pagamento facendo clic sul pulsante qui sotto" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Connetti" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Procedi" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Si è verificato un problema durante il salvataggio delle tue impostazioni di pagamento" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "Configurazione di %s completata" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Raccomandato" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Partner locale" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Completa la configurazione" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Abilita" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lancia comunque" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Alcune cose da controllare prima di lanciare il tuo negozio" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Prima del lancio" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Scegli un indirizzo per il tuo nuovo sito web o trasferisci un dominio che già possiedi." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Elenca i prodotti" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Inizia a vendere aggiungendo prodotti o servizi al tuo negozio. Crea i tuoi prodotti manualmente o importali da un negozio esistente." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Elenca i tuoi prodotti" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Offri ai tuoi clienti un modo semplice e conveniente per pagare. Configura uno (o più) dei nostri metodi di pagamento online o di persona, rapidi e sicuri." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Ricevi i pagamenti" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Puoi sempre ripristinarlo in Impostazioni." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "È tempo di festeggiare: tutto è pronto per lanciare il tuo negozio. Wow!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Pronto a lanciare il tuo negozio?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Hai cambiato idea? Puoi rendere nuovamente privato il tuo negozio aggiornando le impostazioni della privacy." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Visualizza il tuo negozio" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Congratulazioni per il lancio del tuo negozio WooCommerce. Dedica un momento ai festeggiamenti e alla condivisione della notizia." -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Wow! Ce l'hai fatta!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Lancio del tuo negozio" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Copiato" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Ignora questo banner informativo per il periodo di prova." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Questo è il tuo negozio di test per il periodo di prova dove potrai iniziare a esplorare le opzioni disponibili. Per saperne di più sulla prova gratuita, fai clic su \"Scopri di più\"." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Si è verificato un problema durante il salvataggio della posizione del negozio" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Facendo clic su \"Test sui pagamenti\", accetti i nostri {{tosLink}}Termini di servizio{{/tosLink}}." -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Potenzia i tuoi pagamenti con una semplice opzione tutto in uno. Verifica i dettagli della tua attività per iniziare a provare le transazioni con WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Test sui pagamenti" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Offri ai tuoi clienti un modo semplice e conveniente per pagare. Configura e prova alcuni dei nostri metodi di pagamento online o di persona, rapidi e sicuri." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "È tempo di provare i pagamenti" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Illustrazione del pagamento" @@ -834,7 +490,6 @@ msgstr "Personalizza il tuo negozio in modo che funzioni perfettamente per la tu #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Porta il tuo negozio al livello successivo grazie alle estensioni" @@ -848,7 +503,7 @@ msgstr "È tempo di festeggiare. Tutto pronto per lanciare il tuo negozio?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lancia il tuo negozio" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Hai già lanciato il tuo negozio" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minuti" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Dominio" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Aggiungi un dominio" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Migliora il tuo sito" @@ -918,16 +572,16 @@ msgstr "Durante il periodo di prova puoi effettuare solo ordini di prova. Per ri msgid "Start selling to everyone" msgstr "Inizia a vendere al pubblico" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Il mio account" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "Contatt" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Home" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Discover" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gestisci" @@ -1023,15 +676,11 @@ msgstr "Feedback" msgid "Save big with WooCommerce Payments" msgstr "Risparmia in modo significativo con WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "No, grazie" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Negozio" msgid "Stats" msgstr "Statistiche" -#: build/index.js:1 -msgid "City" -msgstr "Città" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continua" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Per saperne di più." diff --git a/languages/wc-calypso-bridge-ja.mo b/languages/wc-calypso-bridge-ja.mo index 8af77aa3dc28b4b4d206cb63e85c2ba8fbda0334..07857c4e8a01a8d589311f25474f40694712ba83 100644 GIT binary patch delta 5214 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 delta 16378 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 diff --git a/languages/wc-calypso-bridge-ja.po b/languages/wc-calypso-bridge-ja.po index 729adc36..44a5d8df 100644 --- a/languages/wc-calypso-bridge-ja.po +++ b/languages/wc-calypso-bridge-ja.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "ブログのホーム" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "エキスパートに依頼する" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "お探しのものが見つかりませんか ? 当社のエキスパートエージェンシーにお任せください。 新しい拡張機能からストア全体の構築まで、理想のストアの作成を当社の Woo エキスパートがお手伝いします。" - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "ストアの eコマース機能を拡張したいですか ? Woo のマーケットプレイスには、お客様のストアのために特別に設計された、数百もの信頼できる拡張機能があります。" - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "SEO ツールから多言語機能まで、WordPress プラグインを使用すると、サイトをカスタマイズして必要なことをすべて実行できます。" - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "サイトをカスタマイズする" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "ボタンをクリックするだけで、サイトに機能を追加できます。 有料プランにアップグレードすると、WordPress の何千もの無料プラグインと有料プラグインを利用できます。 何をできるか、興味が湧きましたか ?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "自分のやり方で" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "拡張機能を見る" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "ストアを拡大する" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "プラグインを表示" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "プラグインでどんなことも実現" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "WooCommerce がどのように使用されているかを示す{{link}}使用状況の追跡{{/link}}を介して非機密データを共有することで、機能を改善し、修正を迅速化しましょう。 パーソナルデータは追跡も保存もされません。" - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "デジタルギフトカードを作成" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "デジタルギフトカードの販売と受け取りを開始して、顧客ロイヤルティを高め、収益を増やし、新しいお客様にストアを紹介します。" - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "ギフトカードで顧客ロイヤルティを向上" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "ソーシャル広告を利用して、TikTok、Pinterest、Meta プラットフォームを閲覧して買い物に熱中している何百万人ものユーザーに商品を表示しましょう。" - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "ソーシャルメディアを通じてより多くの顧客にリーチ" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "ダッシュボードから直接作成および管理できる商品リストや広告を利用して、Google 全体で活発な買い物客にアプローチします。" - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Google に商品の広告を掲載" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "AutomateWoo を試す" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "顧客の購入データに応答する自動化されたマーケティング メッセージを通じて、販売を促進し、ロイヤルティを構築します。" - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "マーケティングを自動化する" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "より多くの顧客にリーチして売上を伸ばすための組み込み型マーケティングツールをご覧ください" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "数百個の拡張機能を利用して、ビジネスを成長させることができます" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "組み込み型のマーケティングおよび広告ツールを使用して、より多くの顧客にリーチし、ビジネスを成長させましょう。 有料プランにアップグレードして強力なマーケティングツールを利用し、今すぐビジネスを成長させましょう。" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "ビジネスの成長のために準備を整える" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "外観のイラスト" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "商品のイラスト" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "とてもすてきです。その調子です !" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "お疲れ様でした ! ついに最後のステップです ! お疲れ様でした" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "タスクは残りわずかです !" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Woo Express ストアへようこそ" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "%s へようこそ" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%2$d件中%1$d件が完了しました。" - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "あと少しで販売を開始できます。 次の手順に従って、テスト用ストアをセットアップします。" - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "設定リストを非表示" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "ストア設定が自分のニーズに合っている。" - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "ストア設定が簡単。" - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "フィードバックをぜひお寄せください。" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "ご利用体験はいかがでしたか ?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "非表示" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "設定タスクのリストを表示" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "タスクリストオプション" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "お疲れ様でした。 どうぞお祝いしてください。 ストアを立ち上げる準備ができたら、あとは有料プランにアップグレードするだけです。 そうすることで、タスクリストにある次の2つのタスクを実行できます。" - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "注目 ! トライアル用ストアの設定が完了しました !" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "あと少しで完了です ! 残りのステップはあと1つです ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "税自動処理の設定中に問題が発生しました。 もう一度お試しください。" - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "無料お試し期間中は、消費税の設定を行うことはできますが、徴収することはできません。 {{br/}}商品の販売を始めるには、{{link}}今すぐアップグレードしてください{{/link}}。" - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "消費税は請求しません" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "手動で税を設定" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "タックスパートナーを選択" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax では、消費税の計算を自動化できます。" - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "税金処理を自動化する" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "税金処理を自動化する" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "税率設定画面に移動して税率を設定します" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "税率を設定" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "ビジネスの所在地" - -#: build/index.js:1 -msgid "Set store location" -msgstr "ストアの所在地を設定" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "国または地域を選択してください" - -#: build/index.js:1 -msgid "Post code" -msgstr "郵便番号" - -#: build/index.js:1 -msgid "Address" -msgstr "住所" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "国または地域" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "「設定」をクリックすると、税率と計算を有効にできます。 詳細は{{link}}こちら{{/link}}を参照してください。" - -#: build/index.js:1 -msgid "Configure" -msgstr "設定" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "セットアップを続行" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "WooCommerce Tax と Jetpack をインストールすることで、{{link}}利用規約{{/link}}に同意したものとみなされます。" - -#: build/index.js:1 -msgid "100% free" -msgstr "100% 無料" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "{{link}}Jetpack{{/link}} 提供" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "{{strong}}単一の{{/strong}}経済的関連性コンプライアンス" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "リアルタイムの消費税計算" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "新しいストアに最適" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "売上を伸ばす" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "有料プランをアップグレードしてより多くの機能を利用し、販売を開始しましょう。" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "現在、無料お試しに登録しています。 すべての機能にアクセスするには、有料プランにアップグレードしてください。" - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "ウェルカムモーダルナビゲーションの図1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "ウェルカムモーダルナビゲーションの図2" -#: build/index.js:1 -msgid "Setup required" -msgstr "セットアップが必要です" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "定期的に収益を得て管理し、指定した銀行口座にデポジットを入金できます。" - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "海外市場に向けて販売し、現地の支払い方法で135種を超える通貨の支払いを受けることができます。" - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "デビットカード決済やクレジットカード決済、Apple Pay、Sofort、SEPA、iDeal など、顧客が希望する決済方法に対応しましょう。" - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "次の支払い方法をご利用いただけます: " - -#: build/index.js:1 -msgid "& more." -msgstr "その他。" - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "機能拡張を表示" @@ -417,7 +99,7 @@ msgstr "テーマを選択" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "プラグイン" @@ -453,27 +135,27 @@ msgstr "オンボーディング" msgid "A custom navigation experience that is optimized for selling." msgstr "販売向けに最適化されたカスタムナビゲーションを利用できます。" -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "WooCommerce での作業がさらに高速化しました。 新しいナビゲーションの詳細をご覧ください。または、先に進んでご自身で確認してください。" -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "新しいナビゲーションですばやく作業" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "WordPress.com ダッシュボードに戻るたびに、ストアのパフォーマンスに関するヒントや統計概要を確認できます。" -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "新しいホームを利用" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "ストアの新しいサイトアドレスを選択するか、すでに所有しているアドレスを転送します。" -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "ドメインのイラストレーションを追加" @@ -521,53 +203,43 @@ msgstr "銀行振込 (ダイレクト) の詳細の追加が完了しました" msgid "Please enter an account number or IBAN" msgstr "口座番号か IBAN を入力してください" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "無料お試し期間中は、管理者とストア管理者のみが注文を行えます。 顧客からの支払いを受け取る準備ができている場合は、{{link}}有料プランにアップグレード{{/link}}してください。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "オフラインの決済方法" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "もっと見る" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "他の決済サービス業者を試してみましょう。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "その他の決済サービス業者" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "顧客が選べる決済手段を増やしましょう。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "追加の支払いオプション" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "オンライン支払いを受け取る準備をするには" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "決済サービス業者を選択" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "WooCommerce Payments への接続時にエラーが発生しました。 もう一度試すか、しばらくしてからストア設定に接続してください。" @@ -584,196 +256,180 @@ msgstr "機密情報以外の{{link}}使用状況データ{{/link}}の共有に msgid "Help us build a better WooCommerce Payments experience" msgstr "より良い WooCommerce Payments サービスの構築にご協力お願いいたします" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "WooCommerce Payments を使用することで、お客様は弊社の{{tosLink}}利用規約{{/tosLink}}に拘束されることに同意し、弊社{{privacyLink}}プライバシーポリシー{{/privacyLink}}を読んだものとみなされます " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "支払いを受け取る準備をする" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "はい、参加します。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "より良い WooCommerce を構築" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "設定を更新しているときに問題が発生しました" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "%(title)s アカウントを設定" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "%s のインストール" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "下のボタンをクリックすると、この決済方法の設定を管理できます" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "接続" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "続行" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "支払い設定を保存する際に問題が発生しました" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s が正しく設定されました" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "おすすめ" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "ローカルパートナー" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "設定完了" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "有効化" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "このまま立ち上げる" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "ストアを立ち上げる前に確認すべき点" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "立ち上げ前" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "新しいサイトのアドレスを選択するか、すでに所有しているドメインを転送します。" -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "商品をリスト化" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "ストアに商品やサービスを追加して販売を開始します。 商品を手動で作成するか、既存のストアからインポートします。" -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "商品をリスト化" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "お客様に簡単で便利な決済方法を提供します。 迅速で安全なオンラインまたはオフラインでの支払い方法を1つ (または複数) 設定します。" -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "お支払いの受け取り" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "これは「設定」でいつでも元に戻すことができます。" -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "おめでとうございます – ストアを立ち上げる準備が整いました ! お疲れ様でした !" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "ストアの立ち上げ準備は整いましたか ?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "気が変わりましたか ? プライバシー設定を更新することで、ストアを非公開に戻すことができます。" -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "ストアを表示" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "おめでとうございます。WooCommerce ストアを立ち上げました。 お祝いしてニュースをシェアしましょう !" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "お疲れ様でした ! これで完了です !" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "ストアを立ち上げる" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "コピーしました" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "無料お試し期間の情報バナーを閉じます。" -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "これは、利用できる機能の確認を始めることができる無料お試し期間のテストストアです。 無料お試し期間の詳細については、「さらに詳しく」をクリックしてください。" -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "ストアの所在地を保存しているときに問題が発生しました" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "「支払いをテスト」をクリックすると、{{tosLink}}利用規約{{/tosLink}}に同意したものとみなされます。" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "シンプルなオールインワンオプションで支払いを強化します。 ビジネスの詳細を確認すると、WooCommerce Payments でトランザクションのテストを開始できます。" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "支払いをテスト" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "お客様に簡単で便利な決済方法を提供します。 迅速で安全なオンラインまたはオフラインでの支払い方法の一部を設定してテストします。" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "支払いをテストします" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "支払いのイラスト" @@ -834,7 +490,6 @@ msgstr "WooCommerce 拡張機能を使用して、ストアがビジネスに最 #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "拡張機能を使用してストアをレベルアップさせましょう" @@ -848,7 +503,7 @@ msgstr "おめでとうございます ! ストアの立ち上げ準備は整い #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "ストアを立ち上げる" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "すでにストアを立ち上げています" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2分" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "ドメイン" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "ドメインを追加" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "今すぐアップグレード" @@ -918,16 +572,16 @@ msgstr "無料お試し期間中に行えるのはテスト注文のみです ! msgid "Start selling to everyone" msgstr "すべての人に販売を開始" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "マイアカウント" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "お問い合わせ" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "ホーム" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Discover" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "管理" @@ -1023,15 +676,11 @@ msgstr "フィードバック" msgid "Save big with WooCommerce Payments" msgstr "WooCommerce Payments でコストを大幅に削減しましょう" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "結構です" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "ストア" msgid "Stats" msgstr "統計" -#: build/index.js:1 -msgid "City" -msgstr "市区町村" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "続ける" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "さらに詳しく。" diff --git a/languages/wc-calypso-bridge-ko_KR.mo b/languages/wc-calypso-bridge-ko_KR.mo index b3dde195ef0d94b0eeedf07f28a706a2b54702ab..2319b67472c8a0dfb0342050d72729fe80cb740c 100644 GIT binary patch delta 5213 zcmYk<2~<_p9>?*05l|UaP*8EgDU?xEKoJu`0}aIqQgK3NgbNAyB+DyCIbmX(3`5ig zE6Y+kk(ilflSPF-?X73^T$R}~f#zs<4e$HE=eU-8_2aYmzTADz*~7sao^Uzwp3QOD z*YzPqxj+V!7u}T_Xj3Z1TY8l`=A)E>P1qN6e3c5oO6-Ak*b^IZDn5nt@G3@PG+*+< zeC&l4*d43Qeut`|GLVkFxBw0F1LfXNDL>kMaU70C?m;cZZCHeIBV9NOefVX$k!b9X z@#ukz(G#<*&r5I;?Mn1f4y9gjR+M_v@?R(eU&FE3&7WDoFigYC*n$(eN(gr1Y8*I# zS;MRH->_y)djwQFzT zqO{|J%%yhZP?0;)C<8o#@?D)9FRG7FZqO B?ekjZQ{aOh#5q z&B2pciajti#Qgmzl=sL?WHQt`94_a7pVjdy_T+;vu?oLIPNpgiRmu&wqdaM?)jovd zX+Mi{W0z6ZybC#z$~DZK>R~8*BpIu*3gt%J!9enF$3FB z_DBfdF2z)oQ}Y_mvnllp$`T}VS2A7+a*$Lb%J)v8Cw`8Z*oh8Vn^d;0O!-P=c~zd} zF6=}5ILa5#qCD9}l$rPzebIHIIaB>HhISuILz=bGNn~h6x2YTaID4X{uOvXO!ROw%WjhKi1 z(2a}8k_4c9o{X|I=?*Hg1nW?y_a8co^lzDtYX!cm|8{_IPtV#|bLW&~XuEsvXm}cV+wwTjTkmdsRnFC{!@9g`8$D4C>Lr**?gzb1K&iMfi}x4_ypHizfh4c?BfW? zW_c1<;7OE$1Gs7sW@9g`L3x4(lmQQ;Jn1QvQ}H1>_lotonqw|mKg;RJ(N}hK$N-O0 z>5t7Q1ASn%FQZIp7f!%Gk^QG4=b9I=qr6JDp$8tt?)WnH!ZRqF`#j3HpQGH^4=4}p zoyz=QrqVxEso$^*rTyJJ-g?-^VV4W~EHH0mF3JFDC{tUCJ+K1h1~y_Z+-7}Vk7H;z z;$VCm!|)1vq0d6*{~(p23(ezq8s&~#QNHjAva!{#7>-jGnKx2sc_&Vzf4yZ3%4Yi& zWtaP;nKL^MWhRqxB&Oo0SmvN2cRnxOT>A`^0ZWmitd3zkeuKQ^RKy+Tn&;tu+8b~< z1}ru&5QpBh6H%skKFX^$!|LCOvJ?#{GwC=&Wh|9y$W~xx`d=JVLK4sa8^8WZ1WlcRZ%_kdxeQ8fXUre%Gimaw8#({GFU#G%` zRG;8r3|?*i^E(OSXy@ZGJcRs;O3yN9qy>X%x8oZ0&o=*vZAQ7khbRv+B1b73%1z!V zGJ{O0ist&xf0J|6o&OUt1E-L?$W|idMY7phGpBL`^?#BrWEJT~@<=l&AuZ%iA{W0= zDyh6fs)_6mDGkJNlppodqMReciM(`V)5uYpMx@Lnfl{HIHgUck-KZZYoG9n|zluD# zv&aTKW!2@_JxpZAZj?H%@BE|l96bZc>*R#>sZ6<)Gh`i+-7e)M*+w3c24xu0q>(&L zr0gVq&YF3;coC|#WIK6;d`KQ7a((BEMym7VhgDuc7jl5SP2veBO+7%~Be#$Ua)_|J z&LVrLzf~7%Z>qOae}c%%ND5oVSr&19X9?lw2Ua~4cat3?i1Z^BLozNxC#B zZ;|JnHS<+1CrXN)M3Fw^0$EI&NDYZ4jwktXHwhq~wbxdzinA~|gJjj|MakiMi!*8edoo5(?Oqim!yj85f1IxFz3{%rUKeRjk(-8^!)&K~6$Y|qIm zSBWL|@=Qxc&7q^TASc`Sd-MvME)V)!ZyD2De>o=1y*RVLu4d@kAb*__T;*!dTwSEs zgv|F!$|(;lu$Pq-*a%6zX6sWHc)j^Z zM|D$s?b9l<{iSNXaQ-#DXhDnNy(r42v(uL8t~9%Lq(>WV=|MKVesP&@jO}48U*cvn zqB4AK#>!>kHeI*8N(ZmltzTI=q-VR)+_Cux;~8UC88&@zSAg~^?_-QyZL{fVS^afu zR!qpB`+^roDX?wx!0aR>V2+}U0o^;Or8)wUmNxZZM1f15v6PbhfMSWtM2 zi~hc7ws+^=t*U+3-j2rl&WE1XZx>%S&e;=O4A-@OHshJHPhE_rbqO}l&bpfR14phO zZ|P{%;p>m;Kh~FOpOVq~ff5fRbHn#G{ntJI#<-0hHsc$IuTA?^4b%BmRgdRywi&1H zjdIhyw>9gK?VI$a?TdBWj*a?oO^Kdf;AgDb`Mb@%qw&S|qb<5miNBs$yFrKUKK_3y C-3E^U literal 37403 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 diff --git a/languages/wc-calypso-bridge-ko_KR.po b/languages/wc-calypso-bridge-ko_KR.po index 618e79ba..b53aa11c 100644 --- a/languages/wc-calypso-bridge-ko_KR.po +++ b/languages/wc-calypso-bridge-ko_KR.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "블로그 홈" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "전문가를 고용하세요" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "원하는 것을 찾을 수 없으신가요? 전문가 에이전시를 고용하세요! 새 확장 프로그램부터 전체 스토어 빌드까지, 꿈꾸던 스토어 생성을 Woo Experts가 지원합니다." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "스토어의 전자상거래 기능을 확장할 계획이신가요? Woo Marketplace에는 스토어를 위해 특별히 설계된 수백 개의 신뢰할 수 있는 확장 프로그램이 있습니다." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "SEO 도구부터 다중 언어 기능까지, 워드프레스 플러그인을 활용하면 웹사이트를 원하는 대로 사용자 정의할 수 있습니다." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "웹사이트 사용자 정의" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "버튼 하나만 클릭하면 웹사이트에 기능을 더 추가할 수 있습니다. 유료 요금제로 업그레이드하여 수천 개의 무료 및 유료 워드프레스 플러그인에 액세스하세요. 무엇이 가능한지 궁금하신가요?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "원하는 방식으로 지원" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "확장 기능 살펴보기" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "스토어 확장" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "플러그인 찾아보기" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "무엇이든 지원하는 플러그인" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "우커머스가 어떻게 사용되는지 보여주는 {{link}}사용 추적{{/link}}을 통해 중요하지 않은 데이터를 공유하여 개선된 기능 및 더 빨라진 수정 사항을 확인하세요. 개인 데이터는 추적 또는 저장되지 않습니다." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "디지털 기프트 카드 생성" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "고객 충성도를 높이고 매출을 늘리고 신규 고객을 스토어로 유치하기 위해 디지털 기프트 카드를 판매하고 결제 수단으로 수락하세요." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "기프트 카드로 고객 충성도 제고" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "소셜 광고를 통해 TikTok, Pinterest, Meta 플랫폼을 둘러보는 수백만 명의 참여 쇼핑객에게 제품을 선보이세요." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "소셜 미디어에서 더 많은 고객에게 도달" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "대시보드에서 바로 생성 및 관리할 수 있는 제품 목록 및 광고로 활성 쇼핑객에게 도달하세요." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Google에서 제품 광고" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "AutomateWoo 사용해 보기" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "고객의 구매 데이터에 반응하는 자동화된 마케팅 메시지를 통해 매출을 늘리고 충성도를 높이세요." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "마케팅 자동화" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "더 많은 고객에게 도달하고 매출을 높이도록 지원하는 내장 마케팅 도구를 살펴보세요." - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "수백 가지 확장 기능으로 비즈니스 성장" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "내장된 마케팅 및 광고 도구로 더 많은 고객에게 도달하고 비즈니스를 키우세요. 지금 바로 유료 요금제로 업그레이드하여 강력한 마케팅 도구를 활용하고 비즈니스 성장을 시작하세요!" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "비즈니스 성장 준비" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "디자인 일러스트레이션" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "상품 일러스트레이션" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "아주 좋습니다. 계속하세요!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "우와! 마지막 단계까지 해냈습니다! 잘했습니다." - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "몇 가지 작업만 더 하면 됩니다!" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Woo Express 스토어에 오신 것을 환영합니다." - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "%s에 오신 것을 환영합니다." - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d/%2$d개 완료" - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "상품 판매를 위한 준비가 거의 완료됐습니다! 다음 단계를 따라 테스트 스토어를 설정하세요." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "설정 목록 숨기기" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "내게 필요한 사항이 스토어 설정 프로세스에서 충족됩니다." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "스토어 설정을 완료하기 쉽습니다." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "피드백을 보내주셔서 감사합니다!" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "경험해보니 어떠셨나요?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "숨기기" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "설정 작업 목록 표시" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "작업 목록 옵션" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "축하합니다! 잠시 자축하는 시간을 가져보세요. 스토어를 공개할 준비가 되었다면 유료 요금제로 업그레이드만 하면 됩니다. 그러면 작업 목록에 예정된 두 개의 작업도 이용할 수 있게 됩니다." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "우와! 평가판 스토어가 설정됐습니다!" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "굉장하군요! 해야 할 일이 한 가지 줄었어요 ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "자동화된 세금 설정 중 문제가 발생했습니다. 다시 시도하세요." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "무료 평가판을 사용하는 동안에는 판매세 설정을 구성할 수 있지만 징수되지는 않습니다. {{br/}}제품 판매를 시작하려면 {{link}}지금 업그레이드{{/link}}하세요." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "판매세 청구하지 않음" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "수동으로 세금 설정" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "세금 파트너 선택" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax에서는 판매세 계산을 자동화할 수 있습니다." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "세금 자동화" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "세금 자동화" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "세율 설정 화면으로 이동하여 세율을 구성하세요." - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "세율 구성" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "회원님의 비즈니스가 이루어지는 주소" - -#: build/index.js:1 -msgid "Set store location" -msgstr "스토어 위치 설정" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "국가 / 지역을 입력하세요" - -#: build/index.js:1 -msgid "Post code" -msgstr "우편번호" - -#: build/index.js:1 -msgid "Address" -msgstr "주소" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "국가 / 지역" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "\"구성\"을 클릭하면 세율 및 계산이 활성화됩니다. 자세한 내용은 {{link}}여기{{/link}}를 참조하세요." - -#: build/index.js:1 -msgid "Configure" -msgstr "구성" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "설정 계속하기" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "WooCommerce Tax와 젯팩을 설치하면 {{link}}서비스 약관{{/link}}에 동의하는 것입니다." - -#: build/index.js:1 -msgid "100% free" -msgstr "100% 무료" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "{{link}}젯팩{{/link}} 제공" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "{{strong}}단일{{/strong}} 경제 결합 규정 준수" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "실시간 판매세 계산" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "신규 스토어에 최적" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "매출 증대" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "유료 요금제로 업그레이드하여 더 많은 기능을 활용하고 판매를 시작하세요." - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "현재 무료 평가판을 사용 중입니다! 전체 기능을 이용하려면 유료 요금제로 업그레이드하세요." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "환영 모달 탐색 일러스트 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "환영 모달 탐색 일러스트 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "필요한 설정" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "반복 수익을 창출 및 관리하고 지정된 은행 계좌에 자동으로 예치하세요." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "해외 시장에 판매하고 로컬 결제 수단으로 135가지 이상의 통화를 수락하세요." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "체크카드와 신용카드 결제, Apple Pay, Sofort, SEPA, iDeal 등을 포함하여 고객이 선호하는 결제 방법을 제공하세요." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "수락한 결제 수단:" - -#: build/index.js:1 -msgid "& more." -msgstr "그 외 다수." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "확장 기능 둘러보기" @@ -417,7 +99,7 @@ msgstr "테마 선택" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "플러그인" @@ -453,27 +135,27 @@ msgstr "온보딩" msgid "A custom navigation experience that is optimized for selling." msgstr "판매에 최적화된 사용자 정의 탐색 환경입니다." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "우커머스에서는 일을 진행하는 속도가 빨라졌습니다. 새로운 탐색에 대해 자세히 알아보거나 직접 탐색해 보세요." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "탐색을 통해 더 빠르게 이동" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "워드프레스닷컴 알림판으로 다시 이동할 때마다 스토어의 성과에 대한 팁과 인사이트를 얻으세요." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "새로운 홈 만나보기" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "스토어의 새 웹사이트 주소를 선택하거나 이미 소유하고 있는 주소를 이전하세요." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "도메인 일러스트레이션 추가" @@ -521,53 +203,43 @@ msgstr "은행 이체 상세 정보 추가됨" msgid "Please enter an account number or IBAN" msgstr "계좌 번호 또는 IBAN을 입력하세요." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "관리자와 스토어 관리자만 무료 평가판을 사용하는 동안에 주문할 수 있습니다. 고객의 결제를 수락할 준비가 되었으면 {{link}}유료 요금제로 업그레이드{{/link}}하세요." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "오프라인 결제 수단" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "더 보기" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "대체 결제 제공업체 중 하나를 이용해 보세요." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "다른 결제 제공업체" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "고객에게 결제 방법을 선택할 기회를 추가로 제공하세요." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "추가 결제 옵션" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "온라인 결제 수락을 준비하는 방법" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "결제 제공업체 선택" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "WooCommerce Payments에 연결하는 중 오류가 발생했습니다. 다시 시도하거나 나중에 스토어 설정에서 연결하세요." @@ -584,196 +256,180 @@ msgstr "중요하지 않은 {{link}}사용 데이터{{/link}}를 제공하면 msgid "Help us build a better WooCommerce Payments experience" msgstr "더 나은 WooCommerce Payments 환경을 조성하도록 도와주세요" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "WooCommerce Payments를 사용하면 {{tosLink}}서비스 약관{{/tosLink}} 적용에 동의하고 {{privacyLink}}개인정보 취급방침{{/privacyLink}}을 읽었다는 것을 확인하는 것입니다. " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "결제 수락 준비하기" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "네, 저도 끼워주세요!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "더 나은 우커머스 구축" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "기본 설정 업데이트 중 문제가 발생했음" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "%(title)s 계정 구성하기" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "설치 %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "아래 버튼을 클릭하여 이 결제 게이트웨이의 설정을 관리할 수 있습니다." -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "연결하기" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "진행합니다" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "결제 설정 저장 중 문제가 발생했습니다." #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s 구성됨" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "추천" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "현지 파트너" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "설정 완료" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "활성" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "무시하고 시작" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "스토어를 시작하기 전에 확인할 몇 가지 사항" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "시작하기 전에" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "새 웹사이트의 주소를 선택하거나 이미 소유하고 있는 도메인을 이전하세요." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "상품 나열하기" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "스토어에 상품 또는 서비스를 추가하여 판매를 시작하세요. 상품을 수동으로 생성하거나 기존 스토어에서 가져오세요." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "내 상품 나열하기" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "고객에게 쉽고 편리한 결제 방법을 제공하세요! 빠르고 안전한 온라인 또는 직접 결제 수단을 하나 이상 설정하세요." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "결제받기" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "언제든지 설정에서 되돌릴 수 있습니다." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "이제 축하할 시간입니다. 스토어를 시작할 준비가 되었습니다! 좋아요!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "스토어를 시작할 준비가 되셨나요?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "마음이 바뀌셨나요? 개인정보 설정을 업데이트하여 스토어를 다시 비공개로 전환할 수 있습니다." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "내 스토어 보기" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "우커머스 스토어 시작을 축하합니다. 잠시 시간을 내어 축하하고 소식을 공유하세요!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "좋아요! 훌륭합니다!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "스토어 시작하기" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "복사됨" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "이 무료 평가판 정보 배너는 무시하세요." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "무엇을 이용할 수 있는지 둘러보기를 시작할 수 있는 무료 평가판 테스트 스토어입니다. 무료 평가판에 대해 자세히 알아보려면 \"더 알아보기\"를 클릭하세요." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "스토어 위치 저장 중 문제가 발생했음" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "\"결제 테스트\"를 클릭하면 {{tosLink}}서비스 약관{{/tosLink}}에 동의하는 것입니다." -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "간단한 일체형 옵션으로 결제를 강화하세요. WooCommerce Payments로 거래 테스트를 시작할 비즈니스 상세 정보를 확인하세요." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "결제 테스트" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "고객에게 쉽고 편리한 결제 방법을 제공하세요! 빠르고 안전한 온라인 또는 직접 결제 수단을 설정하고 테스트하세요." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "결제를 테스트할 시간입니다." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "결제 일러스트레이션" @@ -834,7 +490,6 @@ msgstr "우커머스 확장 기능으로 스토어를 비즈니스에 맞춰 사 #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "확장 기능으로 스토어의 수준 높이기" @@ -848,7 +503,7 @@ msgstr "축하할 시간입니다! 스토어를 시작할 준비가 되셨나요 #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "스토어 시작" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "이미 스토어를 시작하셨습니다." #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2분" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "도메인" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "도메인 추가" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "지금 업그레이드" @@ -918,16 +572,16 @@ msgstr "평가판 기간에는 테스트 주문만 가능합니다. 고객의 msgid "Start selling to everyone" msgstr "모든 사람에게 판매 시작" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "내 계정" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "연락처" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "홈" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "둘러보기" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "관리" @@ -1023,15 +676,11 @@ msgstr "피드백" msgid "Save big with WooCommerce Payments" msgstr "WooCommerce 결제로 대폭 절약" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "괜찮습니다." -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "스토어" msgid "Stats" msgstr "통계" -#: build/index.js:1 -msgid "City" -msgstr "도시" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "계속" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "자세히 알아보세요." diff --git a/languages/wc-calypso-bridge-nl_NL.mo b/languages/wc-calypso-bridge-nl_NL.mo index 7ecf73811ff990e6ff7e712bf46374eb67307cd4..a991c608dd3083a162cc4a0e46baca84d9ae9ec0 100644 GIT binary patch delta 4691 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 delta 5197 zcmZwK3vg7`8Nl(gBtQ}Z;TaH+oIqlDWg)x*5d(yXl{bPSYAZL{ljJ6wd*j_*0zq6b zXhj7di>QDih@yp7bj6`mol?Qk&RAO<$H#OWi&i@wd{pa$sdoDR?p+|`^p4;D&bfQ{ zJic?zC4O-r^ujZtQ58~aih2&ona+PM@?9QohThWg?acK%Gh4Y z+z+)@GvIuYP@8CQb*}u-ArK|H>M6$stzq&h$m1++KnV;E1N#!#VB^*9n`#&++<_}I_0Lf<_YL+&NlOv*!K5@8rXXup znXwk-{xXz3aUDv^+tI~N+=5@@G~6&usbAvrcn8kpM{@rpX5$Yi83|n+)N_$lP<<{Y z|1z>-Zphk=#~Q50$+!t+07pS2;YpN%yn(W$r*SZz z!GoBs0}p4sAz7@{Xuil98LVXmO2;>%{ICHf1Gk_wybCYE!+00IgVJ$5qq`JakX29z zP?qc!ly=@kPOAD8B{SclEKRZpXN)#fFZ>;bQP%#SD97<@EX5K&7^|9(QjhW>GrS)+ z;cjGqsS%8>J5EO#aCN4>94ApK+zI3->OGW>@}~r+ zqY$P2Vw8cDqu$xGj^iJdis(r{ZspI%Ap1~$O$ys~{!%Tk`_8`9=&cmhn zTa+cqVERqDZVPH5VWoUkyhYSS`w$FT(y9!F+5-{ykEgQQFywo%kf~$FZc1ld9gt6eho+a5sf5 zvz4MxRX8VjF|0rtz^Y8W5eHC@qAb})ya?|>*+WkwtD-(bIbJ0-!HgH6Jii*HJs11o z24vt#bq@vEZ2K~%QP%PVGH5l3)+wqLCfb1@?rH3_ z5{#lO$$co9I*EPd{GXyADf`I3!Er(9An$VC-&mY6dtOlg6vN#A;}t=JXHgm~XNSq} zs&F(eLm6-fj>K*F7(RX%_IX0x>=V|}m;7ojXg0>|KP?1iu5EDXBq%wQYJn(o3Lcm#QOs25RE{W*@n zA5qqN_@dx=Eyw-TA3@neHH(8c-$tB8{U~n5?~%!?+m{3{x;K}Q|5eI0Vt$EE^DQ@;Ua0=J=L?g{LRhfyYQ9A&e;hBEW_QTECwI0Qp0 zlELvAx+0i)InLvYD^OCt4LQncKT1O%q739KMH>oy7`*Uz%t^WXntDg2uF4Y8ew5%&>t$;;*cUH5QP)^b#rFJ-fFSk$wb zdon}W4{~)6@IN>5IW4Fs)vqYXT0axq@c)o3&y?5UGGY(0mbi(?CS(&nPsp*#CnWW9 z4I>`$OTqupJWM$&Q{RmaQA3mx*AepmQETA-pr~%eO5zEE&FcR>5B^`hqFi#c4ifu_ zy9v3b1gLv63hl%oViw__DwJz|fdAQt{{2ff)q})ievKo7RhhCdoj63uIhTtQs2(C@ z^Rb2ezY9RECTgX?B`1rMrgjo+c>k{^@UJkRJl;AF|pWq-EPO5^h(#&W^LR!G23-w zVSRO5qi03@7A)On*%93qwH#@%(Xt(F)z|Y|sWv5?h-V_nn06beyV01ooQQ5PRy^Su z9%-`Tx}KjlnP{7I&2O7*vnDgnbHmV$t`()Nuf@a}WW5QiTGQsn>^Q$8362}T@OvFe?Hy8>4C@sxIkLRC zZu4B3i|sUO&sb3%_bex7)yE|d{!~0uZ*0cfX02;Ajx@^rs4zgXH`CHho@uzOtTa|u zo%l)C96xI_Cs@^t$)=&WuCtsLofd8lu79$isq(6+-TjqJ z&6u%yG=Fn=BZ*COyl_($?L+TkIlF?J6%@Yk(D|)r!4jRnq8^2H6Qivx|yq` e>GZLhwot0Ic6IvgTHbSCT|O==U3TSbdH)0b)L!xc diff --git a/languages/wc-calypso-bridge-nl_NL.po b/languages/wc-calypso-bridge-nl_NL.po index 21a32e1b..eae623a8 100644 --- a/languages/wc-calypso-bridge-nl_NL.po +++ b/languages/wc-calypso-bridge-nl_NL.po @@ -2,7 +2,7 @@ # This file is distributed under the same license as the WooCommerce - Calypso Bridge package. msgid "" msgstr "" -"PO-Revision-Date: 2023-04-13 23:54:05+0000\n" +"PO-Revision-Date: 2023-09-27 14:10:08+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -11,19 +11,143 @@ msgstr "" "Language: nl\n" "Project-Id-Version: WooCommerce - Calypso Bridge\n" -#: src/welcome-modal/index.js:100 +#: includes/class-wc-calypso-bridge-setup.php:284 +msgctxt "Page slug" +msgid "refund_returns" +msgstr "terugbetalen_retournering" + +#: includes/class-wc-calypso-bridge-setup.php:283 +msgctxt "Page slug" +msgid "my-account" +msgstr "mijn-account" + +#: includes/class-wc-calypso-bridge-setup.php:282 +msgctxt "Page slug" +msgid "checkout" +msgstr "afrekenen" + +#: includes/class-wc-calypso-bridge-setup.php:281 +msgctxt "Page slug" +msgid "cart" +msgstr "winkelmand" + +#: includes/class-wc-calypso-bridge-setup.php:280 +msgctxt "Page slug" +msgid "shop" +msgstr "winkel" + +#: includes/class-wc-calypso-bridge-fse.php:52 +msgctxt "Template name" +msgid "Blog Home" +msgstr "Blog home" + +#: src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "" + +#: src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "" + +#: src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "" + +#: src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "" + +#: includes/templates/html-admin-page-addons-landing-page.php:27 +msgid "Browse Extensions" +msgstr "Door extensies bladeren" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:95 +msgid "Add your products. Show off your products or services and get ready to start selling – add your product info, images, and descriptions." +msgstr "" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:89 +msgid "Import your products. Show off your products or services and get ready to start selling – import your existing product info, images, and descriptions." +msgstr "" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:79 +msgid "Add products" +msgstr "Producten toevoegen" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:76 +msgid "Import products" +msgstr "Producten importeren" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:66 +msgid "Add your products" +msgstr "" + +#: includes/tasks/class-wc-calypso-task-headstart-products.php:63 +msgid "Import your products" +msgstr "" + +#: includes/tasks/class-wc-calypso-task-appearance.php:59 +msgid "Choose theme" +msgstr "" + +#: includes/tasks/class-wc-calypso-task-appearance.php:38 +msgid "Choose a theme that best fits your brand's look and feel, then make it your own. Change the colors, add your logo, and create pages." +msgstr "" + +#: includes/tasks/class-wc-calypso-task-appearance.php:29 +msgid "Choose your theme" +msgstr "Kies je thema" + +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 +#: src/index.js:189 +msgid "Plugins" +msgstr "Plugins" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:388 +msgid "Restore" +msgstr "Herstellen" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "\"Things to do next\"" +msgstr "" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:380 +msgid "Setup task list" +msgstr "" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the \"Things to do next\" Task List." +msgstr "" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:379 +msgid "Restore the visibility of the primary onboarding Task List." +msgstr "" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:310 +msgid "Use these options to restore the visibility of the onboarding Task Lists in the WooCommerce Home." +msgstr "" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:308 +msgid "Onboarding" +msgstr "Onboarding" + +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:187 +msgid "A custom navigation experience that is optimized for selling." +msgstr "" + +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Dingen voor elkaar krijgen met WooCommerce gaat nu nog sneller. Krijg meer informatie over onze nieuwe manier van navigeren, of ga verder en ontdek het zelf." -#: src/welcome-modal/index.js:93 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Beweeg sneller met onze nieuwe manier van navigeren" -#: src/welcome-modal/index.js:73 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Krijg elke keer dat je terugkeert naar je WordPress.com-dashboard tips en inzichten met betrekking tot de prestaties van je winkel." -#: src/welcome-modal/index.js:70 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Maak kennis met je nieuw startpagina" @@ -79,7 +203,7 @@ msgstr "Gegevens voor directe bankoverschrijving toegevoegd" msgid "Please enter an account number or IBAN" msgstr "Voer een rekeningnummer of IBAN in" -#: src/payment-gateway-suggestions/index.js:279 +#: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Alleen beheerders en winkelmanagers kunnen bestellingen plaatsen tijdens de gratis proefversie. Als je klaar bent om betalingen te accepteren van klanten, {{link}}werk je je abonnement bij naar een betaald abonnement{{/link}}." @@ -96,7 +220,7 @@ msgid "Try one of the alternative payment providers." msgstr "Probeer een van de andere betaalproviders." #: src/payment-gateway-suggestions/index.js:232 -#: src/payment-gateway-suggestions/index.js:304 +#: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Andere betaalproviders" @@ -140,24 +264,24 @@ msgstr "Door WooCommerce Payments te gebruiken ga je ermee akkoord dat je bent g msgid "Get ready to accept payments" msgstr "Betalingen accepteren" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:132 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Ja, reken op mij!" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:114 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Creëer een betere WooCommerce" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:55 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Er is een probleem opgetreden met het updaten van je voorkeuren" -#: src/payment-gateway-suggestions/components/Setup/Setup.js:122 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configureer je %(title)s-account" #. translators: %s = title of the payment gateway to install -#: src/payment-gateway-suggestions/components/Setup/Setup.js:90 +#: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "%s installeren" @@ -199,75 +323,75 @@ msgstr "Configuratie voltooien" msgid "Enable" msgstr "Inschakelen" -#: src/launch-store/index.js:387 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Toch lanceren" -#: src/launch-store/index.js:377 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Een aantal dingen die je voor lancering van winkel moet controleren" -#: src/launch-store/index.js:374 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Voor lancering" -#: src/launch-store/index.js:313 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Kies een adres voor je nieuwe website of draag een domein dat je al hebt over." -#: src/launch-store/index.js:309 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Producten vermelden" -#: src/launch-store/index.js:305 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Begin met verkopen door producten of diensten aan je winkel toe te voegen. Je kunt producten handmatig aanmaken, of ze importeren uit een bestaande winkel." -#: src/launch-store/index.js:304 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Je producten vermelden" -#: src/launch-store/index.js:296 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Bied je klanten een eenvoudige en handige betaalmethode! Stel een (of meer!) van onze snelle en veilige online of fysieke betaalmethodes in." -#: src/launch-store/index.js:295 src/launch-store/index.js:300 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Verdien geld" -#: src/launch-store/index.js:257 src/launch-store/index.js:396 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Dit kan altijd teruggedraaid worden via instellingen." -#: src/launch-store/index.js:243 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Tijd voor een feestje: je bent klaar om je winkel te lanceren! Woo!" -#: src/launch-store/index.js:237 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Klaar om je winkel te lanceren?" -#: src/launch-store/index.js:203 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Van gedachten veranderd? Je kunt je winkel weer op privé zetten door je privacyinstellingen bij te werken." -#: src/launch-store/index.js:197 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Bekijk je winkel" -#: src/launch-store/index.js:177 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Gefeliciteerd met het lanceren van je WooCommerce-winkel. Neem de tijd om dit te vieren en deel het goede nieuws!" -#: src/launch-store/index.js:173 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! Goed gedaan!" -#: src/launch-store/index.js:137 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Je winkel lanceren" -#: src/launch-store/index.js:67 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Gekopieerd" @@ -279,20 +403,20 @@ msgstr "Druk deze banner voor de gratis proefversie weg." msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Dit is je gratis proefwinkel waar je kunt ontdekken wat er allemaal beschikbaar is! Om meer te leren over de proefversie, klik op 'Meer informatie'." -#: src/free-trial/tax/components/location.js:53 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Er is een probleem met het opslaan van je winkellocatie" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:49 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Door op 'Betalingen testen' te klikken, ga je akkoord met onze {{tosLink}}Servicevoorwaarden{{/tosLink}}" -#: src/free-trial/fills/task-headers/woocommerce-payments.js:42 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Zet je betalingen kracht bij met een simpele alles-in-één optie. Verifieer je bedrijfsgegevens om te beginnen met transacties testen met WooCommerce Payments." #: src/free-trial/fills/task-headers/payments.js:50 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:71 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Testbetalingen" @@ -301,76 +425,71 @@ msgid "Give your customers an easy and convenient way to pay! Set up and test so msgstr "Bied je klanten een eenvoudige en handige betaalmethode! Stel een aantal van onze snelle en veilige online en fysieke betaalmethodes in en test ze." #: src/free-trial/fills/task-headers/payments.js:34 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:36 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Het is tijd om de betalingen te testen" #: src/free-trial/fills/task-headers/payments.js:22 -#: src/free-trial/fills/task-headers/woocommerce-payments.js:24 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Afbeelding betaling" -#: assets/scripts/free-trial-wc-payments.js:76 +#: assets/scripts/free-trial-wc-payments.js:93 msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "Je bent er klaar voor om de functies en voordelen van WooCommerce Payments te testen" -#: assets/scripts/free-trial-wc-payments.js:62 +#: assets/scripts/free-trial-wc-payments.js:79 msgid "You’re only steps away from getting ready to be paid" msgstr "Nog maar een paar stappen en je kunt betaald worden" -#: assets/scripts/free-trial-wc-payments.js:39 -msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a pain plan." -msgstr "Aanbetalingen zijn niet beschikbaar tijdens de proefperiode. Om echte transacties te kunnen verwerken en betalingen te kunnen ontvangen, werk je je abonnement bij naar een betaald abonnement." +#: assets/scripts/free-trial-wc-payments.js:49 +msgid "Deposits are not available during the trial period. To start processing real transactions and receive payments and payouts, upgrade to a paid plan." +msgstr "" -#: assets/scripts/free-trial-wc-payments.js:31 -msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." -msgstr "Alleen beheerders en winkelmanagers kunnen bestellingen plaatsen tijdens de gratis proefversie. Als je klaar bent om betalingen te accepteren van klanten, werk je je abonnement bij naar een betaald abonnement." +#: assets/scripts/free-trial-wc-payments.js:41 +msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." +msgstr "" -#: includes/templates/html-admin-page-addons-landing-page.php:85 +#: includes/templates/html-admin-page-addons-landing-page.php:77 msgid "Tips, tricks, and ecommerce inspiration from our blog." msgstr "Tips, trucs en e-commerce-inspiratie van ons blog." -#: includes/templates/html-admin-page-addons-landing-page.php:83 -#: includes/templates/html-admin-page-addons-landing-page.php:87 +#: includes/templates/html-admin-page-addons-landing-page.php:75 +#: includes/templates/html-admin-page-addons-landing-page.php:79 msgid "Get inspired" msgstr "Laat je inspireren" -#: includes/templates/html-admin-page-addons-landing-page.php:73 +#: includes/templates/html-admin-page-addons-landing-page.php:65 msgid "Discover collections" msgstr "Collecties ontdekken" -#: includes/templates/html-admin-page-addons-landing-page.php:71 +#: includes/templates/html-admin-page-addons-landing-page.php:63 msgid "Quickly get started with our curated extension collections." msgstr "Ga snel van start met onze samengestelde extentiecollecties." -#: includes/templates/html-admin-page-addons-landing-page.php:69 +#: includes/templates/html-admin-page-addons-landing-page.php:61 msgid "Curated collections" msgstr "Samengestelde collecties" -#: includes/templates/html-admin-page-addons-landing-page.php:57 +#: includes/templates/html-admin-page-addons-landing-page.php:49 msgid "Add extra features and functionality, or integrate with other platforms and tools." msgstr "Voeg extra functies toe of integreer met andere platformen en tools." -#: includes/templates/html-admin-page-addons-landing-page.php:55 +#: includes/templates/html-admin-page-addons-landing-page.php:47 msgid "Customize and extend" msgstr "Personaliseren en uitbreiden" -#: includes/templates/html-admin-page-addons-landing-page.php:43 -msgid "Do more with your store – add extensions" -msgstr "Doe meer met je winkel: voeg extensies toe" - -#: includes/templates/html-admin-page-addons-landing-page.php:31 -#: includes/templates/html-admin-page-addons-landing-page.php:59 +#: includes/templates/html-admin-page-addons-landing-page.php:51 msgid "Browse extensions" msgstr "Door extensies bladeren" -#: includes/templates/html-admin-page-addons-landing-page.php:23 -msgid "Customize your store to work perfectly for your business, with Woo extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your business goals. Curious about what’s available? Browse our extensions marketplace." -msgstr "Personaliseer je winkel met Woo-extensies zodat die perfect werkt voor jouw bedrijf. Werk bij naar een betaald abonnement om toegang te krijgen tot honderden tools en functies die je kunnen helpen bij het behalen van je zakelijke doelen. Nieuwsgierig naar wat er allemaal beschikbaar is? Blader door ons extensie-aanbod." - #: includes/templates/html-admin-page-addons-landing-page.php:19 -#: includes/templates/html-admin-page-addons-landing-page.php:36 -#: includes/templates/html-admin-page-addons-landing-page.php:39 +msgid "Customize your store to work perfectly for your business, with WooCommerce Extensions. Upgrade to a paid plan to gain access to hundreds of tools and features that can help you achieve your goals. Curious about what’s available? Browse our Extensions Marketplace." +msgstr "" + +#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/templates/html-admin-page-addons-landing-page.php:32 +#: includes/templates/html-admin-page-addons-landing-page.php:35 msgid "Take your store to the next level, with extensions" msgstr "Til je winkel naar een hoger niveau met extensies" @@ -385,7 +504,7 @@ msgstr "Tijd voor een feestje! Klaar om je winkel te lanceren?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 #: includes/tasks/class-wc-calypso-task-launch-site.php:68 -#: src/launch-store/index.js:150 +#: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lanceer je winkel" @@ -394,6 +513,8 @@ msgid "You've already launched your store" msgstr "Je hebt je winkel al gelanceerd" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 +#: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minuten" @@ -407,7 +528,7 @@ msgstr "Domein" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 #: includes/tasks/class-wc-calypso-task-add-domain.php:94 -#: src/launch-store/index.js:317 src/task-headers/add-domain.js:31 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 #: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Een domein toevoegen" @@ -428,18 +549,15 @@ msgstr "Om je klanten een soepele ervaring te bieden bij de kassa, hebben we jou msgid "Meet our new, customizable checkout" msgstr "Maak kennis met onze nieuw aanpasbare afrekenomgeving" -#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:58 +#: includes/free-trial/class-wc-calypso-bridge-free-trial-plan-picker-banner.php:77 msgid "" "\n" -"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please upgrade to a paid plan.\n" -"\t\t" -msgstr "" -"\n" -"\t\t\tOp dit moment ben jij de enige die je winkel kan zien. Om je winkel beschikbaar te maken voor iedereen, werk je je abonnement bij naar een betaald abonnement.\n" +"\t\t\tAt the moment you are the only one who can see your store. To make your store available to everyone, please .\n" "\t\t" +msgstr "\n" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 -#: includes/templates/html-admin-page-addons-landing-page.php:28 +#: includes/templates/html-admin-page-addons-landing-page.php:24 msgid "Upgrade now" msgstr "Upgrade nu" @@ -451,15 +569,16 @@ msgstr "Tijdens de proefperiode kun je alleen testbestellingen plaatsen! Om best msgid "Start selling to everyone" msgstr "Begin met verkopen aan iedereen" -#: includes/class-wc-calypso-bridge-setup.php:327 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Mijn account" -#: includes/class-wc-calypso-bridge-setup.php:325 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "contact" -#: includes/class-wc-calypso-bridge-setup.php:316 +#: includes/class-wc-calypso-bridge-fse.php:53 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Home" @@ -471,7 +590,8 @@ msgstr "Deze website is al gelanceerd" msgid "You don't have permissions to launch this site" msgstr "Je hebt geen rechten om deze website te lanceren." -#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:368 +#. translators: %s is the plans URL +#: includes/class-wc-calypso-bridge-free-trial-payment-restrictions.php:369 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, upgrade to a paid plan." msgstr "Alleen beheerders en winkelmanagers kunnen bestellingen plaatsen tijdens de gratis proefversie. Als je klaar bent om betalingen te accepteren van klanten, werk je je abonnement bij naar een betaald abonnement." @@ -492,61 +612,60 @@ msgstr "Je bestelling kon niet geplaatst worden. Afrekenfuncties zijn momenteel msgid "This store is not ready to accept orders. Checkout functionality is currently enabled for preview purposes only." msgstr "Deze winkel is niet klaar om bestellingen te ontvangen. Afrekenfuncties zijn momenteel alleen ingeschakeld voor voorbeeldweergaven." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Jetpack Stats" msgstr "Jetpack Statistieken" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:475 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 msgid "Jetpack Status" msgstr "Jetpack-status" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:454 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 msgid "Anti-Spam" msgstr "Anti-spam" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 msgid "Discover" msgstr "Ontdek" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Beheren" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "WooCommerce Subscriptions" msgstr "WooCommerce Subscriptions" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:295 -#: includes/templates/html-admin-page-addons-landing-page.php:15 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 msgid "Extensions" msgstr "Uitbreidingen" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 msgid "Customers" msgstr "Klanten" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 msgid "Legacy Reports" msgstr "Legacy verslagen" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:274 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 msgid "WooCommerce Status" msgstr "WooCommerce-status" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 msgid "WooCommerce Settings" msgstr "WooCommerce-instellingen" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:265 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 msgid "Orders" msgstr "Bestellingen" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:182 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 msgid "My Home" msgstr "Mijn startpagina" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 msgid "Feedback" msgstr "Feedback" @@ -554,7 +673,7 @@ msgstr "Feedback" msgid "Save big with WooCommerce Payments" msgstr "Bespaar geld met WooCommerce Payments" -#: src/payment-gateway-suggestions/components/WCPay/Modal.js:131 +#: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Nee, liever niet" @@ -562,10 +681,14 @@ msgstr "Nee, liever niet" #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 -#: src/welcome-modal/index.js:56 +#: src/welcome-modal/index.js:59 msgid "Get started" msgstr "Aan de slag" +#: includes/class-wc-calypso-bridge-woocommerce-admin-features.php:186 +msgid "Navigation" +msgstr "Navigatie" + #. Author of the plugin msgid "Automattic" msgstr "Automattic" @@ -607,7 +730,7 @@ msgstr "Bestelgegevens handmatig naar klant verzonden." msgid "Invalid order ID." msgstr "Ongeldige bestellings-ID." -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:270 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "WooCommerce" @@ -742,7 +865,7 @@ msgstr "WooCommerce kan niet gedeactiveerd worden in het eCommerce abonnement." msgid "Store" msgstr "Winkel" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:477 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 msgid "Stats" msgstr "Statistieken" @@ -765,6 +888,11 @@ msgstr "WooCommerce-extensies" msgid "Extensions %s" msgstr "Extensies %s" +#. translators: %1$s is replaced with a link to WooCommerce.com +#: includes/class-wc-calypso-bridge-footer-credits.php:66 +msgid "Powered by %1$s" +msgstr "" + #: includes/class-wc-calypso-bridge-themes-setup.php:129 msgid "Built with Storefront & WordPress.com" msgstr "Gecreëerd met Storefront en WordPress.com" diff --git a/languages/wc-calypso-bridge-pt_BR.mo b/languages/wc-calypso-bridge-pt_BR.mo index f0a479839af1f82d0674176f09544481f68f03b2..992ac9e6c9f3e3beb7d2d9505f155868f16eac86 100644 GIT binary patch delta 5191 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 fx$a6zYHh2neQ4`#?QQ%0{r_w4v(K3c z!mao7>75Tdzq9w*d+oLU>;GQ=b$I0IOMW8a@7$xJ=vm+;$3@ZYeBSbz|G)OIKK%z7MuZTB5DV`1zgYh>%d*$XTde#DKs(yZULVL&VVO? zT~O`4HeA0Gc@_NFALZAflImmTJWjhTR@HTJ>X^F2SL5}tDxxgx8eNg zbNu>gpxRvlsz1*KF9fdze;zyp*1(m|j-ox_+rb;bzW{#;+!9C8Mc}`I4}s5N5R>4a zfZM@M%bZSc1yAMtKJazmuY&r1{9LEk+d%d6ec%%CqoCS-2pk2!29ALzoaf_P4{AJD zfid_}a0+|{`0L=;K+*L>%N;)giVr>xYP_EUj{&~~o&^3bsQLT`sCJ|Cqlh6!r-GvA zC7}9$rOuCvq6zSH&Tm{1MZW@e!Byaz3;aC^sCM>(dhV6r4)88et_z3t0@HB|< zM(}+gm!k7w{w?4hQ1`tTJQ4f~cpUgBsQ3RhxCHz@h)A0-YW~h#a1f|}Rw zgO`F&;vZN&x(w9wFAL`xsQ2FmiZ1U5PX#{|u745~JwFF(9)25?-gps2*K=*~XTd|@ zJhs!P3 zKL?)A`Defw{7X>%KW?4(_hj%+&d&lhpZ9_q|0h7*_ebDq;Gcn)gZ~V^61UhtFP z=RwKG>#ubE_f}AJ_#06Di#GW4r-N#5IVk#E3c}LS3qe#%bO=N>Mu)@sJg9m5D^PU! z4)|*DRWERTbks&{3g>5mYHuW*KNnof`4yn}Gy^r?uLi|`?*=uG_kzy^e-{+J{tjen zqcahP^T6xC72q8BI`F4J_4mASm)|`gk3_En)!yg8ec*S&7l1c!j-oe%hrySEs}S~c z!8^e=_)$=DA8*CZ9)-Ms;)f4k<#hTjQ0@K+_-yd_tNr;=Q1f>!_yX`oFah5WioVe{ z=d+W*r*Jw7t^h9$cq4c`=eL6+;9a1`^^4$1;5R_E|2&4)i;8sxY zyBQQ6+8`nmeGEJu{3duIc+`(X5v(0u1ZqA~P<$~5t^wZ+-VJ^Vi1_r zjpy^=soi_-V>EI_pJ@=J>-vaghk{kRz zr-7*QXf^nGum;w^RWEXX=Wa0N{CnVM!5d%fdM17ewx08sff;xuL}7^0N5B#A=$E

QI`As+3h*@`q8EJ%TnaAvQTIDe1kdLDTyP(_ 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 Hh3G#3_s}$@ diff --git a/languages/wc-calypso-bridge-pt_BR.po b/languages/wc-calypso-bridge-pt_BR.po index 71f00417..7e76a4bb 100644 --- a/languages/wc-calypso-bridge-pt_BR.po +++ b/languages/wc-calypso-bridge-pt_BR.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Início do blog" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Contrate um especialista" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "Não encontrou o que você está procurando? Contrate uma de nossas agências especializadas. Desde novas extensões à elaboração de lojas completas, nossos especialistas do Woo ajudam você a criar a loja dos seus sonhos." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "Quer expandir a funcionalidade de comércio eletrônico da sua loja? O Woo Marketplace tem centenas de extensões confiáveis desenvolvidas especificamente para sua loja." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "Desde ferramentas de SEO a funcionalidades em vários idiomas, os plugins do WordPress permitem personalizar seu site para fazer o que você precisa." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Personalize o seu site" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Adicione mais funcionalidades ao seu site com apenas um clique. Faça upgrade para um plano pago e acesse milhares de plugins gratuitos e pagos do WordPress. Quer descobrir o que é possível?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "Faça do seu jeito" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Conheça as extensões" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Amplie sua loja" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Procurar plugins" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "Com os plugins, tudo é possível" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Obtenha funcionalidades melhoradas e correções mais rápidas compartilhando dados não confidenciais por meio do {{link}}rastreamento de uso{{/link}}, que nos mostra como o WooCommerce é usado. Nenhum dado pessoal é rastreado ou armazenado." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Crie cartões-presente digitais" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Comece a vender e aceitar cartões-presente digitais para aumentar a fidelidade dos clientes, gerar mais receita e apresentar sua loja a novos compradores." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Aumente a fidelidade dos clientes com cartões-presente" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Exiba seus produtos para milhões de compradores engajados que navegam pelo TikTok, Pinterest e plataformas Meta com a publicidade em redes sociais." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Alcance mais clientes usando redes sociais" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Alcance compradores ativos em todo o Google com catálogos de produtos e anúncios que você pode criar e gerenciar diretamente no seu painel." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Anuncie seus produtos no Google" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "Experimente o AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Aumente as vendas e crie fidelidade por meio de mensagens de marketing automatizadas que respondem aos dados de compra do seu cliente." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Automatize seu marketing" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Descubra nossas ferramentas de marketing integradas para alcançar mais clientes e aumentar as vendas" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Expanda seu negócio com centenas de extensões" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Alcance mais clientes e expanda seus negócios com as nossas ferramentas integradas de marketing e de publicidade. Faça upgrade para um plano pago para desbloquear nossas eficientes ferramentas de marketing e comece a expandir seu negócio hoje mesmo!" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "Comece a expandir seus negócios" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Ilustração de aparência" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Ilustração de produtos" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Está tudo muito bom, continue assim!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Oba! Chegamos à última etapa. Bom trabalho" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Apenas mais algumas tarefas para concluir." - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Boas-vindas à sua loja do Woo Express" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "Boas-vindas a %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d de %2$d tarefas concluída(s)." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "Está quase tudo pronto para você começar a vender! Siga estes passos para configurar sua loja de teste." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Ocultar lista de configuração" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "O processo de configuração da loja atende às minhas necessidades." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "A configuração da loja é fácil de concluir." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Agradecemos seu feedback!" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "Como foi sua experiência?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Esconder isso" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Mostrar lista de tarefas de configuração" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Opções da lista de tarefas" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "Parabéns! Tire um momento para comemorar. E, quando quiser lançar sua loja, você só precisa fazer upgrade para um plano pago. Isso também desbloqueará as duas próximas tarefas na lista de tarefas." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "Oba! Sua loja de teste foi configurada." - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "Você está indo bem! Um coisa a menos na sua lista de afazeres ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Ocorreu um erro ao configurar impostos automatizados. Tente novamente." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "Durante o período de teste gratuito, você pode definir as configurações de imposto sobre vendas, mas não recebê-lo. {{br/}}Para começar a vender produtos, {{link}}faça upgrade agora mesmo{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "Eu não cobro impostos sobre vendas" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Configurar impostos manualmente" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Escolher um parceiro fiscal" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "O WooCommerce Tax pode automatizar os cálculos de impostos sobre vendas para você." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Automatizar impostos" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Automatizar impostos" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Vá para a tela de configurações de impostos para configurá-los" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Configurar impostos" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "O endereço no qual sua empresa opera" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Definir localização da loja" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Selecione um país/região" - -#: build/index.js:1 -msgid "Post code" -msgstr "CEP" - -#: build/index.js:1 -msgid "Address" -msgstr "Endereço" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "País" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "Ao clicar em \"Configurar\", você ativa os impostos e os cálculos. Saiba mais {{link}}aqui{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "Configurar" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Prossiga com a configuração" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "Ao instalar o WooCommerce Tax e o Jetpack, você concorda com os {{link}}Termos de serviço{{/link}}." - -#: build/index.js:1 -msgid "100% free" -msgstr "100% grátis" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "Com tecnologia {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Conformidade com nexus econômico {{strong}}único{{/strong}}" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Cálculo de imposto sobre vendas em tempo real" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Ideal para novas lojas" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Obtenha mais vendas" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Desbloqueie novas funcionalidades e comece a vender ao fazer upgrade para um plano pago" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "No momento, você está no teste gratuito. Para ter acesso a toda gama de funcionalidades, faça upgrade para um plano pago." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Ilustração de navegação modal de boas-vindas 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Ilustração de navegação modal de boas-vindas 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "Configuração obrigatória" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Obtenha e gerencie pagamentos recorrentes e receba depósitos automáticos na conta bancária indicada." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Venda para mercados internacionais e aceite mais de 135 moedas com métodos de pagamento locais." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Permita que seus clientes paguem como preferirem, incluindo pagamentos com cartão de débito e crédito, Apple Pay, Sofort, SEPA, iDeal e muito mais." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Os métodos de pagamento aceitos incluem:" - -#: build/index.js:1 -msgid "& more." -msgstr "e muito mais." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "Navegar pelas extensões" @@ -417,7 +99,7 @@ msgstr "Escolha o tema" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Plugins" @@ -453,27 +135,27 @@ msgstr "Integração" msgid "A custom navigation experience that is optimized for selling." msgstr "Uma experiência de navegação personalizada e otimizada para vendas." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Fazer acontecer com o WooCommerce agora é muito mais rápido. Leia mais sobre nossa nova navegação ou explore por conta própria." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Acelere o seu avanço com a nossa nova navegação" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Confira as dicas e informações sobre o desempenho da sua loja sempre que acessar o painel do WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Conheça sua nova Página inicial" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Escolha um novo endereço de site para sua loja ou transfira o que você já possui." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Adicionar uma ilustração de domínio" @@ -521,53 +203,43 @@ msgstr "Detalhes de transferência bancária direta adicionados" msgid "Please enter an account number or IBAN" msgstr "Digite um número de conta ou IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Somente administradores e gerentes de loja podem fazer pedidos durante o período de teste gratuito. Se sua loja já estiver pronta para aceitar pagamentos de clientes, {{link}}faça upgrade para um plano pago{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Formas de pagamento offline" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Leia mais" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Experimente uma das alternativas de provedor de pagamento." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Outros provedores de pagamento" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Dê aos clientes mais opções de pagamento." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Opções adicionais de pagamento" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Preparar-se para aceitar pagamentos online" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Escolher um provedor de pagamento" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Ocorreu um erro ao se conectar ao WooCommerce Payments. Tente novamente ou se conecte mais tarde nas configurações da loja." @@ -584,196 +256,180 @@ msgstr "Ao aceitar compartilhar {{link}}dados de uso{{/link}} não pessoais, voc msgid "Help us build a better WooCommerce Payments experience" msgstr "Queremos sua ajuda para melhorar a experiência com o WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Ao usar o WooCommerce Payments, você concorda em aderir aos nossos {{tosLink}}Termos de Serviço{{/tosLink}} e confirma que leu a nossa {{privacyLink}}Política de Privacidade{{/privacyLink}}. " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Prepare-se para aceitar pagamentos" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Sim, conte comigo!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Crie um WooCommerce melhor" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Houve um problema ao atualizar suas preferências" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Configure sua conta %(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Instalar %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Para gerenciar as configurações deste portal de pagamentos, clique no botão abaixo" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Conectar" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Continuar" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ocorreu um problema ao salvar suas configurações de pagamento" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s configurado com sucesso" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Recomendado" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Parceiro local" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Concluir configuração" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Ativar" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lançar mesmo assim" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Algumas coisas que você deve verificar antes de lançar sua loja" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Antes de lançar" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Escolha um endereço para o seu novo site ou transfira um domínio que você já possui." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Listar produtos" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Adicione produtos ou serviços à loja para começar a vender. Crie produtos manualmente ou importe-os de uma loja existente." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Liste seus produtos" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Ofereça aos seus clientes uma maneira fácil e conveniente de pagar. Configure uma ou mais das nossas rápidas e seguras formas de pagamento online ou presencial." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Receba pagamentos" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Você pode reverter quando quiser em Configurações." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Sua loja está pronta para ser lançada. É hora de comemorar! Eba!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Pronto para lançar sua loja?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Mudou de ideia? Se quiser tornar sua loja privada novamente, atualize as configurações de privacidade." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Visualizar sua loja" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Parabéns pelo lançamento da sua loja com o WooCommerce! Agora é hora de comemorar e espalhar a novidade." -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Eba! Você conseguiu!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Como lançar sua loja" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Copiado" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Ignore este banner informacional sobre o teste gratuito." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Esta é sua loja de teste gratuito. Você pode começar a explorar o que está disponível. Para saber mais sobre o teste gratuito, clique em \"Leia mais\"." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Ocorreu um problema ao salvar a localização da sua loja" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Ao clicar em \"Testar pagamentos\", você concorda com os {{tosLink}}Termos de Serviço{{/tosLink}}." -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Turbine seus pagamentos com uma opção simples e completa. Verifique os detalhes do seu negócio para começar a testar transações com o WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Testar pagamentos" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Ofereça aos seus clientes uma maneira fácil e conveniente de pagar. Configure e teste algumas das nossas rápidas e seguras formas de pagamento online ou presencial." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Chegou a hora de testar os pagamentos" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ilustração de pagamento" @@ -834,7 +490,6 @@ msgstr "Deixe sua loja com a cara dos seus negócios usando as extensões do Woo #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Eleve sua loja a um novo patamar com as extensões" @@ -848,7 +503,7 @@ msgstr "É hora de comemorar! Tudo pronto para lançar sua loja?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lance sua loja" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Você já lançou sua loja" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minutos" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Domínio" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Adicionar um domínio" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Faça o upgrade agora" @@ -918,16 +572,16 @@ msgstr "Durante o período de teste gratuito, você só pode fazer pedidos de te msgid "Start selling to everyone" msgstr "Comece a vender para todo mundo" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Minha conta" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "contato" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Inicial" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Descubra" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Gerenciar" @@ -1023,15 +676,11 @@ msgstr "Feedback" msgid "Save big with WooCommerce Payments" msgstr "Economize muito com WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Não, obrigado" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Loja" msgid "Stats" msgstr "Estatísticas" -#: build/index.js:1 -msgid "City" -msgstr "Cidade" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Continuar" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Saiba mais." diff --git a/languages/wc-calypso-bridge-ru_RU.mo b/languages/wc-calypso-bridge-ru_RU.mo index cdac7ff5e510d764c486879809fb0a2804ce3e23..2abcb78f54f7909672e9323d7a915d43e4a0da28 100644 GIT binary patch delta 5232 zcmYk<3s_WT9>?+b45Q)=Lj^?yM!bulxC*G4c*jJM@=_wA;((w637D8RKp5V&Uhk!* zWtMKOa-_UsW*1AeL3DS^%{A>}ZMAJZS(}x8|8tJd<9Yhc=Y8LqIp@8Obn~|3<4T9; zYHQ~v#nnJMlEaOa3Ne&QX(_Er9Sl^;#6#Ey-K~}CfTie<8?h$6mX5?> zJ50i6_%JrdEc^WeOrTzhfy$#)wXdMm+qQp4x$#ZxiGIP%0!HIxyoyJ#KTnCmZ*ew; zv}e|EDawG}$4b0mx6h?fW}*gVAa7w5&sUcyM58=424c{K8JLAnpiJ3y+pkfk{s&~W z)NN$alp|EB2nq3nU~k=B&=!{O9N;$N^T(qr}PI1MtQ zf1>QtFYNkHC~M`{*}8EM$_;y=d~N_H;7F7kE<@QfhfwZ!1*L;u+4bL$$yCkQu`h_dT{x7&ldDs_Om3(sJkUEk1+ zhf+`MZY{OPO+k91QEspuWn|ST9XXBiz)Q$RR$tlgJGhIiX&}n`G045u2yB9RxEdFt zEX^NwdjQkJ!BW9En609EQ($ANxhR{X66FRPFcG&RA5@o7IvCi?x?xY0jt)d8CL^n* z#^Z4;M1SlZWqp1C%J0Z1WHQtu>?G&^IlG}2oASnISdQNzCsP&nR;m%MLK*1>yS^9u zQ9ppvv8yO+ehWE~${B4^>l_}3emRIH2 zuE+bRzk%|_vnV6GgfbKV#n$NTZ_QLYjHe!p{79-?9EfEor|1~U+Sg$$UhmKRZ=}$c zBQOqMK?bjWLRrf$3@;nUpp5i2UefS$490k#md?m0;AQIjnP*vwGM*~m---cv-1Y;U zOZ_7}jl%~q|4S)2*0z7c<= zUX8N$uinqH;1}2t`wX@AK#GS#Ga8nm9K#hDitDim43fHpO-!GW%*PN(bt2 z9y8H&82 zG~b{+D1l+f5|p6a;5~d7n~t^ih8JZ|{0H0OA1F)J<^k)Mu@_3mCm~DYQ7b6O6m7xY z4yC-9L5F@%v36}TVjrsgDC`)!?qV?eOD0|^L_P}3JX0|iE zm-9aqJIeWYQ;;_*P)4{DW#m_|7JtI;@$iF6J%xK8Vl(o<-jg_rm^E1`mQ}5vVjZ^& zC?o$4<%h{{sj zp`7ypC?m|mI9!7y7h%*45R)ScEe35BRPRHu^ub1 zUxrewlB&TusAgEl&5Z$6SJ?F}D0|@;2IG0`g`e5&tukf(nSsbm{>s4vGx;+1nr&?| zGfSyQ`9dR}(gGht>2M`F(L{edg0dG*qjaDSop=TN;x&{t4|H3nDjwx?2i&Z`iw7Q~ zAzZ$YZH@R>lrOZ(vHsW`fTO9O!uHsBuC){q$Rwyllqueh(!n2b5Ju)&_sKw+i6=20 zH{)!cd%;6NrY3ft^*32E(pj|_lkpRjsqQx4`XlpElp9^bukcHZ#rg$S$NloHC2Wr} z!Z_qVHHsIR`okE3|3+D2&m9VEY}KtmDfX8t#b2-i*&nK|kh6+CSceI?3@=DKF2iRR zTBjg{U#qRuM-^MU`zqe1-k2Yi$I!8ee}FjNOOOMk5=xa?F6Vy@g+v-!FX2pLD#{PU zdOV0{(1pd1TRq=|a)TP%rc14#>^t90rjsUkCpA7Njr8p5ji{()k3d=CfT z#U!iuhzy{muZ5*U&);~Fb(70WI+3v?mIRQYM6OZ9B?Yci7V1fCMBX5>hh&{=$s8hA zQ*zQ*vVN$xP?k-2_u42E#Yt1I5?PzmF$!9OV~D54(-uHQzPKV;7?Eyj|{%Pm|T8J84Tw2>a5v!NB+TTs=;a z3fDX2HDAd(JqdO>9|w^8NCSD893pGTAmVw67fyoj$TY{llDk(c3Jb_Kvd?a8g7=dd z#7Vjmxt=2?Sx$0EB9UYIIw>SWNF>=$rW3j9Wd1u^W#5s@pgfwykOv6AA-=QQ59Qae zF}ZtE*2PxvCv8Z%9MnA&%E{r)$eSddJVoY{d#@rY zE$oH^I-~vhPDQS)g8b~wIDaYq*yNw@#?$|yUfd> z{)TQ6HeRm^%ht~DE@phV!_Ye;QW}*M<>u$;Lw$pFmg}s()~P|Cjl8LAIzO%Fbn$e| zcV`u=5e50hvuwGmn})(%_Z;(1*BOQ`?tVvC^=PF(>k-{}!K~bTHBxWr9;{P(l{@oi z&7QC4MWwYE<1TjP<`)&_(oY=_9i<2X6G=JA9+Mx&A(zOFkA+Nu9FXu95;7;0WiJY?v^q3`ImNjG%Gu%7y( zVN3O%;kV3>NBrMU-x%|_-j!UW`;48czZ|<<*FG@Hj2`!rp-acF*E1$;F{4t)IrO%) z$beXv_k{O|_hkK(^%dTOrt#oW!~FW8sfJ!XHO#y|<$s25@yKR9eVSLVN$;-Lrgt?@ zr{6Gi){H%7P3H54`H$J#40GR{&4#YeZmXwfH<%?khM}E#LxXmEk9ljor@Tk%%dpye z(0kHbYhKH{?9dJClFi8cD#O^Rzh4!qe<^6EuNJOqQcGWIyeD=2y0+Rc-=zbKf6+He z0`<&ATlLw}a2>d0hTgfP!K_?*#ZPCJ57mcW2-is!!RCsJGQ%vaY~wV~uS|6qyY;nY zA!fI=uRG0N&-`q(+~qya(@ozvSDR%UhZ}lCUK`zRbG0s5KE{mRKHSgPZ3gbzX_!ZM zpEtPeINkZhOXh*S`wjE<0Ge?KpkF zkpa#EPo#eh*a55nS;DCa@CNWa`WwJS;B(+uup5gMJ5Jh}&CMwcRDhkp6sQH)2jiPS z-f^~rOTfM0Pr-J5?Rz<}2mQCeGr>>5uHaC(xdWU8@{02;sC9o0va$0nIE4M3_Wdoz zqrlU7FaZ=H3j(|<7+(pV%=mh+BX}n$PQL-34So~U#&3d>)SrU>2?OkS4^Zn42Sw0C za3uRXi@9k4*MbqSWT4|*0&WAZ2LBU00M2$DXB7A^a36REY?Oj;gY&`j2U$sN1-sM# z4!8k43hMdH!B%2-fg*GVm~P9>Q`~6bec)*DH(&_tG{kav9w?6HfG&6?SO(q*{t)~P zDA9g<~T6vbO$BUvp{h$RsABzSqk=~ zfAw(3c?L{@W5BT^>_%Zw>s$xwy_>-Wpbv_n--05f^GHj`05C~^sO0|uH}^AeFF4^0 z$5{cs2(|}DAr{_s#(@&qm7r{(8ax$T1B&ol!4BZJK^gN?AWJ*XfKP){O6>T@pa>CF zn%_Ci4Tk9S0=3Wtup@X07ze}PEnp7316+n)CW3E)w}Cwn!|mV>kRfLnE-)Ls1k}6- zz|P>S;7Q;+pa}Q~YzwA8=LXj{PAMJs9&7u>pe9TP6$++-T4)I<5toA7!POwbbGnSP zl9>#4r9T@yA6yQO2fqP|(U-wf!4E+QNjskg109&97kh%*U<4>pp9hNKxuD!^Imkcf zF8*laAAnl$zrfSLe+K=|XF1M;^!tN2fO81MBb_%vsrGYlf|S%|0@06wvq3FzRnU)v zBESbFnVn#F@Y})oVNfD{0hB7TpyJ16$X)N%fRBS~!RNu@lWhM(Pz2ovHzQ;uhqyt# z&hJ1`*7Y2_P%luNp9zYvX`l#L0`>wcg6Hc%iFRx7{0R_;ah?TT@O@AWoHW@I+!fqJ zzb}}UP9Nn)64(!F;u~NO@OR+3;HTit-~>AIhJD}G^=4JyoyFgJqWTy4w zOF-UnHh^021#l(!2{;|Rc9!F80Urjh1jpd?gTYN;4fqr&|93AS?H1uRplsr?IaX4y zfLb^GHa7#gId!gGU^FNlE(WKASA$`2Cnym+7g}TM0-i{BG&mfb5a89|sq{C3#h?$0 zu|}{9_#UYB{|+Ldv~$8mR>T89>2^HW8@vG2hS!3UL=A}NID5gK;2*$|V9`9s!N8qS zpj6_4vW?Z?Sa1t?4|ojZpRLCa+lT%aQ9Hj+ z8bx$xU^F-!JRg*CT?cC8dJtE39sp(SzXc_cj<6>QO#`K}i@}mM7#}!<{=RBlmknPB z!}KS`?fm<}ar7SxF#QHMFEh{y7q|_46BHrdD$DT}uoDYy2PcA$CLjcS3q`)pybg$~ z3-}I5RCYcFrQ31WTgI*dPp6*(M}V8bzF;GW%F|Aco6i{dJNPpe{_ARMWdBizAu;|g zs24ilU`0L(4AHLyC87I3*}@+1G~TaSOSq-K9@n`QOxx6Zkr(9u z?{Fi^SJc}LcYvqR{}Cwf_&GQb{1}usbi2iJHUk_>|5C6mcsnT0w}2w}5GYCh0_;$P zwSyJ(PuyT75(m#=f9E!C)_~7~FyTzzXd_)C*pL1nL5c8W*bxDPK#6h@I1#J^C6NYD z5_ucMW1UX}T!LP&p#M0idF^kvH~}>NAK^wiz6G4jgl%`&Wbq;>_q=q(0>_}SNsL+3AWwLsR--~o&k2;g8VgM;ugdQ0T+TdgRkCc z`-|_gb^NckSvMPTH!j5d8$hY(BTyWD3bqAD__kgc4W3MYA}E4pfO@_NJQKVG#Q2AvsgQpMpOE7lZfQ zhhg&md*B81x8HA%VsC@J=$E9wVRbwkyqbYhP`dj*D9(C6U{x{~6vgYo)4=b5lfY-d zQa1Pm>`8z54#)X17z3w+XYaJ@)PZ{cF>nm{GN|Y2e{mxnPTOT;{5L`A_K#pGc=khf z!v{be#l8oA!1#fOt@ZETZ6)zDus`D;fD-wMk3a<26O^tu2G{@&r2hsuO#c75y>SM8 z)1L1y1TSa8gW$#Be}fTl_O~48AK-VvE5S#;O@TDQFNan1np|MlFg=0W-i$2ro5Km;zO-}saj*+~shPk#)knBNFa1OE!j zX2$K|bOV-y3^_%6u^DhLI1zje6vroL?7C+Jcr!SZ{he32nGOB}oC8kXXY>25U`P57 zf_=cpzyaX%pp54oQ2zco*ct56Xp`4aa2@>zKo{)yv{mhSU={sa!5-kpV0t7sC+$}# zgd6bZ;8WlRaN_}M?I$0!{rTVse2klndHGgGzih$x`Ijs+?4Fz?vci}R@jNWy$ zD`=BxYiPfswY(s67bDSN^mG=S#QhA~GTQ$H<8OnP(qO=OjwXZDRd1p2cNTZ;Swq(g zw13jBqTystf5xTWk7zRNFzuMcbUIBI{6pIHvtQ#&QrJ)z=qR)Qy8)NK;Bb9>qjd$&*1-Ib3+XW{xP_p2wp>z zc+RK2Pt!FRVmk)}kEMUM8MUX|0gO+h{~~Q=FrJ4-ZZ_mQpy~l#S8IbIwC8Dmrmd%i zXxnH6D(3{6t^{o{?FriBw2my$72HkJ^|1x#XP`&>f;NS=iWZ~&jy8<;C)$r`CA4#B z%0D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 BUe5pk diff --git a/languages/wc-calypso-bridge-ru_RU.po b/languages/wc-calypso-bridge-ru_RU.po index 4af07ca6..74e97eb8 100644 --- a/languages/wc-calypso-bridge-ru_RU.po +++ b/languages/wc-calypso-bridge-ru_RU.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Главная страница блога" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Нанять эксперта" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "Не можете найти то, что вам нужно? Воспользуйтесь услугами одного из наших экспертных агентств! Специалисты из Woo Experts помогут создать магазин вашей мечты: всё — от новых расширений до создания с нуля «под ключ»." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "Хотите расширить функциональность вашего магазина? На Woo Marketplace вы найдёте сотни проверенных расширений, созданных специально для вашего магазина." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "От инструментов поисковой оптимизации до поддержки различных языков: плагины WordPress помогут вам настроить сайт именно так, как вы хотите." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Настройка веб-сайта" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Добавляйте дополнительные функции и возможности одним нажатием кнопки. Перейдите на платный тарифный план и получите доступ к тысячам платных и бесплатных плагинов WordPress . Хотите узнать, где границы возможного?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "Делайте всё по-своему" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Знакомьтесь с расширениями" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Развивайте свой магазин" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Плагины" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "С помощью плагинов возможно всё" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Получайте улучшенные функции и ускоряйте исправления, обмениваясь неконфиденциальными данными через {{link}}средство отслеживания использования{{/link}}, которое показывает, как используется WooCommerce. Никакие персональные данные не отслеживаются и не хранятся." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Создавайте цифровые подарочные карты" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Продавайте и принимайте цифровые подарочные карты, чтобы повысить лояльность клиентов, увеличить доход и привлечь новых клиентов в ваш магазин." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Подарочные карты помогают повысить лояльность клиентов" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "С помощью рекламы в социальных сетях представьте ваши товары миллионам заинтересованных покупателей, которые пользуются платформами TikTok, Pinterest и Meta." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Охватите больше клиентов в социальных сетях" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Прямо на консоли создавайте списки продуктов и рекламу и управляйте ими, привлекая активных покупателей в Google." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Размещайте рекламу в Google" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "Знакомьтесь с AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Повышайте продажи и укрепляйте лояльность с помощью автоматизированных маркетинговых сообщений, реагирующих на данные о покупках ваших клиентов." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Автоматизируйте маркетинг" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Воспользуйтесь нашими встроенными рекламными инструментами, чтобы охватить больше клиентов и повысить продажи" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Развивайте свой бизнес с помощью сотен бесплатных и платных расширений" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Встроенные маркетинговые и рекламные инструменты помогут вам охватить больше клиентов и развивать бизнес. Перейдите на платный тариф, чтобы получить доступ к мощным маркетинговым инструментам и сразу же приступить к развитию бизнеса!" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "Начните развивать бизнес" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Изображение внешнего вида" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Изображение товаров" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Всё выглядит отлично, так держать!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Ого! Мы дошли до конца! Отличная работа!" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Осталось выполнить всего несколько задач!" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Добро пожаловать в ваш магазин Woo Express!" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "Добро пожаловать в %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d из %2$d выполнено." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "Вы почти готовы начать продажи! Выполните эти действия, чтобы настроить пробную версию магазина." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Скрыть список настроек" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "Процесс настройки магазина отвечает моим требованиям." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "Процесс настройки магазина легковыполним." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Ваш отзыв очень важен для нас!" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "Каковы ваши впечатления?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Скрыть" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Показать список задач по настройке" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Параметры списка задач" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "Поздравляем! Возьмите паузу, чтобы отпраздновать. И когда вы уже будете готовы к запуску магазина, всё, что вам останется сделать, — перейти на платный тариф. Так вы сможете получить доступ ещё к двум задачам из списка." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "Ура! Пробная версия магазина настроена!" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "Вы отлично справились! В вашем списке задач стало на один пункт меньше ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Возникла проблема при настройке автоматизированного налогообложения. Повторите попытку." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "В течение бесплатного пробного периода вы можете настраивать параметры налога с продаж, но не взимать его. {{br/}}Чтобы начать продажи, {{link}}перейдите на платный тариф{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "Я не взимаю налога с продаж" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Настроить налоги вручную" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Выберите налогового партнёра" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "Плагин WooCommerce Tax может автоматизировать расчёт налогов с продаж." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Автоматизированное налогообложение" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Автоматизированное налогообложение" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Перейдите на экран параметров налоговых ставок, чтобы настроить их" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Настроить налоговые ставки" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "Адрес вашей компании" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Настроить местоположение магазина" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Нужно указать страну/регион" - -#: build/index.js:1 -msgid "Post code" -msgstr "Почтовый индекс" - -#: build/index.js:1 -msgid "Address" -msgstr "Адрес" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "Страна/регион" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "Нажав «Настроить», вы включаете налоговые ставки и расчёты. Дополнительные сведения см. {{link}}здесь{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "Настроить" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Продолжить установку" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "Устанавливая плагины WooCommerce Tax и Jetpack, вы принимаете наши {{link}}Условия предоставления услуг{{/link}}." - -#: build/index.js:1 -msgid "100% free" -msgstr "100 % бесплатно" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "На сайте используется {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "Соблюдение {{strong}}единых{{/strong}} правил определения экономических связей" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Расчёт налога с продаж в реальном времени" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Оптимально для новых магазинов" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Получить больше продаж" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Перейдите на платный тариф, чтобы получить доступ к новым функциям и начать продажи." - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Сейчас для вас действует бесплатный пробный период! Чтобы получить доступ ко всем функциям, перейдите на платный тариф." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Иллюстрация 1. Введение в модальную навигацию" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Иллюстрация 2. Введение в модальную навигацию" -#: build/index.js:1 -msgid "Setup required" -msgstr "Требуется настройка" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Получайте регулярный доход и управляйте им, а также автоматически вносите депозиты на указанный вами банковский счёт." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Продавайте товары по всему миру и принимайте платежи более чем в 135 валютах с помощью местных способов оплаты." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Предложите клиентам различные способы оплаты на выбор, в том числе оплату банковской картой, Apple Pay, Sofort, SEPA, iDeal и другими способами." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Доступные способы оплаты:" - -#: build/index.js:1 -msgid "& more." -msgstr "и многое другое." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "Просмотр расширений" @@ -417,7 +99,7 @@ msgstr "Выберите тему" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Плагины" @@ -453,27 +135,27 @@ msgstr "Адаптация" msgid "A custom navigation experience that is optimized for selling." msgstr "Пользовательская навигация, приспособленная для продаж." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Работать с WooCommerce теперь стало ещё быстрее. Узнайте больше о нашей новой системе навигации — или исследуйте её самостоятельно." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Перемещайтесь быстрее с помощью нашей новой навигации" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Получайте советы и аналитические данные по работе вашего магазина при каждом заходе на консоль WordPress.com." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Познакомьтесь с новой главной страницей" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Выберите новый адрес для сайта своего магазина или перенесите уже имеющийся." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Добавьте иллюстрацию домена" @@ -521,53 +203,43 @@ msgstr "Сведения для прямого банковского перев msgid "Please enter an account number or IBAN" msgstr "Введите номер счета или международный номер банковского счета" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "В период использования бесплатной пробной версии размещать заказы могут только администраторы и менеджеры магазинов. Если вы уже готовы принимать платежи от клиентов, {{link}}перейдите на платный тарифный план{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Способы оплаты оффлайн" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Подробности" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Попробуйте воспользоваться одним из альтернативных платёжных сервисов." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Другие платёжные сервисы" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Предоставьте своим клиентам возможность выбирать другие способы оплаты." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Дополнительные способы оплаты" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Как подготовиться к приёму интернет-платежей" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Выберите поставщика системы оплаты" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "При подключении к WooCommerce Payments произошла ошибка. Попробуйте ещё раз или подключитесь позже в настройках магазина." @@ -584,196 +256,180 @@ msgstr "Соглашаясь делиться неконфиденциальны msgid "Help us build a better WooCommerce Payments experience" msgstr "Помогите нам улучшить WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Используя WooCommerce Payments, вы принимаете наши {{tosLink}}Условия предоставления услуг{{/tosLink}} и подтверждаете, что ознакомились с {{privacyLink}}Политикой конфиденциальности{{/privacyLink}} " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Подготовьтесь принимать платежи" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Я тоже хочу!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Улучшите возможности WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "При обновлении настроек возникла проблема" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Настройте свою учётную запись %(title)s" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Установить %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Управлять настройками данного платежного шлюза можно нажав кнопку ниже" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Подключайтесь" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Продолжить" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "При сохранении настроек оплаты возникла проблема" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s успешно настроен" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Рекомендован" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Местный партнер" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Завершить настройку" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Включить" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Запустить в любом случае" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Несколько вещей, которые следует проверить перед запуском магазина" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Действия перед запуском" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Выберите адрес нового сайта или перенесите уже имеющийся домен." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Приведите список товаров" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Начните продажи, добавив товары или услуги в магазин. Создавайте товары вручную или импортируйте их из существующего магазина." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Приведите список товаров" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Дайте клиентам возможность легко и удобно оплачивать покупки! Установите один из (или несколько!) наших быстрых и безопасных способов оплаты в Интернете или лично." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Принять платёж" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Вы всегда можете вернуться к этому вопросу в разделе Настройки." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Настало время торжества: вы готовы к запуску своего магазина! Вау!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Готовы запустить собственный магазин?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Передумали? Вы можете снова сделать свой магазин частным, обновив настройки конфиденциальности." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Перейти в магазин" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Поздравляем с запуском вашего магазина WooCommerce. Не забудьте отпраздновать это события и поделиться новостью!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Вау! Готово!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Запуск собственного магазина" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Скопировано" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Откажитесь от этого информационного баннера о бесплатной пробной версии." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Это ваш бесплатный пробный магазин, в котором вы можете ознакомиться с доступными функциями! Чтобы узнать больше о бесплатной пробной версии, нажмите «Подробнее»." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Не удалось сохранить местоположение магазина" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Нажимая «Тестовые платежи», вы соглашаетесь с {{tosLink}}условиями предоставления услуг{{/tosLink}}." -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Осуществляйте платежи с помощью простой и универсальной опции. Проверьте сведения о вашей компании, чтобы начать испытание транзакций с помощью WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Тестовые платежи" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Дайте клиентам возможность легко и удобно оплачивать покупки! Установите и протестируйте некоторые из наших быстрых и безопасных способов оплаты в Интернете или лично." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Пришла пора проверить платежи" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Изображение платежа" @@ -834,7 +490,6 @@ msgstr "Используйте расширения WooCommerce, чтобы на #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Выведите свой магазин на новый уровень с помощью расширений" @@ -848,7 +503,7 @@ msgstr "Пришло время отпраздновать! Готовы зап #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Запустите ваш магазин" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Вы уже запустили свой магазин" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 минуты" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Домен" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Добавить домен" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Перейти на платную подписку" @@ -918,16 +572,16 @@ msgstr "В течение пробного периода вы можете ра msgid "Start selling to everyone" msgstr "Начинайте продажи для всех" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Моя учётная запись" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "Связаться" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Главная страница" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Открыть" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Управление" @@ -1023,15 +676,11 @@ msgstr "Обратная связь" msgid "Save big with WooCommerce Payments" msgstr "Экономьте больше с WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Нет, спасибо" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Магазин" msgid "Stats" msgstr "Статистика" -#: build/index.js:1 -msgid "City" -msgstr "Город" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Продолжить" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Дополнительные сведения." diff --git a/languages/wc-calypso-bridge-sv_SE.mo b/languages/wc-calypso-bridge-sv_SE.mo index dd2cdc68d800cbd965a0c3ba53e29b24636f0347..3be15f0c30717dbc749f541392e12867cac503b1 100644 GIT binary patch delta 5209 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 literal 36249 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 L&x6^<^XNYTwTS9a diff --git a/languages/wc-calypso-bridge-sv_SE.po b/languages/wc-calypso-bridge-sv_SE.po index f7e3c8ab..3133afce 100644 --- a/languages/wc-calypso-bridge-sv_SE.po +++ b/languages/wc-calypso-bridge-sv_SE.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Blogg hem" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Anlita en expert" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "Kan du inte hitta det du letar efter? Anlita en av våra expertbyråer. Från nya utökningar till hela butiksbyggen, våra Woo-experter kan hjälpa dig att skapa din drömbutik." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "Vill du utöka din butiks e-handelsfunktioner? Woo Marketplace har hundratals tillförlitliga utökningar utformade specifikt för din butik." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "Från SEO-verktyg till flerspråksfunktionalitet, med WordPress-tillägg kan du anpassa din webbplats för att göra allt du behöver." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Anpassa din webbplats" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Lägg till ytterligare funktioner till din webbplats med en knapptryckning. Uppgradera till ett betalpaket och få tillgång till tusentals gratis- och betaltillägg för WordPress. Är du nyfiken på vad som är möjligt?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "Gör det på ditt sätt" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Upptäck utökningar" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Utöka din butik" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Bläddra bland tillägg" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "Få vad som helst att hända med tillägg" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Få förbättrade funktioner och snabbare korrigeringar genom att dela icke-känsliga data via {{link}}användningsspårning{{/link}} som visar oss hur WooCommerce används. Inga personliga data spåras eller lagras." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Skapa digitala presentkort" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Börja sälja och ta emot digitala presentkort för att öka kundlojaliteten, öka intäkterna och introducera nya kunder till din butik." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Öka kundlojalitet med presentkort" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Få dina produkter att synas för miljontals engagerade köpare på plattformarna TikTok, Pinterest och Meta med hjälp av social annonsering." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Nå fler kunder via sociala medier" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Nå aktiva köpare i Google med produktlistor och annonser som du kan skapa och hantera direkt i din adminpanel." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Annonsera dina produkter på Google" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "Prova AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Öka försäljningen och bygg upp lojalitet med automatiserade marknadsföringsmeddelanden som reagerar på uppgifter om kundernas inköp." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Automatisera din marknadsföring" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Upptäck våra inbyggda marknadsföringsverktyg för att nå fler kunder och öka försäljningen" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Öka ditt företag med hundratals utökningar" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Nå fler kunder och få ditt företag att växa med vår inbyggda marknadsförings- och annonseringsverktyg. Uppgradera till ett betalpaket för att låsa upp våra kraftfulla marknadsföringsverktyg och få ditt företag att börja växa idag." - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "Är du redo att få ditt företag att växa?" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Illustration av utseende" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Produktillustration" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Allt ser bra ut, fortsätt så!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Woo! Vi har tagit oss till sista steget! Bra jobbat" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Bara några få uppgifter kvar att bocka av!" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Välkommen till din Woo Express-butik" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "Välkommen till %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d av %2$d klara." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "Du är nästan redo att börja sälja! Följ dessa steg för att ställa in din testbutik." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Dölj listan med konfigurationsåtgärder" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "Butikskonfigurationsprocessen uppfyller mina behov." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "Butikskonfigurationen är enkel att slutföra." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Vi uppskattar din feedback!" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "Hur var din upplevelse?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Dölj detta" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Visa uppgiftslista för inställning" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Uppgiftslistealternativ" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "Grattis! Ta en stund och fira. Och när du är redo att lansera din butik är allt du behöver göra att uppgradera till ett betalpaket. Detta låser även upp de två kommande uppgifterna i uppgiftslistan." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "Hurra! Din provperiodsbutik har konfigurerats." - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "Du är grym! En sak mindre på din att göra-lista ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Det var ett problem med att ställa in automatiska momser. Försök igen." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "Under den kostnadsfria provperioden kan du konfigurera dina inställningar för försäljningsmoms, men inte samla in moms. {{br/}}För att börja sälja produkter, {{link}}uppgradera nu{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "Jag debiterar inte moms" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Ställ in moms manuellt" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Välj en momspartner" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax kan beräkna försäljningsmoms i realtid åt dig." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Automatisera momser" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Automatisera momser" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Gå till inställningsvyn för momssatser för att konfigurera dina momssatser" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Konfigurera momssatser" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "Adressen från vilken ditt företag verkar" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Ställ in butikens plats" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Välj ett land/region" - -#: build/index.js:1 -msgid "Post code" -msgstr "Postnummer" - -#: build/index.js:1 -msgid "Address" -msgstr "Adress" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "Land/region" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "Genom att klicka på Konfigurera aktiverar du momssatser och beräkningar. Du hittar mer information {{link}}här{{/link}}." - -#: build/index.js:1 -msgid "Configure" -msgstr "Konfigurera" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Fortsätt installationen" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "Genom att installera WooCommerce Tax och Jetpack samtycker du till {{link}}användarvillkoren{{/link}}." - -#: build/index.js:1 -msgid "100% free" -msgstr "100  gratis" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "Drivs med {{link}}Jetpack{{/link}}" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "{{strong}}Enkel{{/strong}} överensstämmelse med ekonomisk nexus" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Beräkning av försäljningsmoms i realtid" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Bäst för nya butiker" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce-moms" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Öka din försäljning" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Uppgradera till ett betalt paket för att låsa upp fler funktioner och börja sälja" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Du använder för närvarande en gratis provperiod! För att få åtkomst till alla funktioner, uppgradera till ett betalt paket." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Välkommen modal navigering illustration 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Välkommen modal navigering illustration 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "Konfiguration krävs" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Tjäna och hantera återkommande intäkter och få automatiska insättningar till ditt valda bankkonto." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Sälj till internationella marknader och acceptera mer än 135 valutor med lokala betalningsmetoder." - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Erbjud dina kunder deras föredragna sätt att betala inklusive bank- och kreditkortsbetalningar, Apple Pay, Sofort, SEPA, iDeal och många fler." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Accepterade betalningsmetoder inkluderar:" - -#: build/index.js:1 -msgid "& more." -msgstr "och mer." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "Bläddra bland utökningar" @@ -417,7 +99,7 @@ msgstr "Välj ditt tema" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Tillägg" @@ -453,27 +135,27 @@ msgstr "Onboarding" msgid "A custom navigation experience that is optimized for selling." msgstr "En anpassad navigeringsupplevelse som är optimerad för försäljning." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "Att få saker gjorda med WooCommerce går nu ännu snabbare. Läs mer om vår nya navigering – eller gå vidare och utforska på egen hand." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Arbeta snabbare med vår nya navigering" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "Få tips och insikter om din butiks prestanda varje gång du går tillbaka till din WordPress.com-adminpanel." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Det här är din nya startsida" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Välj en ny webbplatsadress för din butik eller överför en du redan äger." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Lägg till en domänillustration" @@ -521,53 +203,43 @@ msgstr "Uppgifter för direkt banköverföring har lagts till" msgid "Please enter an account number or IBAN" msgstr "Ange ett kontonummer eller IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Endast administratörer och butikschefer kan lägga beställningar under den kostnadsfria provperioden. Om du är redo att ta emot betalningar från kunder, {{link}}uppgradera till ett betalpaket{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Offline-betalningsmetoder" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Se mer" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Prova någon av de alternativa betalningsleverantörerna." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Andra betalningsleverantörer" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Ge dina kunder ytterligare valmöjligheter rörande hur de kan betala." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Ytterligare betalningsalternativ" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "För att göra dig redo att ta emot onlinebetalningar" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Välj en betalningsleverantör" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "Det var ett fel att ansluta till WooCommerce Payments. Försök igen eller anslut senare i butiksinställningarna." @@ -584,196 +256,180 @@ msgstr "Genom att samtycka till att dela icke-känsliga {{link}}användardata{{/ msgid "Help us build a better WooCommerce Payments experience" msgstr "Hjälp oss att bygga en bättre WooCommerce Payments-upplevelse" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "Genom att använda WooCommerce Payments samtycker du till våra {{tosLink}}användarvillkor{{/tosLink}} och intygar att du har läst vår {{privacyLink}}integritetspolicy{{/privacyLink}} " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Gör dig redo att ta emot betalningar" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Ja, räkna med mig!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Bygg ett bättre WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Det gick inte att uppdatera dina preferenser" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "Konfigurera ditt %(title)s-konto" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Installera %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Du kan hantera inställningarna för denna betalmodul genom att klicka på knappen nedan" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Anslut" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "Fortsätt" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Det var ett problem att spara dina betalningsinställningar" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s har konfigurerats" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Rekommenderad" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Lokal partner" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Slutför inställning" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Aktivera" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Lansera ändå" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Några saker att kontrollera innan du lanserar din butik" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Innan du lanserar" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Välj en adress för din nya webbplats eller överför en domän som du redan äger." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Lista produkter" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Börja sälja genom att lägga till produkter eller tjänster i din butik. Skapa dina produkter manuellt eller importera dem från en befintlig butik." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Lista dina produkter" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Ge dina kunder ett enkelt och bekvämt sätt att betala. Konfigurera en (eller flera) av våra snabba och säkra betalningsmetoder för onlinebetalningar eller personliga betalningar." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Få betalt" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Du kan alltid återställa detta under Inställningar." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Det är dags att fira – du är redo att lansera din butik! Woo!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Är du redo att lansera din butik?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Har du ändrat dig? Du kan göra din butik privat igen genom att uppdatera dina integritetsinställningar." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Visa din butik" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "Grattis till lanseringen av din WooCommerce-butik. Ta en stund att fira och dela nyheterna!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! Du gjorde det!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Lanserar din butik" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Kopierad" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Avvisa den här informationsbannern om en kostnadsfri provperiod." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Det här är din kostnadsfria provperiodsbutik där du kan börja utforska vad som är tillgängligt. För mer information om den kostnadsfria provperioden, klicka på \"Läs mer\"." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Det var ett problem att spara din butiksplats" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "Genom att klicka på \"Testa betalningar\" samtycker du till {{tosLink}}användarvillkoren{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Hantera dina betalningar med ett enkelt allt-i-ett-alternativ. Verifiera dina företagsuppgifter för att börja testa transaktioner med WooCommerce Payments." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Testa betalningar" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Ge dina kunder ett enkelt och bekvämt sätt att betala. Konfigurera och testa några av våra snabba och säkra betalningsmetoder för onlinebetalningar eller personliga betalningar." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Det är dags att testa betalningar." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Betalningsillustration" @@ -834,7 +490,6 @@ msgstr "Anpassa din butik för att fungera perfekt för ditt företag, med WooCo #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Ta din butik till nästa nivå, med utökningar" @@ -848,7 +503,7 @@ msgstr "Det är dags att fira! Redo att lansera din butik?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Lansera din butik" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Du har redan lanserat din butik." #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 minuter" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Domän" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Lägg till en domän" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Uppgradera nu" @@ -918,16 +572,16 @@ msgstr "Under provperioden kan du bara lägga testbeställningar. För att ta em msgid "Start selling to everyone" msgstr "Börja sälja till alla" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Mitt konto" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "Kontakt" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Hem" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Upptäck" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Hantera" @@ -1023,15 +676,11 @@ msgstr "Feedback" msgid "Save big with WooCommerce Payments" msgstr "Spara stort med WooCommerce Payments" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Nej tack" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Butik" msgid "Stats" msgstr "Statistik" -#: build/index.js:1 -msgid "City" -msgstr "Ort" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Fortsätt" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Lär dig mer" diff --git a/languages/wc-calypso-bridge-tr_TR.mo b/languages/wc-calypso-bridge-tr_TR.mo index aad7b0533c1d0a8121f2de07a686709fa9c63a87..a95ba5abe3b684348738034ad4c499c45d6879d5 100644 GIT binary patch delta 5240 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 literal 37416 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 g<@^8g#m=@~ diff --git a/languages/wc-calypso-bridge-tr_TR.po b/languages/wc-calypso-bridge-tr_TR.po index 45d6a11e..6d359921 100644 --- a/languages/wc-calypso-bridge-tr_TR.po +++ b/languages/wc-calypso-bridge-tr_TR.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "Blog Ana Sayfası" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "Bir uzmanla çalışın" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "Aradığınız şeyi bulamıyor musunuz? Uzman ajanslarımızdan birini işe alın! Yeni uzantılardan tam mağaza kurulumlarına kadar çeşitli alanlarda destek veren Woo Uzmanlarımız hayallerinizdeki mağazayı oluşturmanıza yardımcı olabilir." - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "Mağazanızın e-ticaret işlevini genişletmek mi istiyorsunuz? Woo Pazar Yeri mağazanız için özel olarak tasarlanmış yüzlerce güvenilir uzantıya sahiptir." - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "SEO araçlarından birden fazla dil işlevine kadar WordPress eklentileriyle web sitenizi dilediğiniz her şeyi yapacak şekilde özelleştirebilirsiniz." - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "Web sitenizi özelleştirin" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "Bir düğmeye tıklayarak web sitenize ekstra işlev ve özellikler ekleyin. Ücretli bir pakete yükseltip binlerce ücretsiz ve ücretli WordPress eklentisine erişim edinin. Nelerin mümkün olduğunu mu merak ediyorsunuz?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "İstediğiniz gibi yapın" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "Uzantıları Keşfedin" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "Mağazanızı genişletin" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "Eklentilere göz atın" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "Eklentilerle her şeyi gerçekleştirin" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "Bize WooCommerce'in nasıl kullanıldığını gösteren {{link}}kullanım izleme{{/link}} özelliği aracılığıyla hassas olmayan verileri paylaşarak iyileştirilmiş özellikler ve daha hızlı düzeltmeler alın. Kişisel veriler izlenmez veya saklanmaz." - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "Dijital hediye kartları oluşturun" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "Müşteri sadakatini artırmak, daha fazla gelir kazanmak ve mağazanızı yeni müşterilere tanıtmak için dijital hediye kartları satmaya ve kabul etmeye başlayın." - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "Hediye kartlarıyla müşteri sadakatini artırın" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "Sosyal reklam ile ürünlerinizi TikTok, Pinterest ve Meta platformlarına göz atan milyonlarca ilgili müşterinin önüne çıkarın." - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "Sosyal medyada daha fazla müşteriye ulaşın" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "Doğrudan panonuzdan oluşturup yönetebileceğiniz ürün listelemeleri ve reklamlarıyla Google'daki etkin müşterilere ulaşın." - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "Ürünlerinizi Google'da tanıtın" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "AutomateWoo'yu deneyin" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "Müşterinizin satın alma verilerine yanıt veren otomatik pazarlama mesajlarıyla satışları artırın ve sadakat oluşturun." - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "Pazarlamanızı otomatikleştirin" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "Daha fazla müşteriye ulaşmak ve satışlarınızı artırmak için yerleşik pazarlama araçlarımızı keşfedin" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "Yüzlerce uzantıyla işletmenizi büyütün" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "Yerleşik pazarlama ve reklam araçlarımızla daha fazla müşteriye ulaşın ve işletmenizi büyütün. Hemen güçlü pazarlama araçlarımızın gücünü ortaya çıkarmak ve işletmenizi büyütmeye başlamak için ücretli bir pakete yükseltin!" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "İşletmenizi büyütmeye hazırlanın" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "Görünüm illüstrasyonu" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "Ürünlerin illüstrasyonu" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "Her şey harika görünüyor, böyle devam edin!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Woo! Son adıma geldik! Harikasınız" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "Tamamlanacak yalnızca birkaç görev daha kaldı!" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "Woo Express mağazanıza hoş geldiniz" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "%s sitesine hoş geldiniz" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "%1$d/%2$d tamamlandı." - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "Satış yapmaya neredeyse hazırsınız! Test mağazanızı kurmak için bu adımları takip edin." - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "Kurulum listesini gizle" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "Mağaza kurulum süreci ihtiyaçlarımı karşılıyor." - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "Mağaza kurulumunun tamamlanması kolay." - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "Geri bildirim için teşekkürler!" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "Deneyiminiz nasıldı?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "Bunu gizle" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "Kurulum görev listesini göster" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "Görev Listesi Seçenekleri" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "Tebrikler! Kutlamak için bir dakikanızı ayırın. Mağazanızı yayınlamaya hazır olduğunuzda yapmanız gereken tek şey ücretli bir pakete yükseltmektir. Bu işlem ayrıca görev listesinde iki yaklaşan görevin kilidini de açar." - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "Harika! Deneme mağazanız kuruldu!" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "Harika gidiyorsunuz! Yapılacaklar listenizden bir madde daha silindi ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "Otomatik vergiler ayarlanırken bir sorun oluştu. Lütfen tekrar deneyin." - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "Ücretsiz deneme sürümü süresinde satış vergisi ayarlarınızı yapılandırabilirsiniz, ancak satış vergilerinizi toplayamazsınız. {{br/}}Ürün satmaya başlamak için {{link}}hemen yükseltin{{/link}}." - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "Satış vergisi almıyorum" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "Vergileri manuel olarak ayarlayın" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "Bir vergi ortağı seçin" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax, satış vergisi hesaplamalarınızı sizin için otomatikleştirebilir." - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "Vergileri Otomatikleştir" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "Vergileri otomatikleştirin" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "Vergi oranlarınızı yapılandırmak için vergi oranı ayarları ekranına gidin." - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "Vergi oranlarını yapılandırın" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "İşletmenizin faaliyet adresi" - -#: build/index.js:1 -msgid "Set store location" -msgstr "Mağaza konumunu ayarlayın" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "Lütfen bir ülke / bölge seçin" - -#: build/index.js:1 -msgid "Post code" -msgstr "Posta kodu" - -#: build/index.js:1 -msgid "Address" -msgstr "Adres" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "Ülke" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "\"Yapılandır\" seçeneğine tıklayarak vergi oranlarını ve hesaplamaları etkinleştirirsiniz. Daha fazla bilgi için {{link}}bu bölüme{{/link}} bakın." - -#: build/index.js:1 -msgid "Configure" -msgstr "Yapılandır" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "Kuruluma devam et" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "WooCommerce Tax ve Jetpack'i kurarak {{link}}Hizmet Koşullarını{{/link}} kabul etmiş olursunuz." - -#: build/index.js:1 -msgid "100% free" -msgstr "%100 ücretsiz" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "{{link}}Jetpack{{/link}} tarafından desteklenir" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "{{strong}}Tek{{/strong}} ekonomik bağlantı uyumluluğu" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "Gerçek zamanlı satış vergisi hesaplama" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "Yeni mağazalar için en iyisi" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "Daha fazla satış yapın" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "Yeni özelliklerin kilidini açmak ve satış yapmaya başlamak için ücretli bir pakete yükseltin." - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "Şu anda ücretsiz deneme sürümünü kullanıyorsunuz! Tüm özelliklere erişmek için lütfen ücretli bir pakete yükseltin." - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "Hoş geldiniz penceresi gezinme illüstrasyonu 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "Hoş geldiniz penceresi gezinme illüstrasyonu 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "Kurulum gerekir" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "Sürekli bir gelir akışı sağlayın, yinelenen ödemeleri yönetin ve ödemelerin belirlediğiniz banka hesabınıza otomatik olarak yatırılmasını sağlayın." - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "Uluslararası pazarlara satış yapın ve yerel ödeme yöntemleriyle 135'ten fazla para biriminde ödeme kabul edin. " - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "Banka ve kredi kartı ödemeleri, Apple Pay, Sofort, SEPA, iDeal ve çok daha fazlası dahil olmak üzere müşterilerinize tercih ettikleri ödeme yöntemini sunun." - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "Kabul edilen ödeme yöntemleri şunlardır:" - -#: build/index.js:1 -msgid "& more." -msgstr "ve daha fazlası." - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "Uzantılara göz atma" @@ -417,7 +99,7 @@ msgstr "Temanızı seçin" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "Eklentiler" @@ -453,27 +135,27 @@ msgstr "İlk Katılım" msgid "A custom navigation experience that is optimized for selling." msgstr "Satış için uygun hale getirilmiş özel bir gezinme deneyimi." -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "WooCommerce ile işleri halletmek artık daha hızlı. Yeni gezinmemiz hakkında daha fazla bilgi edinin veya gidip kendiniz keşfedin." -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "Yeni gezinmemizle daha hızlı hareket edin" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "WordPress.com panonuza her geri döndüğünüzde mağazanızın performansı hakkında ipuçları ve istatistikler alın." -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "Yeni Ana Sayfanızla tanışın" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "Mağazanız için yeni bir web sitesi adresi seçin veya zaten sahip olduğunuz bir adresi aktarın." -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "Alan adı illüstrasyonu ekleyin" @@ -521,53 +203,43 @@ msgstr "Doğrudan banka havale detayları başarıyla eklendi" msgid "Please enter an account number or IBAN" msgstr "Lütfen bir hesap numarası veya IBAN girin" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "Ücretsiz deneme süresi boyunca yalnızca Yöneticiler ve Mağaza Yöneticileri sipariş verebilir. Müşterilerden ödeme almaya hazırsanız {{link}}ücretli bir pakete yükseltin{{/link}}." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "Çevrimdışı ödeme yöntemleri" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "Daha fazla gör" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "Alternatif ödeme sağlayıcılarından birini deneyin." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "Diğer ödeme sağlayıcıları" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "Müşterilerinize ödeme yöntemleriyle ilgili ek seçenekler sunun." -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "Ek ödeme seçenekleri" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "Çevrimiçi ödeme almaya hazır olmak için" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "Bir ödeme sağlayıcısı seç" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "WooCommerce Payments bağlantısı kurulurken bir hata oluştu. Lütfen tekrar deneyin veya mağaza ayarlarında daha sonra bağlanın." @@ -584,196 +256,180 @@ msgstr "Hassas olmayan {{link}}kullanım verilerini{{/link}} paylaşmayı kabul msgid "Help us build a better WooCommerce Payments experience" msgstr "Daha iyi bir WooCommerce Payments deneyimi oluşturmamıza yardımcı olun" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "WooCommerce Payments'ı kullanarak {{tosLink}}Hizmet Şartlarımıza{{/tosLink}} bağlı kalmayı ve {{privacyLink}}Gizlilik Politikamızı{{/privacyLink}} okuduğunuzu kabul etmiş olursunuz. " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "Ödeme almaya hazır olun" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "Evet, ben de varım!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "Daha iyi bir WooCommerce oluşturun" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "Tercihleriniz güncellenirken bir sorun oluştu" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "%(title)s hesabınızı yapılandırın" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "Yükle %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "Aşağıdaki düğmeyi tıklayarak bu ödeme ağ geçidinin ayarlarını yönetebilirsiniz" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "Bağlan" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "İlerle" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "Ödeme ayarlarınız kaydedilirken bir sorun oluştu" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s başarıyla yapılandırıldı" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "Önerilen" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "Yerel iş ortağı" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "Kurulumu Tamamla" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "Etkinleştir" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "Yine de başlat" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "Mağazanızı başlatmadan önce kontrol etmeniz gereken birkaç şey" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "Başlatmadan önce" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "Yeni web siteniz için bir adres seçin veya zaten sahip olduğunuz bir alan adını aktarın." -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "Ürün listeleme" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "Mağazanıza ürün veya hizmet ekleyerek satış yapmaya başlayın. Ürünlerinizi manuel olarak oluşturun veya mevcut bir mağazadan içe aktarın." -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "Ürünlerinizi listeleme" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "Müşterilerinize kolay ve rahat bir ödeme yöntemi sağlayın! Hızlı ve güvenli internetten veya şahsen ödeme yöntemlerimizden birini (veya daha fazlasını!) ayarlayın." -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "Ödeme alın" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "Bunu her zaman Ayarlar'ın altından geri alabilirsiniz." -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "Kutlama zamanı, mağazanızı başlatmaya hazırsınız! Woo!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "Mağazanızı yayınlamaya hazır mısınız?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "Fikrinizi mi değiştirdiniz? Gizlilik ayarlarınızı güncelleyerek mağazanızı tekrar gizli hale getirebilirsiniz." -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "Mağazanızı görüntüleme" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "WooCommerce mağazanızı başlattığınız için tebrik ederiz. Kutlamak ve haberleri paylaşmak için bir dakikanızı ayırın!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! Başardınız!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "Mağazanızı başlatma" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "Kopyalandı" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "Bu ücretsiz deneme süresi bilgilendirici bandını kapatın." -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "Bu, neler bulunduğunu keşfetmeye başlayabileceğiniz ücretsiz deneme süresi test mağazanız! Ücretsiz deneme süresi hakkında daha fazla bilgi edinmek için \"Daha fazla bilgi\"ye tıklayın." -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "Mağaza konumunuz kaydedilirken bir sorun oluştu" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "\"Ödemeleri test et\"e tıklayarak {{tosLink}}Hizmet Koşulları{{/tosLink}}'nı kabul etmiş olursunuz." -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "Ödemelerinizi basit, hepsi bir arada bir seçenekle güçlendirin. WooCommerce Ödemeler ile işlemleri test etmeye başlamak için işletmenizle ilgili ayrıntıları doğrulayın." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "Ödemeleri test etme" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "Müşterilerinize kolay ve rahat bir ödeme yöntemi sağlayın! Hızlı ve güvenli internetten veya şahsen ödeme yöntemlerimizden bazılarını ayarlayın ve test edin." -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "Ödemeleri test etme zamanı" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "Ödeme resmi" @@ -834,7 +490,6 @@ msgstr "WooCommerce Uzantılarıyla mağazanızı işletmeniz için mükemmel ç #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "Uzantılarla mağazanızı bir sonraki seviyeye taşıyın" @@ -848,7 +503,7 @@ msgstr "Kutlama zamanı! Mağazanızı yayınlamaya hazır mısınız?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "Mağazanızı yayınlayın" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "Mağazanızı zaten yayınladınız" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 dakika" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "Alan Adı" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "Alan adı ekle" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "Şimdi yükselt" @@ -918,16 +572,16 @@ msgstr "Ücretsiz deneme süresi boyunca sadece test siparişleri verebilirsiniz msgid "Start selling to everyone" msgstr "Herkese satış yapmaya başlama" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "Hesabım" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "İletişim" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "Başlangıç" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "Keşfet" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "Yönetin" @@ -1023,15 +676,11 @@ msgstr "Geri Bildirim" msgid "Save big with WooCommerce Payments" msgstr "WooCommerce Payments ile büyük kazanın" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "Hayır, teşekkürler" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "Mağaza" msgid "Stats" msgstr "İstatistikler" -#: build/index.js:1 -msgid "City" -msgstr "Şehir" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "Devam" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "Daha fazla bilgi edinin." diff --git a/languages/wc-calypso-bridge-zh_CN.mo b/languages/wc-calypso-bridge-zh_CN.mo index edbea56fd06f47656c9cb46cc61b9d922a70d162..9d877e7f669f6d2ee3a9cf232f507454123bb253 100644 GIT binary patch delta 5199 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 E|F7u-a{vGU delta 15136 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 D8_sRv diff --git a/languages/wc-calypso-bridge-zh_CN.po b/languages/wc-calypso-bridge-zh_CN.po index db4f91c9..905b4cbd 100644 --- a/languages/wc-calypso-bridge-zh_CN.po +++ b/languages/wc-calypso-bridge-zh_CN.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "博客首页" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "聘请专家" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "无法找到您要查找的内容? 聘请我们的专家代理机构! 从新扩展功能到全店建设,我们的 Woo Expertsthey 可帮助您打造梦想中的商店。" - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "希望扩展您商店的电子商务功能? Woo Marketplace 提供数百种值得信赖的扩展程序,专为您的店铺而设计。" - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "从搜索引擎优化工具到多语言功能,WordPress 插件可支持您对网站进行定制,满足您的任何需求。" - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "定制您的网站" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "只需点击按钮,即可为您的网站添加额外的功能和特性。 升级至付费套餐即可获得数千款免费和付费 WordPress 插件的使用权限。 想知道有哪些可能的功能?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "按照自己的方式进行" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "了解扩展程序" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "扩展您的商店" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "浏览插件" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "借助插件实现任何目的" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "通过{{link}}使用情况跟踪{{/link}}分享非敏感数据,向我们展示 WooCommerce 的使用情况,以便改进功能并提高修复速度。 不会跟踪或存储任何个人数据。" - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "创建数字礼品卡" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "开始销售和接受数字礼品卡以提升客户忠诚度,增加收入,并为您的商店引入新客户。" - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "通过礼品卡提升客户忠诚度" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "通过投放社交广告,将您的产品呈现在浏览 TikTok、Pinterest 和 Meta 平台的数百万感兴趣的购物者面前。" - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "在社交媒体上吸引更多客户" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "通过产品列表和广告(可直接通过仪表盘创建和管理)吸引 Google 上的活跃购物者。" - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "在 Google 上为您的产品投放广告" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "试试 AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "通过响应客户购买数据的自动化营销消息促进销售并培养客户忠诚度。" - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "实现营销自动化" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "了解我们内置的营销工具,以吸引更多客户并促进销售。" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "通过数百款扩展程序来拓展您的业务。" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "通过我们内置的营销和广告工具吸引更多客户并拓展您的业务。 升级至付费套餐,解锁我们强大的营销工具,并立即开始拓展您的业务!" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "准备好拓展您的业务" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "外观插图" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "产品插图" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "一切都很顺利,继续保持!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Woo! 我们只差最后一步了! 好样的" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "只剩几项任务需要完成了!" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "欢迎光临您的 Woo Express 商店" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "欢迎使用 %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "已完成 %1$d 项,共 %2$d 项。" - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "您差不多可以开始营业了! 请按照以下步骤操设置测试商店。" - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "隐藏设置列表" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "商店设置流程符合我的需求。" - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "商店设置易于完成。" - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "感谢您的反馈!" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "您的体验如何?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "将此隐藏" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "显示设置任务列表" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "任务列表选项" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "恭喜! 花点时间庆祝一下。 一旦您准备好推出您的商店,您唯一要做的便是升级至付费套餐。 这也将解锁任务列表中的两项即将执行的任务。" - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "哇哦! 试用版商店已设置完成!" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "您真棒! 任务清单上又少了一项 ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "设置自动收税时遇到问题。 请重试。" - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "在免费试用期内,您可以配置销售税设置,但不能收税。 {{br/}}若想开始销售产品,{{link}}请立即升级{{/link}}。" - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "我不收取销售税" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "手动设置税费" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "选择一位税务合作伙伴" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax 会自动为您计算销售税。" - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "自动收税" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "自动收税" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "前往税率设置界面,以配置您的税率" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "配置税率" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "您的业务经营地址" - -#: build/index.js:1 -msgid "Set store location" -msgstr "设置商店位置" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "请选择国家/地区" - -#: build/index.js:1 -msgid "Post code" -msgstr "邮政编码" - -#: build/index.js:1 -msgid "Address" -msgstr "地址" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "国家/地区" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "点击“配置”后您即可启用税率和计算。 若想了解更多信息,请点击{{link}}此处{{/link}}。" - -#: build/index.js:1 -msgid "Configure" -msgstr "配置" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "继续设置" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "安装 WooCommerce Tax 和 Jetpack 即表示您同意{{link}}服务条款{{/link}}。" - -#: build/index.js:1 -msgid "100% free" -msgstr "完全免费" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "由 {{link}}Jetpack{{/link}} 提供支持" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "{{strong}}单{{/strong}}经济关联合规性" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "实时计算销售税" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "最适合新店" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "提升销售额" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "升级至付费套餐,解锁更多功能并开始销售" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "您目前正在使用免费试用版! 若想获取全套功能,请升级至付费套餐。" - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "欢迎模式导航插图 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "欢迎模式导航插图 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "需要设置" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "赚取和管理定期收入,并自动将存款存入您指定的银行账户。" - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "销往国际市场并通过本地付款方式接受超过 135 种货币的付款。" - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "为您的客户提供他们的首选支付方式,包括借记卡和信用卡支付、Apple Pay、Sofort、SEPA、iDeal 等。" - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "接受的付款方式包括:" - -#: build/index.js:1 -msgid "& more." -msgstr "等。" - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "浏览扩展程序" @@ -417,7 +99,7 @@ msgstr "选择您的主题" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "插件" @@ -453,27 +135,27 @@ msgstr "登录" msgid "A custom navigation experience that is optimized for selling." msgstr "出于销售目的优化的自定义导航体验。" -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "使用 WooCommerce 完成工作的速度越来越快。 详细了解我们的新导航,或亲身体验,自行探索。" -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "使用我们的新导航提高浏览速度" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "每次跳转回 WordPress.com 仪表盘时,都可以获得有关商店性能的提示和见解。" -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "了解新主页" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "为您的商店选择一个新的网站地址,或者转移您已经拥有的网站地址。" -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "添加域名插图" @@ -521,53 +203,43 @@ msgstr "已成功添加直接银行转账详细信息" msgid "Please enter an account number or IBAN" msgstr "请输入帐号或 IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "只有管理员和商店经理可以在免费试用版中下单。 如果您已准备好接收客户付款,请{{link}}升级至付费套餐{{/link}}。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "线下付款方式" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "查看更多" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "尝试某个备用付款提供商。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "其他付款提供商" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "为您的客户提供更多付款方式选择。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "其他付款选项" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "准备接收在线付款" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "选择付款提供商" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "连接到 WooCommerce Payments 时出错。 请重试,或稍后在商店设置中连接。" @@ -584,196 +256,180 @@ msgstr "同意分享非敏感{{link}}使用情况数据{{/link}}即表示,您 msgid "Help us build a better WooCommerce Payments experience" msgstr "帮助我们打造更优质的 WooCommerce Payments 体验" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "使用 WooCommerce Payments 即表示,您同意遵守我们的{{tosLink}}服务条款{{/tosLink}},并确认您已阅读我们的{{privacyLink}}隐私政策{{/privacyLink}} " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "准备好接收付款" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "是,我报名!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "构建更好的 WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "更新您的偏好设置时出现问题" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "配置您的 %(title)s 账户" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "安装 %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "您可以通过单击下面的按钮来管理此付款网关的设置" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "连接" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "继续" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "保存您的付款设置时出现问题。" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "已成功配置 %s" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "推荐" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "当地合作伙伴" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "完成设置" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "启用" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "仍然发布" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "发布商店前的应检查事项" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "发布前" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "为您的新网站选择一个地址,或者转移您已经拥有的域名。" -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "列出产品" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "向您的商店添加产品或服务,开始进行销售。 手动创建产品,或从现有商店导入产品。" -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "列出产品" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "为您的客户提供简单便捷的支付方式! 设置一种(或多种!)快速安全的在线或面对面付款方式。" -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "收款" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "您可以随时在设置下恢复此设置。" -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "举杯庆祝吧 - 您已准备好发布商店! Woo!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "准备好开启您的商店了吗?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "改变了主意? 您可以更新隐私设置,将您的商店设为私密。" -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "查看商店" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "祝贺您发布 WooCommerce 商店。 花点时间来庆祝和分项这一消息吧!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! 您做到了!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "发布您的商店" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "已复制" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "忽略此免费试用版信息横幅。" -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "这是您的免费试用版测试商店,您可以在这里开始探索可用功能! 要详细了解免费试用版,请点击“了解详情”。" -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "保存您的商店位置时出现问题" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "点击“测试付款”即表示您同意{{tosLink}}服务条款{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "通过简单的一站式选项帮助您打造强大的付款功能。 验证您的业务详情,以开始使用 WooCommerce Payments 测试交易。" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "测试付款" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "为您的客户提供简单便捷的支付方式! 设置并测试一些快速安全的在线或面对面付款方式。" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "是时候测试付款了" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "付款插图" @@ -834,7 +490,6 @@ msgstr "使用 WooCommerce 扩展程序自定义您的商店,使其完美贴 #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "使用扩展程序让您的商店更上一层楼" @@ -848,7 +503,7 @@ msgstr "举杯庆祝吧! 准备好开启您的商店了吗?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "推出您的商店" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "您已准备好发布商店" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 分钟" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "域" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "添加域" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "立即升级" @@ -918,16 +572,16 @@ msgstr "在试用期间,您只能下达测试订单! 要接收来自客户 msgid "Start selling to everyone" msgstr "开始面向所有人销售" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "我的账户" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "联系" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "首页" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "发现" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "管理" @@ -1023,15 +676,11 @@ msgstr "反馈" msgid "Save big with WooCommerce Payments" msgstr "WooCommerce Payments 帮您节省大量资金" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "不用了,谢谢" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "商店" msgid "Stats" msgstr "统计数据" -#: build/index.js:1 -msgid "City" -msgstr "都市" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "继续" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "了解更多内容。" diff --git a/languages/wc-calypso-bridge-zh_SG.mo b/languages/wc-calypso-bridge-zh_SG.mo index a9f5dbe727985f6a3231018688dc7761b3e0dfc1..c53f6580a36b131bf9ccc04d4e8f11b9a597971c 100644 GIT binary patch delta 5199 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 E|F7u-a{vGU delta 15136 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 D8_sRv diff --git a/languages/wc-calypso-bridge-zh_SG.po b/languages/wc-calypso-bridge-zh_SG.po index 1818c3e0..775f4aa8 100644 --- a/languages/wc-calypso-bridge-zh_SG.po +++ b/languages/wc-calypso-bridge-zh_SG.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "博客首页" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "聘请专家" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "无法找到您要查找的内容? 聘请我们的专家代理机构! 从新扩展功能到全店建设,我们的 Woo Expertsthey 可帮助您打造梦想中的商店。" - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "希望扩展您商店的电子商务功能? Woo Marketplace 提供数百种值得信赖的扩展程序,专为您的店铺而设计。" - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "从搜索引擎优化工具到多语言功能,WordPress 插件可支持您对网站进行定制,满足您的任何需求。" - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "定制您的网站" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "只需点击按钮,即可为您的网站添加额外的功能和特性。 升级至付费套餐即可获得数千款免费和付费 WordPress 插件的使用权限。 想知道有哪些可能的功能?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "按照自己的方式进行" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "了解扩展程序" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "扩展您的商店" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "浏览插件" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "借助插件实现任何目的" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "通过{{link}}使用情况跟踪{{/link}}分享非敏感数据,向我们展示 WooCommerce 的使用情况,以便改进功能并提高修复速度。 不会跟踪或存储任何个人数据。" - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "创建数字礼品卡" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "开始销售和接受数字礼品卡以提升客户忠诚度,增加收入,并为您的商店引入新客户。" - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "通过礼品卡提升客户忠诚度" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "通过投放社交广告,将您的产品呈现在浏览 TikTok、Pinterest 和 Meta 平台的数百万感兴趣的购物者面前。" - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "在社交媒体上吸引更多客户" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "通过产品列表和广告(可直接通过仪表盘创建和管理)吸引 Google 上的活跃购物者。" - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "在 Google 上为您的产品投放广告" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "试试 AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "通过响应客户购买数据的自动化营销消息促进销售并培养客户忠诚度。" - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "实现营销自动化" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "了解我们内置的营销工具,以吸引更多客户并促进销售。" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "通过数百款扩展程序来拓展您的业务。" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "通过我们内置的营销和广告工具吸引更多客户并拓展您的业务。 升级至付费套餐,解锁我们强大的营销工具,并立即开始拓展您的业务!" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "准备好拓展您的业务" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "外观插图" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "产品插图" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "一切都很顺利,继续保持!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Woo! 我们只差最后一步了! 好样的" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "只剩几项任务需要完成了!" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "欢迎光临您的 Woo Express 商店" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "欢迎使用 %s" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "已完成 %1$d 项,共 %2$d 项。" - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "您差不多可以开始营业了! 请按照以下步骤操设置测试商店。" - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "隐藏设置列表" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "商店设置流程符合我的需求。" - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "商店设置易于完成。" - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "感谢您的反馈!" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "您的体验如何?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "将此隐藏" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "显示设置任务列表" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "任务列表选项" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "恭喜! 花点时间庆祝一下。 一旦您准备好推出您的商店,您唯一要做的便是升级至付费套餐。 这也将解锁任务列表中的两项即将执行的任务。" - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "哇哦! 试用版商店已设置完成!" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "您真棒! 任务清单上又少了一项 ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "设置自动收税时遇到问题。 请重试。" - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "在免费试用期内,您可以配置销售税设置,但不能收税。 {{br/}}若想开始销售产品,{{link}}请立即升级{{/link}}。" - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "我不收取销售税" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "手动设置税费" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "选择一位税务合作伙伴" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax 会自动为您计算销售税。" - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "自动收税" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "自动收税" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "前往税率设置界面,以配置您的税率" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "配置税率" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "您的业务经营地址" - -#: build/index.js:1 -msgid "Set store location" -msgstr "设置商店位置" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "请选择国家/地区" - -#: build/index.js:1 -msgid "Post code" -msgstr "邮政编码" - -#: build/index.js:1 -msgid "Address" -msgstr "地址" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "国家/地区" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "点击“配置”后您即可启用税率和计算。 若想了解更多信息,请点击{{link}}此处{{/link}}。" - -#: build/index.js:1 -msgid "Configure" -msgstr "配置" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "继续设置" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "安装 WooCommerce Tax 和 Jetpack 即表示您同意{{link}}服务条款{{/link}}。" - -#: build/index.js:1 -msgid "100% free" -msgstr "完全免费" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "由 {{link}}Jetpack{{/link}} 提供支持" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "{{strong}}单{{/strong}}经济关联合规性" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "实时计算销售税" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "最适合新店" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "提升销售额" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "升级至付费套餐,解锁更多功能并开始销售" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "您目前正在使用免费试用版! 若想获取全套功能,请升级至付费套餐。" - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "欢迎模式导航插图 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "欢迎模式导航插图 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "需要设置" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "赚取和管理定期收入,并自动将存款存入您指定的银行账户。" - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "销往国际市场并通过本地付款方式接受超过 135 种货币的付款。" - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "为您的客户提供他们的首选支付方式,包括借记卡和信用卡支付、Apple Pay、Sofort、SEPA、iDeal 等。" - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "接受的付款方式包括:" - -#: build/index.js:1 -msgid "& more." -msgstr "等。" - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "浏览扩展程序" @@ -417,7 +99,7 @@ msgstr "选择您的主题" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "插件" @@ -453,27 +135,27 @@ msgstr "登录" msgid "A custom navigation experience that is optimized for selling." msgstr "出于销售目的优化的自定义导航体验。" -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "使用 WooCommerce 完成工作的速度越来越快。 详细了解我们的新导航,或亲身体验,自行探索。" -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "使用我们的新导航提高浏览速度" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "每次跳转回 WordPress.com 仪表盘时,都可以获得有关商店性能的提示和见解。" -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "了解新主页" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "为您的商店选择一个新的网站地址,或者转移您已经拥有的网站地址。" -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "添加域名插图" @@ -521,53 +203,43 @@ msgstr "已成功添加直接银行转账详细信息" msgid "Please enter an account number or IBAN" msgstr "请输入帐号或 IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "只有管理员和商店经理可以在免费试用版中下单。 如果您已准备好接收客户付款,请{{link}}升级至付费套餐{{/link}}。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "线下付款方式" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "查看更多" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "尝试某个备用付款提供商。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "其他付款提供商" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "为您的客户提供更多付款方式选择。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "其他付款选项" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "准备接收在线付款" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "选择付款提供商" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "连接到 WooCommerce Payments 时出错。 请重试,或稍后在商店设置中连接。" @@ -584,196 +256,180 @@ msgstr "同意分享非敏感{{link}}使用情况数据{{/link}}即表示,您 msgid "Help us build a better WooCommerce Payments experience" msgstr "帮助我们打造更优质的 WooCommerce Payments 体验" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "使用 WooCommerce Payments 即表示,您同意遵守我们的{{tosLink}}服务条款{{/tosLink}},并确认您已阅读我们的{{privacyLink}}隐私政策{{/privacyLink}} " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "准备好接收付款" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "是,我报名!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "构建更好的 WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "更新您的偏好设置时出现问题" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "配置您的 %(title)s 账户" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "安装 %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "您可以通过单击下面的按钮来管理此付款网关的设置" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "连接" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "继续" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "保存您的付款设置时出现问题。" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "已成功配置 %s" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "推荐" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "当地合作伙伴" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "完成设置" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "启用" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "仍然发布" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "发布商店前的应检查事项" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "发布前" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "为您的新网站选择一个地址,或者转移您已经拥有的域名。" -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "列出产品" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "向您的商店添加产品或服务,开始进行销售。 手动创建产品,或从现有商店导入产品。" -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "列出产品" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "为您的客户提供简单便捷的支付方式! 设置一种(或多种!)快速安全的在线或面对面付款方式。" -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "收款" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "您可以随时在设置下恢复此设置。" -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "举杯庆祝吧 - 您已准备好发布商店! Woo!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "准备好开启您的商店了吗?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "改变了主意? 您可以更新隐私设置,将您的商店设为私密。" -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "查看商店" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "祝贺您发布 WooCommerce 商店。 花点时间来庆祝和分项这一消息吧!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! 您做到了!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "发布您的商店" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "已复制" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "忽略此免费试用版信息横幅。" -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "这是您的免费试用版测试商店,您可以在这里开始探索可用功能! 要详细了解免费试用版,请点击“了解详情”。" -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "保存您的商店位置时出现问题" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "点击“测试付款”即表示您同意{{tosLink}}服务条款{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "通过简单的一站式选项帮助您打造强大的付款功能。 验证您的业务详情,以开始使用 WooCommerce Payments 测试交易。" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "测试付款" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "为您的客户提供简单便捷的支付方式! 设置并测试一些快速安全的在线或面对面付款方式。" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "是时候测试付款了" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "付款插图" @@ -834,7 +490,6 @@ msgstr "使用 WooCommerce 扩展程序自定义您的商店,使其完美贴 #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "使用扩展程序让您的商店更上一层楼" @@ -848,7 +503,7 @@ msgstr "举杯庆祝吧! 准备好开启您的商店了吗?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "推出您的商店" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "您已准备好发布商店" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 分钟" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "域" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "添加域" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "立即升级" @@ -918,16 +572,16 @@ msgstr "在试用期间,您只能下达测试订单! 要接收来自客户 msgid "Start selling to everyone" msgstr "开始面向所有人销售" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "我的账户" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "联系" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "首页" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "发现" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "管理" @@ -1023,15 +676,11 @@ msgstr "反馈" msgid "Save big with WooCommerce Payments" msgstr "WooCommerce Payments 帮您节省大量资金" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "不用了,谢谢" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "商店" msgid "Stats" msgstr "统计数据" -#: build/index.js:1 -msgid "City" -msgstr "都市" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "继续" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "了解更多内容。" diff --git a/languages/wc-calypso-bridge-zh_TW.mo b/languages/wc-calypso-bridge-zh_TW.mo index d8e29c66e882b5a0276bfa5e8192efbc2c8cd7b8..20e8e95b28d302a37a90822ee2d4580498c1c09c 100644 GIT binary patch delta 5222 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 delta 15124 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 diff --git a/languages/wc-calypso-bridge-zh_TW.po b/languages/wc-calypso-bridge-zh_TW.po index 36a6e457..0a7aa53c 100644 --- a/languages/wc-calypso-bridge-zh_TW.po +++ b/languages/wc-calypso-bridge-zh_TW.po @@ -41,340 +41,22 @@ msgctxt "Template name" msgid "Blog Home" msgstr "網誌首頁" -#: build/plugins.js:1 -msgid "Hire an expert" -msgstr "聘請專家" - -#: build/plugins.js:1 -msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." -msgstr "找不到正在尋找的內容嗎? 歡迎聘用我們的專業代理商! 從新的延伸功能到打造整間商店,我們的 Woo Expertsthey 可以幫你建立夢想中的商店。" - -#: build/plugins.js:1 -msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." -msgstr "想拓展商店的電子商務功能嗎? Woo Marketplace 有數百個值得信賴的延伸功能,專為你的商店打造。" - -#: build/plugins.js:1 -msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." -msgstr "從 SEO 工具到多語言功能,有了 WordPress 外掛程式,你可以自訂網站,實現一切所需。" - -#: build/plugins.js:1 -msgid "Customize your website" -msgstr "自訂你的網站" - -#: build/plugins.js:1 -msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" -msgstr "按一下按鈕,便能為網站新增額外功能。 升級為付費方案,即可使用數千種免費與付費 WordPress 外掛程式。 想知道哪些夢想能夠實現嗎?" - -#: build/plugins.js:1 -msgid "Do it your way" -msgstr "走自己的路" - -#: build/plugins.js:1 -msgid "Discover Extensions" -msgstr "探索擴充功能" - -#: build/plugins.js:1 -msgid "Extend your store" -msgstr "擴大商店" - -#: build/plugins.js:1 -msgid "Browse plugins" -msgstr "瀏覽外掛程式" - -#: build/plugins.js:1 -msgid "Make anything happen, with plugins" -msgstr "透過外掛程式,實現一切" - -#: build/payment-gateway-suggestions.js:3 -msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." -msgstr "透過「{{link}}使用情況追蹤{{/link}}」分享非敏感性資料,可以協助我們改善功能、快速修復程式。「使用情況追蹤」可讓我們知道你的 WooCommerce 使用情況。 我們不會追蹤或儲存任何個人資料。" - -#: build/marketing.js:1 -msgid "Create digital gift cards" -msgstr "製作數位禮物卡" - -#: build/marketing.js:1 -msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." -msgstr "可開始販售和接受使用數位禮物卡,藉此提高顧客忠誠度、創造更多收益,並將商店介紹給新顧客。" - -#: build/marketing.js:1 -msgid "Increase customer loyalty with gift cards" -msgstr "透過禮物卡提高顧客忠誠度" - -#: build/marketing.js:1 -msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." -msgstr "運用社群媒體廣告,向瀏覽 TikTok、Pinterest 和 Meta 平台的數百萬積極買家展示自家產品。" - -#: build/marketing.js:1 -msgid "Reach more customers across social media" -msgstr "在社群媒體上觸及更多顧客" - -#: build/marketing.js:1 -msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." -msgstr "可直接在儀表板上建立及管理產品清單和廣告,全面觸及 Google 各處的活躍買家。" - -#: build/marketing.js:1 -msgid "Advertise your products on Google" -msgstr "在 Google 上廣告自家產品" - -#: build/marketing.js:1 -msgid "Try AutomateWoo" -msgstr "試用 AutomateWoo" - -#: build/marketing.js:1 -msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." -msgstr "自動化的行銷訊息可呼應顧客購買資料,提高銷售額並建立忠誠度。" - -#: build/marketing.js:1 -msgid "Automate your marketing" -msgstr "行銷自動化" - -#: build/marketing.js:1 -msgid "Discover our built-in marketing tools to reach more customers and boost sales" -msgstr "探索我們的內建行銷工具,觸及更多顧客並提升銷售額" - -#: build/marketing.js:1 -msgid "Grow your business with hundreds of extensions" -msgstr "透過數百個擴充功能,讓生意蓬勃發展" - -#: build/marketing.js:1 -msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" -msgstr "運用我們的內建行銷和廣告工具,觸及更多顧客並拓展業務。 升級為付費方案,即可解鎖我們強大的行銷工具,立即開始拓展業務!" - -#: build/marketing.js:1 -msgid "Get ready to grow your business" -msgstr "準備讓生意蓬勃發展" - -#: build/index.js:3 src/task-headers/appearance.js:29 +#: src/task-headers/appearance.js:29 msgid "Appearance illustration" msgstr "外觀插圖" -#: build/index.js:3 src/task-headers/products.js:26 +#: src/task-headers/products.js:26 msgid "Products illustration" msgstr "產品插圖" -#: build/index.js:3 -msgid "Everything is looking great, keep it up!" -msgstr "一切看起來都好極了,繼續維持!" - -#: build/index.js:3 -msgid "Woo! We’ve made it to the last step! Great job" -msgstr "Woo! 終於到最後一個步驟了! 太好了" - -#: build/index.js:3 -msgid "Only a few more tasks to tick off!" -msgstr "只要再完成幾個部分,就大功告成了!" - -#: build/index.js:3 -msgid "Welcome to your Woo Express store" -msgstr "歡迎蒞臨你的 Woo Express 商店" - -#. translators: %s = site title -#: build/index.js:3 -msgid "Welcome to %s" -msgstr "歡迎造訪「%s」" - -#. translators: 1: completed tasks, 2: total tasks -#: build/index.js:2 -msgid "%1$d out of %2$d complete." -msgstr "已完成 %1$d 項,共 %2$d 項。" - -#: build/index.js:1 -msgid "You’re almost ready to start selling! Follow these steps to set up your test store." -msgstr "就快要可以開始販售了! 請依照這些步驟,設定測試商店。" - -#: build/index.js:1 -msgid "Hide setup list" -msgstr "隱藏設定清單" - -#: build/index.js:1 -msgid "The store setup process meets my needs." -msgstr "商店設定流程符合我的需求。" - -#: build/index.js:1 -msgid "The store setup is easy to complete." -msgstr "商店設定很容易完成。" - -#: build/index.js:1 -msgid "We appreciate your feedback!" -msgstr "感謝你的意見回饋!" - -#: build/index.js:1 -msgid "How was your experience?" -msgstr "你的使用體驗如何?" - -#: build/index.js:1 -msgid "Hide this" -msgstr "隱藏此項目" - -#: build/index.js:1 -msgid "Show setup task list" -msgstr "顯示設定任務清單" - -#: build/index.js:1 -msgid "Task List Options" -msgstr "任務清單選項" - -#: build/index.js:1 -msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." -msgstr "恭喜! 花點時間慶祝一下吧。 準備好推出商店後,只要升級為付費方案即可。 升級後,也會解鎖任務清單中即將開始的兩項任務。" - -#: build/index.js:1 -msgid "Woohoo! Your trial store has been set up!" -msgstr "Woo 哇! 你的免費試用商店已設定完畢!" - -#: build/index.js:1 -msgid "You're awesome! One less item on your to-do list ✅" -msgstr "太好了! 你又完成待辦清單上的一項任務了 ✅" - -#: build/index.js:1 -msgid "There was a problem setting up automated taxes. Please try again." -msgstr "設定自動計算稅額時發生問題。 請再試一次。" - -#: build/index.js:1 -msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." -msgstr "在免費試用期間,你可以進行營業稅相關設定,但還不能收取這些款項。 {{br/}}若要開始販售產品,請{{link}}立即升級{{/link}}。" - -#: build/index.js:1 -msgid "I don't charge sales tax" -msgstr "我不收營業稅" - -#: build/index.js:1 -msgid "Set up taxes manually" -msgstr "手動設定稅金" - -#: build/index.js:1 -msgid "Choose a tax partner" -msgstr "選擇稅務合作夥伴" - -#: build/index.js:1 -msgid "WooCommerce Tax can automate your sales tax calculations for you." -msgstr "WooCommerce Tax 可自動為你計算營業稅。" - -#: build/index.js:1 -msgid "Automate Taxes" -msgstr "自動處理稅務" - -#: build/index.js:1 -msgid "Automate taxes" -msgstr "自動處理稅務" - -#: build/index.js:1 -msgid "Head over to the tax rate settings screen to configure your tax rates" -msgstr "前往稅率設定畫面設定稅率" - -#: build/index.js:1 -msgid "Configure tax rates" -msgstr "設定稅率" - -#: build/index.js:1 -msgid "The address from which your business operates" -msgstr "公司營運地址" - -#: build/index.js:1 -msgid "Set store location" -msgstr "設定商店地點" - -#: build/index.js:1 -msgid "Please select a country / region" -msgstr "請選擇國家/地區" - -#: build/index.js:1 -msgid "Post code" -msgstr "郵遞區號" - -#: build/index.js:1 -msgid "Address" -msgstr "位址" - -#: build/index.js:1 -msgid "Country / Region" -msgstr "國家/地區或區域" - -#: build/index.js:1 -msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." -msgstr "按一下「設定」,即可啟用稅率和計算功能。 詳情請參閱{{link}}此處{{/link}}。" - -#: build/index.js:1 -msgid "Configure" -msgstr "設定" - -#: build/index.js:1 -msgid "Continue setup" -msgstr "繼續設定" - -#: build/index.js:1 -msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." -msgstr "安裝 WooCommerce Tax 和 Jetpack,即表示你同意{{link}}服務條款{{/link}}。" - -#: build/index.js:1 -msgid "100% free" -msgstr "完全免費" - -#: build/index.js:1 -msgid "Powered by {{link}}Jetpack{{/link}}" -msgstr "採用 {{link}}Jetpack{{/link}} 提供的技術" - -#: build/index.js:1 -msgid "{{strong}}Single{{/strong}} economic nexus compliance" -msgstr "{{strong}}單一{{/strong}}經濟關係規範" - -#: build/index.js:1 -msgid "Real-time sales tax calculation" -msgstr "營業稅即時計算" - -#: build/index.js:1 -msgid "Best for new stores" -msgstr "適合新商店" - -#: build/index.js:1 -msgid "WooCommerce Tax" -msgstr "WooCommerce Tax" - -#: build/index.js:1 -msgid "Get more sales" -msgstr "創造更多銷量" - -#: build/index.js:1 -msgid "Upgrade to a paid plan to unlock more features and start selling" -msgstr "升級為付費方案,即可解鎖更多功能並開始銷售" - -#: build/index.js:1 -msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." -msgstr "你正在免費試用中! 若要取得完整功能,請升級為付費方案。" - -#: build/index.js:1 src/welcome-modal/index.js:94 +#: src/welcome-modal/index.js:94 msgid "Welcome modal navigation illustration 1" msgstr "歡迎彈出式視窗導覽插圖 1" -#: build/index.js:1 src/welcome-modal/index.js:64 +#: src/welcome-modal/index.js:64 msgid "Welcome modal navigation illustration 2" msgstr "歡迎彈出式視窗導覽插圖 2" -#: build/index.js:1 -msgid "Setup required" -msgstr "需要設定" - -#: build/index.js:1 -msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." -msgstr "賺取並管理定期收益,並自動存款至指定的銀行帳號。" - -#: build/index.js:1 -msgid "Sell to international markets and accept more than 135 currencies with local payment methods." -msgstr "銷售到國際市場,並透過當地付款方式接受超過 135 種貨幣。" - -#: build/index.js:1 -msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." -msgstr "為顧客提供他們偏好的付款方式,包括簽帳金融卡和信用卡付款、Apple Pay、Sofort、SEPA、iDeal 等。" - -#: build/index.js:1 -msgid "Accepted payment methods include:" -msgstr "接受的付款方式包括:" - -#: build/index.js:1 -msgid "& more." -msgstr "及其他方式。" - #: includes/templates/html-admin-page-addons-landing-page.php:27 msgid "Browse Extensions" msgstr "瀏覽擴充功能" @@ -417,7 +99,7 @@ msgstr "選擇佈景主題" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: build/index.js:3 src/index.js:189 +#: src/index.js:189 msgid "Plugins" msgstr "外掛程式" @@ -453,27 +135,27 @@ msgstr "申請" msgid "A custom navigation experience that is optimized for selling." msgstr "針對銷售最佳化的自訂導覽體驗。" -#: build/index.js:1 src/welcome-modal/index.js:114 +#: src/welcome-modal/index.js:114 msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." msgstr "WooCommerce 讓你事半功倍。 深入瞭解我們全新的導覽 — 或自行探索。" -#: build/index.js:1 src/welcome-modal/index.js:107 +#: src/welcome-modal/index.js:107 msgid "Move faster with our new navigation" msgstr "我們全新的導覽讓你事半功倍" -#: build/index.js:1 src/welcome-modal/index.js:83 +#: src/welcome-modal/index.js:83 msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." msgstr "每次返回 WordPress.com 儀表板,都能查看提升商店表現的提示和洞察報告。" -#: build/index.js:1 src/welcome-modal/index.js:77 +#: src/welcome-modal/index.js:77 msgid "Meet your new Home" msgstr "認識新首頁" -#: build/index.js:3 src/task-headers/add-domain.js:34 +#: src/task-headers/add-domain.js:34 msgid "Choose a new website address for your store or transfer one you already own." msgstr "為商店選擇一個新的網站位址,或移轉現有網站位址。" -#: build/index.js:3 src/task-headers/add-domain.js:22 +#: src/task-headers/add-domain.js:22 msgid "Add a domain illustration" msgstr "新增網域圖例" @@ -521,53 +203,43 @@ msgstr "已成功新增直接銀行轉帳詳細資料" msgid "Please enter an account number or IBAN" msgstr "請輸入帳號或 IBAN" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "免費試用期只有管理員和商店經理可以下單。 如果你已準備好接受顧客付款,請{{link}}升級到付費方案{{/link}}。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "離線付款方式" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "查看更多" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "試試其他付款服務供應商。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "其他付款服務供應商" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "讓顧客擁有更多付款選項。" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "其他付款選項" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "準備好在線上接受付款" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "選擇付款供應商" -#: build/index.js:3 #: src/payment-gateway-suggestions/components/WCPay/utils.js:15 msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." msgstr "連結到 WooCommerce Payments 時發生錯誤。 請再試一次,或稍後再從商店設定連結。" @@ -584,196 +256,180 @@ msgstr "同意分享非敏感{{link}}使用狀況資料{{/link}},可以協助 msgid "Help us build a better WooCommerce Payments experience" msgstr "協助我們建立更流暢的 WooCommerce Payments 使用體驗" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " msgstr "使用 WooCommerce Payments,即表示你同意遵守我們的{{tosLink}}服務條款{{/tosLink}},並確認已詳閱我們的{{privacyLink}}隱私權政策{{/privacyLink}} " -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 msgid "Get ready to accept payments" msgstr "準備好接受付款" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "是的,我要加入!" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "建立更強大的 WooCommerce" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "更新喜好設定時發生問題" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "設定你的 %(title)s 帳號" #. translators: %s = title of the payment gateway to install -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "安裝 %s" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "點選下方按鈕即可管理此付款閘道的設定" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "連結" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "繼續" -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "儲存你的付款設定時發生問題" #. translators: %s = title of the payment gateway -#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "%s 設定成功" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "推薦" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "當地合作夥伴" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "完成設定手續" -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "啓用" -#: build/index.js:1 src/launch-store/index.js:392 +#: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "仍要推出" -#: build/index.js:1 src/launch-store/index.js:382 +#: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "推出商店前的檢查事項" -#: build/index.js:1 src/launch-store/index.js:379 +#: src/launch-store/index.js:379 msgid "Before you launch" msgstr "推出之前" -#: build/index.js:1 src/launch-store/index.js:318 +#: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "為新網站選擇一個位址,或移轉現有網域。" -#: build/index.js:1 src/launch-store/index.js:314 +#: src/launch-store/index.js:314 msgid "List products" msgstr "產品上架" -#: build/index.js:1 src/launch-store/index.js:310 +#: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "為你的商店新增產品或服務,立即開始銷售。 手動建立產品,或從現有商店匯入。" -#: build/index.js:1 src/launch-store/index.js:309 +#: src/launch-store/index.js:309 msgid "List your products" msgstr "將你的產品上架" -#: build/index.js:1 src/launch-store/index.js:301 +#: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "為顧客提供簡單方便的付款方式! 設定一或多個快速安全的付款方式,可選擇線上收款或親自收款。 " -#: build/index.js:1 src/launch-store/index.js:300 src/launch-store/index.js:305 +#: src/launch-store/index.js:300 src/launch-store/index.js:305 msgid "Get paid" msgstr "收取付款" -#: build/index.js:1 src/launch-store/index.js:262 src/launch-store/index.js:398 +#: src/launch-store/index.js:262 src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "你可以隨時在「設定」下還原此設定。" -#: build/index.js:1 src/launch-store/index.js:250 +#: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "你已經準備好推出商店了,準備慶祝吧! Woo!" -#: build/index.js:1 src/launch-store/index.js:247 +#: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "準備好推出你的商店了嗎?" -#: build/index.js:1 src/launch-store/index.js:212 +#: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "改變主意了? 更新「隱私權」設定,就能將商店設回私人模式。" -#: build/index.js:1 src/launch-store/index.js:206 +#: src/launch-store/index.js:206 msgid "View your store" msgstr "查看商店" -#: build/index.js:1 src/launch-store/index.js:186 +#: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "恭喜你推出了 WooCommerce 商店。 好好慶祝一番,別忘了分享這個好消息!" -#: build/index.js:1 src/launch-store/index.js:182 +#: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "Woo! 你辦到了!" -#: build/index.js:1 src/launch-store/index.js:142 +#: src/launch-store/index.js:142 msgid "Launching your store" msgstr "正在推出商店" -#: build/index.js:1 src/launch-store/index.js:71 +#: src/launch-store/index.js:71 msgid "Copied" msgstr "已複製" -#: build/index.js:3 src/homescreen-banner/index.js:61 +#: src/homescreen-banner/index.js:61 msgid "Dismiss this free trial informational banner." msgstr "關閉此免費試用資訊橫幅。" -#: build/index.js:3 src/homescreen-banner/index.js:45 +#: src/homescreen-banner/index.js:45 msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." msgstr "這是你的免費試用測試商店,你可以在這裡開始探索可用的功能! 若要深入瞭解免費試用,請按一下「深入瞭解」。" -#: build/index.js:1 src/free-trial/tax/components/location.js:56 +#: src/free-trial/tax/components/location.js:56 msgid "There was a problem saving your store location" msgstr "儲存商店地點時發生問題" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:62 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "按一下「測試付款」,即表示你同意{{tosLink}}服務條款{{/tosLink}}" -#: build/53.js:1 src/free-trial/fills/task-headers/woocommerce-payments.js:54 +#: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "利用簡單的多合一選項,增強付款功能。 驗證企業詳細資料就能開始使用 WooCommerce Payments 測試交易。" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:50 +#: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "測試付款" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:40 +#: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "為顧客提供簡單方便的付款方式! 設定並測試快速安全的付款方式,可選擇線上收款或親自收款。 " -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:34 +#: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "是時候測試付款了" -#: build/53.js:1 src/free-trial/fills/task-headers/payments.js:22 +#: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "付款插圖" @@ -834,7 +490,6 @@ msgstr "使用 WooCommerce 擴充功能自訂商店,以完美滿足你的業 #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 -#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "透過擴充功能讓你的商店更上一層樓" @@ -848,7 +503,7 @@ msgstr "是時候慶祝一下了! 準備好推出你的商店了嗎?" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 -#: includes/tasks/class-wc-calypso-task-launch-site.php:68 build/index.js:1 +#: includes/tasks/class-wc-calypso-task-launch-site.php:68 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "推出你的商店" @@ -858,7 +513,7 @@ msgid "You've already launched your store" msgstr "你已經推出商店了" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 -#: includes/tasks/class-wc-calypso-task-appearance.php:50 build/index.js:3 +#: includes/tasks/class-wc-calypso-task-appearance.php:50 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "2 分鐘" @@ -872,9 +527,9 @@ msgid "Domain" msgstr "網域" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 -#: includes/tasks/class-wc-calypso-task-add-domain.php:94 build/index.js:1 -#: build/index.js:3 src/launch-store/index.js:322 -#: src/task-headers/add-domain.js:31 src/task-headers/add-domain.js:44 +#: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: src/launch-store/index.js:322 src/task-headers/add-domain.js:31 +#: src/task-headers/add-domain.js:44 msgid "Add a domain" msgstr "新增網域" @@ -906,7 +561,6 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 -#: build/index.js:1 build/marketing.js:1 build/plugins.js:1 msgid "Upgrade now" msgstr "立即升級" @@ -918,16 +572,16 @@ msgstr "試用期只能送出測試訂單! 若要接收顧客的訂單,請 msgid "Start selling to everyone" msgstr "開始向所有人銷售" -#: includes/class-wc-calypso-bridge-setup.php:374 +#: includes/class-wc-calypso-bridge-setup.php:387 msgid "My Account" msgstr "我的帳號" -#: includes/class-wc-calypso-bridge-setup.php:372 +#: includes/class-wc-calypso-bridge-setup.php:385 msgid "Contact" msgstr "聯絡頁面" #: includes/class-wc-calypso-bridge-fse.php:53 -#: includes/class-wc-calypso-bridge-setup.php:363 +#: includes/class-wc-calypso-bridge-setup.php:376 msgid "Home" msgstr "主頁" @@ -978,7 +632,6 @@ msgid "Discover" msgstr "探索" #: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 -#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "管理" @@ -1023,15 +676,11 @@ msgstr "意見反應" msgid "Save big with WooCommerce Payments" msgstr "透過 WooCommerce Payments 省更多" -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "不用了,謝謝" -#: build/index.js:1 build/payment-gateway-suggestions.js:1 -#: build/payment-gateway-suggestions.js:2 -#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -1223,17 +872,13 @@ msgstr "商店" msgid "Stats" msgstr "統計資料" -#: build/index.js:1 -msgid "City" -msgstr "城市" - -#: build/index.js:1 src/free-trial/tax/components/location.js:23 +#: src/free-trial/tax/components/location.js:23 msgid "Continue" msgstr "繼續" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 -#: build/index.js:3 src/homescreen-banner/index.js:57 +#: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "瞭解更多。" diff --git a/languages/wc-calypso-bridge.pot b/languages/wc-calypso-bridge.pot index dbc37995..8e7d41ad 100644 --- a/languages/wc-calypso-bridge.pot +++ b/languages/wc-calypso-bridge.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the WooCommerce Calypso Bridge plugin. msgid "" msgstr "" -"Project-Id-Version: WooCommerce Calypso Bridge 2.2.16\n" +"Project-Id-Version: WooCommerce Calypso Bridge 2.2.17\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-calypso-bridge\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: 2023-09-28T13:11:12+00:00\n" +"POT-Creation-Date: 2023-10-11T08:32:32+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.8.1\n" @@ -31,81 +31,82 @@ msgid "Automattic" msgstr "" #. translators: %s: extensions count -#: includes/class-wc-calypso-bridge-addons.php:88 +#: includes/class-wc-calypso-bridge-addons.php:87 msgid "Extensions %s" msgstr "" -#: includes/class-wc-calypso-bridge-addons.php:89 +#: includes/class-wc-calypso-bridge-addons.php:88 msgid "WooCommerce extensions" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:43 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:45 msgid "Add New" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:82 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:85 msgid "Feedback" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:180 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:183 msgid "My Home" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:272 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:275 msgid "Orders" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:280 msgid "WooCommerce Settings" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:277 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:280 #: store-on-wpcom/api/class-wc-calypso-bridge-send-invoice-controller.php:86 msgid "WooCommerce" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:281 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:284 msgid "WooCommerce Status" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:288 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:291 msgid "Legacy Reports" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:298 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:301 msgid "Customers" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:302 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 msgid "Extensions" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:308 msgid "WooCommerce Subscriptions" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:305 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:308 +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:76 msgid "Manage" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:312 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:316 msgid "Discover" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:461 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:470 msgid "Anti-Spam" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:482 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:491 msgid "Jetpack Status" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:493 msgid "Jetpack Stats" msgstr "" -#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:484 +#: includes/class-wc-calypso-bridge-ecommerce-admin-menu.php:493 msgid "Stats" msgstr "" @@ -257,6 +258,9 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-orders-notice.php:49 #: includes/templates/html-admin-page-addons-landing-page.php:24 +#: build/index.js:1 +#: build/marketing.js:1 +#: build/plugins.js:1 msgid "Upgrade now" msgstr "" @@ -269,7 +273,8 @@ msgstr "" #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:59 #: includes/free-trial/class-wc-calypso-bridge-free-trial-plugins-screen.php:61 -#: src/index.js:189 +#: build/index.js:3 +#: src/index.js:199 msgid "Plugins" msgstr "" @@ -283,6 +288,7 @@ msgstr "" #: includes/notes/class-wc-calypso-bridge-cart-checkout-blocks-default-inbox-note.php:52 #: includes/notes/class-wc-calypso-bridge-payments-remind-me-later-note.php:76 +#: build/index.js:3 #: src/homescreen-banner/index.js:57 msgid "Learn more" msgstr "" @@ -301,6 +307,8 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-add-domain.php:35 #: includes/tasks/class-wc-calypso-task-add-domain.php:94 +#: build/index.js:1 +#: build/index.js:3 #: src/launch-store/index.js:322 #: src/task-headers/add-domain.js:31 #: src/task-headers/add-domain.js:44 @@ -317,6 +325,7 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-add-domain.php:59 #: includes/tasks/class-wc-calypso-task-appearance.php:50 +#: build/index.js:3 #: src/task-headers/products.js:46 msgid "2 minutes" msgstr "" @@ -364,6 +373,7 @@ msgstr "" #: includes/tasks/class-wc-calypso-task-launch-site.php:35 #: includes/tasks/class-wc-calypso-task-launch-site.php:38 #: includes/tasks/class-wc-calypso-task-launch-site.php:68 +#: build/index.js:1 #: src/launch-store/index.js:155 msgid "Launch your store" msgstr "" @@ -379,6 +389,7 @@ msgstr "" #: includes/templates/html-admin-page-addons-landing-page.php:15 #: includes/templates/html-admin-page-addons-landing-page.php:32 #: includes/templates/html-admin-page-addons-landing-page.php:35 +#: build/plugins.js:1 msgid "Take your store to the next level, with extensions" msgstr "" @@ -573,123 +584,159 @@ msgstr "" msgid "You’re ready to start testing the features and benefits of WooCommerce Payments" msgstr "" +#: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:22 #: src/free-trial/fills/task-headers/woocommerce-payments.js:29 msgid "Payment illustration" msgstr "" +#: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:34 #: src/free-trial/fills/task-headers/woocommerce-payments.js:41 msgid "It’s time to test payments" msgstr "" +#: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:40 msgid "Give your customers an easy and convenient way to pay! Set up and test some of our fast and secure online or in person payment methods." msgstr "" +#: build/53.js:1 #: src/free-trial/fills/task-headers/payments.js:50 #: src/free-trial/fills/task-headers/woocommerce-payments.js:84 msgid "Test payments" msgstr "" +#: build/53.js:1 #: src/free-trial/fills/task-headers/woocommerce-payments.js:54 msgid "Power your payments with a simple, all-in-one option. Verify your business details to start testing transactions with WooCommerce Payments." msgstr "" +#: build/53.js:1 #: src/free-trial/fills/task-headers/woocommerce-payments.js:62 msgid "By clicking \"Test payments\", you agree to the {{tosLink}}Terms of Service{{/tosLink}}" msgstr "" -#: src/free-trial/tax/components/location.js:23 -msgid "Continue" +#: build/index.js:1 +msgid "& more." msgstr "" -#: src/free-trial/tax/components/location.js:56 -msgid "There was a problem saving your store location" +#: build/index.js:1 +msgid "Accepted payment methods include:" msgstr "" -#: src/homescreen-banner/index.js:45 -msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." +#: build/index.js:1 +msgid "Offer your customers their preferred way to pay including debit and credit card payments, Apple Pay, Sofort, SEPA, iDeal and many more." msgstr "" -#: src/homescreen-banner/index.js:61 -msgid "Dismiss this free trial informational banner." +#: build/index.js:1 +msgid "Sell to international markets and accept more than 135 currencies with local payment methods." +msgstr "" + +#: build/index.js:1 +msgid "Earn and manage recurring revenue and get automatic deposits into your nominated bank account." msgstr "" +#: build/index.js:1 +msgid "Setup required" +msgstr "" + +#: build/index.js:1 #: src/launch-store/index.js:71 msgid "Copied" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:142 msgid "Launching your store" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:182 msgid "Woo! You did it!" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:186 msgid "Congratulations on launching your WooCommerce store. Take a moment to celebrate and share the news!" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:206 msgid "View your store" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:212 msgid "Changed your mind? You can make your store private again by updating your Privacy settings." msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:247 msgid "Ready to launch your store?" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:250 msgid "It's time to celebrate – you're ready to launch your store! Woo!" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:262 #: src/launch-store/index.js:398 msgid "You can always revert this under Settings." msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:300 #: src/launch-store/index.js:305 msgid "Get paid" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:301 msgid "Give your customers an easy and convenient way to pay! Set up one (or more!) of our fast and secure online or in person payment methods." msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:309 msgid "List your products" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:310 msgid "Start selling by adding products or services to your store. Create your products manually, or import them from an existing store." msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:314 msgid "List products" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:318 msgid "Choose an address for your new website or transfer a domain you already own." msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:379 msgid "Before you launch" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:382 msgid "A few things to check before launching your store" msgstr "" +#: build/index.js:1 #: src/launch-store/index.js:392 msgid "Launch anyway" msgstr "" +#: build/index.js:1 +#: build/payment-gateway-suggestions.js:1 +#: build/payment-gateway-suggestions.js:2 +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Action.js:27 #: src/payment-gateway-suggestions/components/Setup/Configure.js:159 #: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:134 @@ -697,131 +744,526 @@ msgstr "" msgid "Get started" msgstr "" +#: build/index.js:1 +#: src/welcome-modal/index.js:64 +msgid "Welcome modal navigation illustration 2" +msgstr "" + +#: build/index.js:1 +#: src/welcome-modal/index.js:77 +msgid "Meet your new Home" +msgstr "" + +#: build/index.js:1 +#: src/welcome-modal/index.js:83 +msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." +msgstr "" + +#: build/index.js:1 +#: src/welcome-modal/index.js:94 +msgid "Welcome modal navigation illustration 1" +msgstr "" + +#: build/index.js:1 +#: src/welcome-modal/index.js:107 +msgid "Move faster with our new navigation" +msgstr "" + +#: build/index.js:1 +#: src/welcome-modal/index.js:114 +msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." +msgstr "" + +#: build/index.js:1 +msgid "You're currently using a free trial! To get access to the full range of features, please upgrade to a paid plan." +msgstr "" + +#: build/index.js:1 +msgid "Upgrade to a paid plan to unlock more features and start selling" +msgstr "" + +#: build/index.js:1 +msgid "Get more sales" +msgstr "" + +#: build/index.js:1 +msgid "WooCommerce Tax" +msgstr "" + +#: build/index.js:1 +msgid "Best for new stores" +msgstr "" + +#: build/index.js:1 +msgid "Real-time sales tax calculation" +msgstr "" + +#: build/index.js:1 +msgid "{{strong}}Single{{/strong}} economic nexus compliance" +msgstr "" + +#: build/index.js:1 +msgid "Powered by {{link}}Jetpack{{/link}}" +msgstr "" + +#: build/index.js:1 +msgid "100% free" +msgstr "" + +#: build/index.js:1 +msgid "By installing WooCommerce Tax and Jetpack you agree to the {{link}}Terms of Service{{/link}}." +msgstr "" + +#: build/index.js:1 +msgid "Continue setup" +msgstr "" + +#: build/index.js:1 +msgid "Configure" +msgstr "" + +#: build/index.js:1 +msgid "By clicking \"Configure\" you're enabling tax rates and calculations. More info {{link}}here{{/link}}." +msgstr "" + +#: build/index.js:1 +msgid "Country / Region" +msgstr "" + +#: build/index.js:1 +msgid "Address" +msgstr "" + +#: build/index.js:1 +msgid "Post code" +msgstr "" + +#: build/index.js:1 +msgid "City" +msgstr "" + +#: build/index.js:1 +#: src/free-trial/tax/components/location.js:23 +msgid "Continue" +msgstr "" + +#: build/index.js:1 +#: src/free-trial/tax/components/location.js:56 +msgid "There was a problem saving your store location" +msgstr "" + +#: build/index.js:1 +msgid "Please select a country / region" +msgstr "" + +#: build/index.js:1 +msgid "Set store location" +msgstr "" + +#: build/index.js:1 +msgid "The address from which your business operates" +msgstr "" + +#: build/index.js:1 +msgid "Configure tax rates" +msgstr "" + +#: build/index.js:1 +msgid "Head over to the tax rate settings screen to configure your tax rates" +msgstr "" + +#: build/index.js:1 +msgid "Automate taxes" +msgstr "" + +#: build/index.js:1 +msgid "Automate Taxes" +msgstr "" + +#: build/index.js:1 +msgid "WooCommerce Tax can automate your sales tax calculations for you." +msgstr "" + +#: build/index.js:1 +msgid "Choose a tax partner" +msgstr "" + +#: build/index.js:1 +msgid "Set up taxes manually" +msgstr "" + +#: build/index.js:1 +msgid "I don't charge sales tax" +msgstr "" + +#: build/index.js:1 +msgid "During the free trial period you can configure your sales tax settings, but not collect it. {{br/}}To start selling products, {{link}}upgrade now{{/link}}." +msgstr "" + +#: build/index.js:1 +msgid "There was a problem setting up automated taxes. Please try again." +msgstr "" + +#: build/index.js:1 +msgid "You're awesome! One less item on your to-do list ✅" +msgstr "" + +#: build/index.js:1 +msgid "Woohoo! Your trial store has been set up!" +msgstr "" + +#: build/index.js:1 +msgid "Congratulations! Take a moment to celebrate. And once you're ready to launch your store, all you have to do is upgrade to a paid plan. This will also unlock the two upcoming tasks in the task list." +msgstr "" + +#: build/index.js:1 +msgid "Task List Options" +msgstr "" + +#: build/index.js:1 +msgid "Show setup task list" +msgstr "" + +#: build/index.js:1 +msgid "Hide this" +msgstr "" + +#: build/index.js:1 +msgid "How was your experience?" +msgstr "" + +#: build/index.js:1 +msgid "We appreciate your feedback!" +msgstr "" + +#: build/index.js:1 +msgid "The store setup is easy to complete." +msgstr "" + +#: build/index.js:1 +msgid "The store setup process meets my needs." +msgstr "" + +#: build/index.js:1 +msgid "Hide setup list" +msgstr "" + +#: build/index.js:1 +msgid "You’re almost ready to start selling! Follow these steps to set up your test store." +msgstr "" + +#. translators: 1: completed tasks, 2: total tasks +#: build/index.js:2 +msgid "%1$d out of %2$d complete." +msgstr "" + +#. translators: %s = site title +#: build/index.js:3 +msgid "Welcome to %s" +msgstr "" + +#: build/index.js:3 +msgid "Welcome to your Woo Express store" +msgstr "" + +#: build/index.js:3 +msgid "Only a few more tasks to tick off!" +msgstr "" + +#: build/index.js:3 +msgid "Woo! We’ve made it to the last step! Great job" +msgstr "" + +#: build/index.js:3 +msgid "Everything is looking great, keep it up!" +msgstr "" + +#: build/index.js:3 +#: src/task-headers/add-domain.js:22 +msgid "Add a domain illustration" +msgstr "" + +#: build/index.js:3 +#: src/task-headers/add-domain.js:34 +msgid "Choose a new website address for your store or transfer one you already own." +msgstr "" + +#: build/index.js:3 +#: src/task-headers/products.js:26 +msgid "Products illustration" +msgstr "" + +#: build/index.js:3 +#: src/task-headers/appearance.js:29 +msgid "Appearance illustration" +msgstr "" + +#: build/index.js:3 +#: src/homescreen-banner/index.js:45 +msgid "This is your free trial test store where you can start exploring what's available! To find out more about the free trial, click \"Learn more\"." +msgstr "" + +#: build/index.js:3 +#: src/homescreen-banner/index.js:61 +msgid "Dismiss this free trial informational banner." +msgstr "" + +#: build/index.js:3 +#: src/payment-gateway-suggestions/components/WCPay/utils.js:15 +msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." +msgstr "" + +#: build/marketing.js:1 +msgid "Get ready to grow your business" +msgstr "" + +#: build/marketing.js:1 +msgid "Reach more customers and grow your business with our built-in marketing and advertising tools. Upgrade to a paid plan to unlock our powerful marketing tools, and start growing your business today!" +msgstr "" + +#: build/marketing.js:1 +msgid "Grow your business with hundreds of extensions" +msgstr "" + +#: build/marketing.js:1 +msgid "Discover our built-in marketing tools to reach more customers and boost sales" +msgstr "" + +#: build/marketing.js:1 +msgid "Automate your marketing" +msgstr "" + +#: build/marketing.js:1 +msgid "Drive sales and build loyalty through automated marketing messages that respond to your customer’s purchase data." +msgstr "" + +#: build/marketing.js:1 +msgid "Try AutomateWoo" +msgstr "" + +#: build/marketing.js:1 +msgid "Advertise your products on Google" +msgstr "" + +#: build/marketing.js:1 +msgid "Reach active shoppers across Google with product listings and ads that you can create and manage straight from your dashboard." +msgstr "" + +#: build/marketing.js:1 +msgid "Reach more customers across social media" +msgstr "" + +#: build/marketing.js:1 +msgid "Get your products in front of millions of engaged shoppers browsing TikTok, Pinterest, and Meta platforms with social advertising." +msgstr "" + +#: build/marketing.js:1 +msgid "Increase customer loyalty with gift cards" +msgstr "" + +#: build/marketing.js:1 +msgid "Start selling and accepting digital gift cards to increase customer loyalty, drive more revenue, and introduce new customers to your store." +msgstr "" + +#: build/marketing.js:1 +msgid "Create digital gift cards" +msgstr "" + +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:99 msgid "Enable" msgstr "" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/Action.js:138 msgid "Finish setup" msgstr "" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:80 msgid "Local Partner" msgstr "" +#: build/payment-gateway-suggestions.js:1 #: src/payment-gateway-suggestions/components/List/Item.js:81 msgid "Recommended" msgstr "" #. translators: %s = title of the payment gateway +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:75 msgid "%s configured successfully" msgstr "" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:84 #: src/payment-gateway-suggestions/plugins/Bacs.js:63 msgid "There was a problem saving your payment settings" msgstr "" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:100 msgid "Proceed" msgstr "" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:133 msgid "Connect" msgstr "" +#: build/payment-gateway-suggestions.js:2 #: src/payment-gateway-suggestions/components/Setup/Configure.js:152 msgid "You can manage this payment gateway's settings by clicking the button below" msgstr "" #. translators: %s = title of the payment gateway to install +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:88 msgid "Install %s" msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/Setup/Setup.js:120 msgid "Configure your %(title)s account" msgstr "" +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 +msgid "Get ready to accept payments" +msgstr "" + +#: build/payment-gateway-suggestions.js:3 +#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 +msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " +msgstr "" + +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:50 msgid "There was a problem updating your preferences" msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:109 msgid "Build a better WooCommerce" msgstr "" +#: build/payment-gateway-suggestions.js:3 +msgid "Get improved features and faster fixes by sharing non-sensitive data via {{link}}usage tracking{{/link}} that shows us how WooCommerce is used. No personal data is tracked or stored." +msgstr "" + +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:126 #: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:55 msgid "No thanks" msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/components/WCPay/Modal.js:127 msgid "Yes, count me in!" msgstr "" -#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:36 -msgid "Get ready to accept payments" -msgstr "" - -#: src/payment-gateway-suggestions/components/WCPay/Suggestion.js:46 -msgid "By using WooCommerce Payments you agree to be bound by our {{tosLink}}Terms of Service{{/tosLink}} and acknowledge that you have read our {{privacyLink}}Privacy Policy{{/privacyLink}} " -msgstr "" - -#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:29 -msgid "Help us build a better WooCommerce Payments experience" -msgstr "" - -#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:34 -msgid "By agreeing to share non-sensitive {{link}}usage data{{/link}}, you’ll help us improve features and optimize the WooCommerce Payments experience. You can opt out at any time." -msgstr "" - -#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:54 -msgid "I agree" -msgstr "" - -#: src/payment-gateway-suggestions/components/WCPay/utils.js:15 -msgid "There was an error connecting to WooCommerce Payments. Please try again or connect later in store settings." -msgstr "" - +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:213 msgid "Choose a payment provider" msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:217 msgid "To get ready to accept online payments" msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:223 msgid "Additional payment options" msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:227 msgid "Give your customers additional choices in ways to pay." msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:232 #: src/payment-gateway-suggestions/index.js:311 msgid "Other payment providers" msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:236 msgid "Try one of the alternative payment providers." msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:257 msgid "See more" msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:266 msgid "Offline payment methods" msgstr "" +#: build/payment-gateway-suggestions.js:3 #: src/payment-gateway-suggestions/index.js:285 msgid "Only Administrators and Store Managers can place orders during the free trial. If you are ready to accept payments from customers, {{link}}upgrade to a paid plan{{/link}}." msgstr "" +#: build/plugins.js:1 +msgid "Make anything happen, with plugins" +msgstr "" + +#: build/plugins.js:1 +msgid "Add extra functionality and features to your website at a click of a button. Upgrade to a paid plan and gain access to thousands of free and paid WordPress plugins. Curious to find out what’s possible?" +msgstr "" + +#: build/plugins.js:1 +msgid "Browse plugins" +msgstr "" + +#: build/plugins.js:1 +msgid "Customize your website" +msgstr "" + +#: build/plugins.js:1 +msgid "From SEO tools to multi-language functionality, with WordPress plugins, you can customize your website to do anything you need." +msgstr "" + +#: build/plugins.js:1 +msgid "Extend your store" +msgstr "" + +#: build/plugins.js:1 +msgid "Looking to expand on the ecommerce functionality of your store? The Woo Marketplace has hundreds of trusted extensions designed specifically for your store." +msgstr "" + +#: build/plugins.js:1 +msgid "Discover Extensions" +msgstr "" + +#: build/plugins.js:1 +msgid "Do it your way" +msgstr "" + +#: build/plugins.js:1 +msgid "Can’t find what you’re looking for? Hire one of our expert agencies! From new extensions to full-store builds, our Woo Expertsthey can help you create the store of your dreams." +msgstr "" + +#: build/plugins.js:1 +msgid "Hire an expert" +msgstr "" + +#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:29 +msgid "Help us build a better WooCommerce Payments experience" +msgstr "" + +#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:34 +msgid "By agreeing to share non-sensitive {{link}}usage data{{/link}}, you’ll help us improve features and optimize the WooCommerce Payments experience. You can opt out at any time." +msgstr "" + +#: src/payment-gateway-suggestions/components/WCPay/UsageModal.js:54 +msgid "I agree" +msgstr "" + #: src/payment-gateway-suggestions/plugins/Bacs.js:32 msgid "Please enter an account number or IBAN" msgstr "" @@ -865,43 +1307,3 @@ msgstr "" #: src/payment-gateway-suggestions/plugins/Bacs.js:160 msgid "Save" msgstr "" - -#: src/task-headers/add-domain.js:22 -msgid "Add a domain illustration" -msgstr "" - -#: src/task-headers/add-domain.js:34 -msgid "Choose a new website address for your store or transfer one you already own." -msgstr "" - -#: src/task-headers/appearance.js:29 -msgid "Appearance illustration" -msgstr "" - -#: src/task-headers/products.js:26 -msgid "Products illustration" -msgstr "" - -#: src/welcome-modal/index.js:64 -msgid "Welcome modal navigation illustration 2" -msgstr "" - -#: src/welcome-modal/index.js:77 -msgid "Meet your new Home" -msgstr "" - -#: src/welcome-modal/index.js:83 -msgid "Get tips and insights on your store’s performance every time you jump back into your WordPress.com dashboard." -msgstr "" - -#: src/welcome-modal/index.js:94 -msgid "Welcome modal navigation illustration 1" -msgstr "" - -#: src/welcome-modal/index.js:107 -msgid "Move faster with our new navigation" -msgstr "" - -#: src/welcome-modal/index.js:114 -msgid "Getting things done with WooCommerce just got faster. Learn more about our new navigation — or go ahead and explore on your own." -msgstr "" From 72e2371a19bca209216b7e159a72ed71756e35ee Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Wed, 11 Oct 2023 11:41:52 +0300 Subject: [PATCH 74/81] =?UTF-8?q?=F0=9F=94=96=20Bump=20versions=20to=202.2?= =?UTF-8?q?.17?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- includes/class-wc-calypso-bridge-addons.php | 2 +- includes/class-wc-calypso-bridge-ecommerce-admin-menu.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/class-wc-calypso-bridge-addons.php b/includes/class-wc-calypso-bridge-addons.php index 1d594118..baeaf0b0 100644 --- a/includes/class-wc-calypso-bridge-addons.php +++ b/includes/class-wc-calypso-bridge-addons.php @@ -5,7 +5,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.0.6 - * @version x.x.x + * @version 2.2.17 */ defined( 'ABSPATH' ) || exit; diff --git a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php index 82ace16b..1344b5bc 100644 --- a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php +++ b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php @@ -4,7 +4,7 @@ * Class Ecommerce_Atomic_Admin_Menu. * * @since 1.9.8 - * @version x.x.x + * @version 2.2.17 * * The admin menu controller for Ecommerce WoA sites. */ From 958d348b9d6892459d7bf49d39e43ec23f516227 Mon Sep 17 00:00:00 2001 From: Chris Runnells Date: Wed, 11 Oct 2023 19:16:23 -1000 Subject: [PATCH 75/81] Add filter for get-recommended-themes API call --- includes/class-wc-calypso-bridge-filters.php | 104 +++++++++++++++++++ 1 file changed, 104 insertions(+) diff --git a/includes/class-wc-calypso-bridge-filters.php b/includes/class-wc-calypso-bridge-filters.php index bd6924ff..5b9c4658 100644 --- a/includes/class-wc-calypso-bridge-filters.php +++ b/includes/class-wc-calypso-bridge-filters.php @@ -60,6 +60,11 @@ public function init() { add_filter( 'pre_option_woocommerce_merchant_email_notifications', static function() { return 'no'; } ); + + /** + * Filter recommended themes + */ + add_filter( '__experimental_woocommerce_rest_get_recommended_themes', array( $this, 'woocommerce_filter_get_recommended_themes'), 10, 3); } /** @@ -121,6 +126,105 @@ public function add_woocommerce_task_list_options_to_jetpack_sync( $allowed_opti return array_merge( $allowed_options, $woocommerce_task_list_options ); } + + /** + * Function to filter the theme recommendations for sites on WPCOM + * + * @param array $result + * @param string $industry + * @param string $currency + * @return array + */ + public function woocommerce_filter_get_recommended_themes( $result, $industry, $currency ) { + $result['themes'] = array( + array( + 'name' => 'Tsubaki', + 'price' => 'Free', + 'color_palettes' => array(), + 'total_palettes' => 0, + 'slug' => 'tsubaki', + 'is_active' => false, + 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tsubaki/screenshot.png', + 'link_url' => 'https://wordpress.com/theme/tsubaki/', + ), + array( + 'name' => 'Tazza', + 'price' => 'Free', + 'color_palettes' => array(), + 'total_palettes' => 0, + 'slug' => 'tazza', + 'is_active' => false, + 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tazza/screenshot.png', + 'link_url' => 'https://wordpress.com/theme/tazza/', + ), + array( + 'name' => 'Amulet', + 'price' => 'Free', + 'color_palettes' => array( + array( + 'title' => 'Default', + 'primary' => '#FEFBF3', + 'secondary' => '#7F7E7A', + ), + array( + 'title' => 'Brown Sugar', + 'primary' => '#EFEBE0', + 'secondary' => '#AC6239', + ), + array( + 'title' => 'Midnight', + 'primary' => '#161514', + 'secondary' => '#AFADA7', + ), + array( + 'title' => 'Olive', + 'primary' => '#FEFBF3', + 'secondary' => '#7F7E7A', + ), + ), + 'total_palettes' => 5, + 'slug' => 'amulet', + 'is_active' => false, + 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/amulet/screenshot.png', + 'link_url' => 'https://wordpress.com/theme/amulet/', + ), + array( + 'name' => 'Zaino', + 'price' => 'Free', + 'color_palettes' => array( + array( + 'title' => 'Default', + 'primary' => '#202124', + 'secondary' => '#E3CBC0', + ), + array( + 'title' => 'Aubergine', + 'primary' => '#1B1031', + 'secondary' => '#E1746D', + ), + array( + 'title' => 'Block out', + 'primary' => '#FF5252', + 'secondary' => '#252525', + ), + array( + 'title' => 'Canary', + 'primary' => '#FDFF85', + 'secondary' => '#353535', + ), + ), + 'total_palettes' => 11, + 'slug' => 'zaino', + 'is_active' => false, + 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/zaino/screenshot.png', + 'link_url' => 'https://wordpress.com/theme/zaino/', + ), + ); + + $result['_links']['browse_all']['href'] = 'https://wordpress.com/themes/'; + + return $result; + } } WC_Calypso_Bridge_Filters::get_instance(); From 9c750bf254aeb3fd1a708bc41d9081f7b185a20e Mon Sep 17 00:00:00 2001 From: Chris Runnells Date: Tue, 17 Oct 2023 12:55:26 -1000 Subject: [PATCH 76/81] Add site slug to theme URLs --- includes/class-wc-calypso-bridge-filters.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/includes/class-wc-calypso-bridge-filters.php b/includes/class-wc-calypso-bridge-filters.php index 5b9c4658..852b0781 100644 --- a/includes/class-wc-calypso-bridge-filters.php +++ b/includes/class-wc-calypso-bridge-filters.php @@ -136,6 +136,8 @@ public function add_woocommerce_task_list_options_to_jetpack_sync( $allowed_opti * @return array */ public function woocommerce_filter_get_recommended_themes( $result, $industry, $currency ) { + $site_slug = WC_Calypso_Bridge_Instance()->get_site_slug(); + $result['themes'] = array( array( 'name' => 'Tsubaki', @@ -145,7 +147,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ 'slug' => 'tsubaki', 'is_active' => false, 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tsubaki/screenshot.png', - 'link_url' => 'https://wordpress.com/theme/tsubaki/', + 'link_url' => 'https://wordpress.com/theme/tsubaki/' . $site_slug, ), array( 'name' => 'Tazza', @@ -155,7 +157,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ 'slug' => 'tazza', 'is_active' => false, 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tazza/screenshot.png', - 'link_url' => 'https://wordpress.com/theme/tazza/', + 'link_url' => 'https://wordpress.com/theme/tazza/' . $site_slug, ), array( 'name' => 'Amulet', @@ -186,7 +188,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ 'slug' => 'amulet', 'is_active' => false, 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/amulet/screenshot.png', - 'link_url' => 'https://wordpress.com/theme/amulet/', + 'link_url' => 'https://wordpress.com/theme/amulet/' . $site_slug, ), array( 'name' => 'Zaino', @@ -217,11 +219,11 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ 'slug' => 'zaino', 'is_active' => false, 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/zaino/screenshot.png', - 'link_url' => 'https://wordpress.com/theme/zaino/', + 'link_url' => 'https://wordpress.com/theme/zaino/' . $site_slug, ), ); - $result['_links']['browse_all']['href'] = 'https://wordpress.com/themes/'; + $result['_links']['browse_all']['href'] = 'https://wordpress.com/themes/' . $site_slug; return $result; } From 5c34916d94a9d985a0825ec8e1b4592783a41284 Mon Sep 17 00:00:00 2001 From: Chris Runnells Date: Tue, 17 Oct 2023 14:54:28 -1000 Subject: [PATCH 77/81] Make sure 'is_active' is set correctly --- includes/class-wc-calypso-bridge-filters.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/includes/class-wc-calypso-bridge-filters.php b/includes/class-wc-calypso-bridge-filters.php index 852b0781..dfad532a 100644 --- a/includes/class-wc-calypso-bridge-filters.php +++ b/includes/class-wc-calypso-bridge-filters.php @@ -137,6 +137,7 @@ public function add_woocommerce_task_list_options_to_jetpack_sync( $allowed_opti */ public function woocommerce_filter_get_recommended_themes( $result, $industry, $currency ) { $site_slug = WC_Calypso_Bridge_Instance()->get_site_slug(); + $current_theme_slug = get_stylesheet(); $result['themes'] = array( array( @@ -145,7 +146,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ 'color_palettes' => array(), 'total_palettes' => 0, 'slug' => 'tsubaki', - 'is_active' => false, + 'is_active' => $current_theme_slug === 'tsubaki', 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tsubaki/screenshot.png', 'link_url' => 'https://wordpress.com/theme/tsubaki/' . $site_slug, ), @@ -155,7 +156,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ 'color_palettes' => array(), 'total_palettes' => 0, 'slug' => 'tazza', - 'is_active' => false, + 'is_active' => $current_theme_slug === 'tazza', 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tazza/screenshot.png', 'link_url' => 'https://wordpress.com/theme/tazza/' . $site_slug, ), @@ -186,7 +187,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ ), 'total_palettes' => 5, 'slug' => 'amulet', - 'is_active' => false, + 'is_active' => $current_theme_slug === 'amulet', 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/amulet/screenshot.png', 'link_url' => 'https://wordpress.com/theme/amulet/' . $site_slug, ), @@ -217,7 +218,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ ), 'total_palettes' => 11, 'slug' => 'zaino', - 'is_active' => false, + 'is_active' => $current_theme_slug === 'zaino', 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/zaino/screenshot.png', 'link_url' => 'https://wordpress.com/theme/zaino/' . $site_slug, ), From 35bb9b2ad64c324ffe0454d7cbb69a81e7359391 Mon Sep 17 00:00:00 2001 From: Chris Runnells Date: Tue, 17 Oct 2023 14:59:25 -1000 Subject: [PATCH 78/81] Yoda case. --- includes/class-wc-calypso-bridge-filters.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/includes/class-wc-calypso-bridge-filters.php b/includes/class-wc-calypso-bridge-filters.php index dfad532a..f935c4e6 100644 --- a/includes/class-wc-calypso-bridge-filters.php +++ b/includes/class-wc-calypso-bridge-filters.php @@ -146,7 +146,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ 'color_palettes' => array(), 'total_palettes' => 0, 'slug' => 'tsubaki', - 'is_active' => $current_theme_slug === 'tsubaki', + 'is_active' => 'tsubaki' === $current_theme_slug, 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tsubaki/screenshot.png', 'link_url' => 'https://wordpress.com/theme/tsubaki/' . $site_slug, ), @@ -156,7 +156,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ 'color_palettes' => array(), 'total_palettes' => 0, 'slug' => 'tazza', - 'is_active' => $current_theme_slug === 'tazza', + 'is_active' => 'tazza' === $current_theme_slug, 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/tazza/screenshot.png', 'link_url' => 'https://wordpress.com/theme/tazza/' . $site_slug, ), @@ -187,7 +187,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ ), 'total_palettes' => 5, 'slug' => 'amulet', - 'is_active' => $current_theme_slug === 'amulet', + 'is_active' => 'amulet' === $current_theme_slug, 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/amulet/screenshot.png', 'link_url' => 'https://wordpress.com/theme/amulet/' . $site_slug, ), @@ -218,7 +218,7 @@ public function woocommerce_filter_get_recommended_themes( $result, $industry, $ ), 'total_palettes' => 11, 'slug' => 'zaino', - 'is_active' => $current_theme_slug === 'zaino', + 'is_active' => 'zaino' === $current_theme_slug, 'thumbnail_url' => 'https://i0.wp.com/s2.wp.com/wp-content/themes/premium/zaino/screenshot.png', 'link_url' => 'https://wordpress.com/theme/zaino/' . $site_slug, ), From e6f17a5291ea04ffc344b869f8986247fe801400 Mon Sep 17 00:00:00 2001 From: Chris Lilitsas <1105590+xristos3490@users.noreply.github.com> Date: Mon, 23 Oct 2023 15:07:03 +0300 Subject: [PATCH 79/81] Handle orders hpos menu item --- ...wc-calypso-bridge-ecommerce-admin-menu.php | 100 +++++++++++++----- 1 file changed, 73 insertions(+), 27 deletions(-) diff --git a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php index 1344b5bc..25d0c6a5 100644 --- a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php +++ b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php @@ -4,7 +4,7 @@ * Class Ecommerce_Atomic_Admin_Menu. * * @since 1.9.8 - * @version 2.2.17 + * @version x.x.x * * The admin menu controller for Ecommerce WoA sites. */ @@ -39,14 +39,15 @@ public function __construct() { add_filter( 'submenu_file', array( $this, 'modify_woocommerce_menu_highlighting' ), 99999 ); } - // Move Orders. - // TODO: What about the COT menu? - add_filter( 'woocommerce_register_post_type_shop_order', function( $args ) { - $args[ 'labels' ][ 'add_new' ] = __( 'Add New', 'woocommerce' ); - $args[ 'show_in_menu' ] = true; - $args[ 'menu_icon' ] = 'dashicons-cart'; - return $args; - } ); + // Move Orders CPT. + if ( ! \Automattic\WooCommerce\Utilities\OrderUtil::custom_orders_table_usage_is_enabled() ) { + add_filter( 'woocommerce_register_post_type_shop_order', function( $args ) { + $args[ 'labels' ][ 'add_new' ] = __( 'Add New', 'woocommerce' ); + $args[ 'show_in_menu' ] = true; + $args[ 'menu_icon' ] = 'dashicons-cart'; + return $args; + } ); + } // Ensure the $submenu['woocommerce] will be available at prio 10. add_action( 'admin_menu', function() { @@ -93,12 +94,59 @@ protected function handle_free_trial_menu() { }, 99999 ); } + /** + * Moves the "WooCommerce > Orders" menu item to the top level. + * + * @since x.x.x + * + * @return void + */ + protected function handle_orders_menu() { + global $submenu, $menu; + + if ( \Automattic\WooCommerce\Utilities\OrderUtil::custom_orders_table_usage_is_enabled() ) { + + // Create the toplevel menu from scratch. + $this->hide_submenu_page( 'woocommerce', 'wc-orders' ); + add_menu_page( __( 'Orders', 'woocommerce' ), __( 'Orders', 'woocommerce' ), 'edit_shop_orders', 'admin.php?page=wc-orders', null, 'dashicons-cart', 40 ); + add_submenu_page( 'admin.php?page=wc-orders', __( 'Orders', 'woocommerce' ), __( 'Orders', 'woocommerce' ), 'edit_shop_orders', 'admin.php?page=wc-orders', null, 1 ); + add_submenu_page( 'admin.php?page=wc-orders', __( 'Add New Order', 'woocommerce' ), __( 'Add New', 'woocommerce' ), 'edit_shop_orders', 'admin.php?page=wc-orders&action=new', null, 2 ); + } else { + + // Restore the Orders submenu CPT page for backwards compatibility. + add_submenu_page( 'woocommerce', __( 'Orders', 'wc-calypso-bridge' ), __( 'Orders', 'wc-calypso-bridge' ), 'manage_woocommerce', 'edit.php?post_type=shop_order', '', 1 ); + $this->hide_submenu_page( 'woocommerce', 'edit.php?post_type=shop_order' ); + } + + // Add Orders count. + if ( apply_filters( 'woocommerce_include_processing_order_count_in_menu', true ) && current_user_can( 'edit_others_shop_orders' ) ) { + $order_count = (int) apply_filters( 'woocommerce_menu_order_count', wc_processing_order_count() ); + + if ( $order_count ) { + $bubble = '' . number_format_i18n( $order_count ) . ''; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited + + // Add for Orders (CPT). + foreach ( $menu as $i => $menu_item ) { + if ( 'edit.php?post_type=shop_order' === $menu_item[2] || 'admin.php?page=wc-orders' === $menu_item[2] ) { + error_log('****** found:' . $menu_item[2]); + $menu[ $i ][0] .= ' ' . $bubble; + break; + } + } + + // Add for Orders (HPOS) submenu. + if ( isset( $submenu['admin.php?page=wc-orders'][0] ) && is_string( $submenu['admin.php?page=wc-orders'][0][0] ) ) { + $submenu['admin.php?page=wc-orders'][0][0] .= ' ' . $bubble; + } + } + } + } + /** * Override the base implementation of add_plugins_menu() to avoid * adding the Plugins menu for eCommerce trials. * * @since 2.0.8 - * @version 2.0.8 * * @return void */ @@ -131,6 +179,7 @@ public static function menu_order( $menu_order ) { $woocommerce_menu_order[] = 'wc-calypso-bridge-separator-top'; // Separator WC top. $woocommerce_menu_order[] = 'edit.php?post_type=shop_order'; // Orders. + $woocommerce_menu_order[] = 'admin.php?page=wc-orders'; // Orders (HPOS). $woocommerce_menu_order[] = 'edit.php?post_type=product'; // Products. $woocommerce_menu_order[] = 'admin.php?page=wc-admin&path=/customers'; // Customers. if ( false !== $payments_connect_exists ) { @@ -165,6 +214,7 @@ public static function menu_order( $menu_order ) { 'wc-admin&path=/analytics/overview', 'edit.php?post_type=product', 'edit.php?post_type=shop_order', + 'admin.php?page=wc-orders', 'admin.php?page=wc-admin&path=/customers' ), true ) ) { $woocommerce_menu_order[] = $item; @@ -247,6 +297,17 @@ public function modify_woocommerce_menu_highlighting( $submenu_file ) { } ); } + // Move WooCommerce > Orders (HPOS) to Orders. + if ( in_array( $screen_id, array( 'woocommerce_page_wc-orders' ), true ) ) { + $plugin_page = ''; + $parent_file = 'admin.php?page=wc-orders'; + $submenu_file = 'admin.php?page=wc-orders'; + + if ( isset( $_GET[ 'action' ] ) && 'new' === $_GET[ 'action' ] ) { + $submenu_file = 'admin.php?page=wc-orders&action=new'; + } + } + return $submenu_file; } @@ -271,9 +332,8 @@ public function add_woocommerce_menu() { // Hide WooCommerce > Home. $this->hide_submenu_page( 'woocommerce', 'wc-admin' ); - // Restore the Orders submenu page for backwards compatibility. - add_submenu_page( 'woocommerce', __( 'Orders', 'wc-calypso-bridge' ), __( 'Orders', 'wc-calypso-bridge' ), 'manage_woocommerce', 'edit.php?post_type=shop_order', '', 1 ); - $this->hide_submenu_page( 'woocommerce', 'edit.php?post_type=shop_order' ); + // Handle Orders menu item. + $this->handle_orders_menu(); // Move WooCommerce > Settings under Settings > WooCommerce. $this->hide_submenu_page( 'woocommerce', 'wc-settings' ); @@ -321,20 +381,6 @@ public function add_woocommerce_menu() { $this->hide_submenu_page( 'woocommerce', 'wc-addons' ); } - // Add Orders count. - if ( apply_filters( 'woocommerce_include_processing_order_count_in_menu', true ) && current_user_can( 'edit_others_shop_orders' ) ) { - $order_count = (int) apply_filters( 'woocommerce_menu_order_count', wc_processing_order_count() ); - - if ( $order_count ) { - foreach ( $menu as $i => $menu_item ) { - if ( 'edit.php?post_type=shop_order' === $menu_item[2] ) { - $menu[ $i ][0] .= ' ' . number_format_i18n( $order_count ) . ''; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - break; - } - } - } - } - // Re-order submenus. $this->reorder_woocommerce_menu(); $this->reorder_settings_menu(); From 82ab1fc78a1d73717814d9df09357bb7dace21ee Mon Sep 17 00:00:00 2001 From: "Panos (Panagiotis) Synetos" <2484390+PanosSynetos@users.noreply.github.com> Date: Tue, 24 Oct 2023 11:36:56 +0300 Subject: [PATCH 80/81] Apply review comments --- .../class-wc-calypso-bridge-ecommerce-admin-menu.php | 9 ++++----- readme.txt | 6 +++--- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php index 25d0c6a5..437511c8 100644 --- a/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php +++ b/includes/class-wc-calypso-bridge-ecommerce-admin-menu.php @@ -124,11 +124,10 @@ protected function handle_orders_menu() { if ( $order_count ) { $bubble = '' . number_format_i18n( $order_count ) . ''; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited - + // Add for Orders (CPT). foreach ( $menu as $i => $menu_item ) { if ( 'edit.php?post_type=shop_order' === $menu_item[2] || 'admin.php?page=wc-orders' === $menu_item[2] ) { - error_log('****** found:' . $menu_item[2]); $menu[ $i ][0] .= ' ' . $bubble; break; } @@ -299,11 +298,11 @@ public function modify_woocommerce_menu_highlighting( $submenu_file ) { // Move WooCommerce > Orders (HPOS) to Orders. if ( in_array( $screen_id, array( 'woocommerce_page_wc-orders' ), true ) ) { - $plugin_page = ''; - $parent_file = 'admin.php?page=wc-orders'; + $plugin_page = ''; + $parent_file = 'admin.php?page=wc-orders'; $submenu_file = 'admin.php?page=wc-orders'; - if ( isset( $_GET[ 'action' ] ) && 'new' === $_GET[ 'action' ] ) { + if ( isset( $_GET['action'] ) && 'new' === $_GET['action'] ) { $submenu_file = 'admin.php?page=wc-orders&action=new'; } } diff --git a/readme.txt b/readme.txt index 6106041a..31c2fad4 100644 --- a/readme.txt +++ b/readme.txt @@ -22,10 +22,10 @@ This section describes how to install the plugin and get it working. == Changelog == -= 2.2.17 = -* Enable the reactified WC Admin Marketplace under the "Extensions > Discover" menu item #1318 - = Unreleashed = +* Fix the "Orders" menu position when using HPOS #1330 + += 2.2.17 = * Enable the reactified WC Admin Marketplace under the "Extensions > Discover" menu item #1318 = 2.2.16 = From 56b98dbc7e612ce62de127a7fcc21faf8b57d1a6 Mon Sep 17 00:00:00 2001 From: Ilyas Foo Date: Tue, 24 Oct 2023 17:00:28 +0800 Subject: [PATCH 81/81] Update changelog and versions for PR #1324 --- includes/class-wc-calypso-bridge-filters.php | 6 ++++-- readme.txt | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/includes/class-wc-calypso-bridge-filters.php b/includes/class-wc-calypso-bridge-filters.php index f935c4e6..aecf3390 100644 --- a/includes/class-wc-calypso-bridge-filters.php +++ b/includes/class-wc-calypso-bridge-filters.php @@ -4,7 +4,7 @@ * * @package WC_Calypso_Bridge/Classes * @since 1.1.6 - * @version 1.0.0 + * @version x.x.x */ defined( 'ABSPATH' ) || exit; @@ -130,6 +130,8 @@ public function add_woocommerce_task_list_options_to_jetpack_sync( $allowed_opti /** * Function to filter the theme recommendations for sites on WPCOM * + * @since x.x.x + * * @param array $result * @param string $industry * @param string $currency @@ -138,7 +140,7 @@ public function add_woocommerce_task_list_options_to_jetpack_sync( $allowed_opti public function woocommerce_filter_get_recommended_themes( $result, $industry, $currency ) { $site_slug = WC_Calypso_Bridge_Instance()->get_site_slug(); $current_theme_slug = get_stylesheet(); - + $result['themes'] = array( array( 'name' => 'Tsubaki', diff --git a/readme.txt b/readme.txt index 75e27bc9..36a6573a 100644 --- a/readme.txt +++ b/readme.txt @@ -25,6 +25,7 @@ This section describes how to install the plugin and get it working. = Unreleashed = * Fix the "Orders" menu position when using HPOS #1330 * Preconfigure product measurement units #xxx +* Add filter for recommended WPCOM themes #1324 = 2.2.17 = * Enable the reactified WC Admin Marketplace under the "Extensions > Discover" menu item #1318